TweetFollow Us on Twitter

Mar 98 - Getting Started

Volume Number: 14 (1998)
Issue Number: 3
Column Tag: Getting Started

On the Menu for Today...

by Dave Mark

How the Macintosh Menu Manager Works

In last month's column, we expanded our event-handling repertoire to include activate, update, and suspend/resume events. By now, you should feel pretty comfortable with the Event Manager. If you haven't already, put down this column and go read the Event Manager chapters in Inside Macintosh: Macintosh Toolbox Essentials.

In this month's column, we're going to take a look at the Menu Manager, the part of the Toolbox responsible for your program's menus.

The Pull-Down Menu

Almost every single Macintosh program comes complete with its own menu bar, the strip of menu titles along the top of your Mac's main screen. The menu bar contains one menu title for each of your program's current pull-down menus. Figure 1 shows the Finder's menu bar with the File menu pulled down.

Figure 1. A menu bar with a pull-down menu exposed.

A proper menu bar always features at least three menus, Apple, File, and Edit. When a menu is pulled-down, its menu items will be drawn. In addition to the item's name, a menu item may feature an icon, as well as a command-key equivalent. The command-key equivalent, when typed by the user, simulates the selection of the equivalenced menu item. For example, in the menu in Figure 1, the command-key equivalent cmd-W will cause the Close Window item to be selected from the File menu.

Items may be dimmed, or disabled, which prevents the user from selecting them. If an item is disabled, it is drawn in gray. A normal item is said to be enabled.

You may have noticed that some menu items are drawn followed by an ellipsis, a sequence of three dots (...). The ellipsis tells the user that this item will cause a dialog box to appear, prompting the user for further information. We'll get to dialog boxes in a later column.

Working With the Menu Manager

The Menu Manager consists of a series of routines designed to work with two resource types, MBAR and MENU. The MBAR resource links together a series of MENU resources to form a menu bar. A MENU resource is used to completely specify a menu, including all the menus items and any associated icons and command-key equivalents. Here's a quick tour through the main Menu Manager routines.

Once you've built your MBAR and MENU resources (you'll see how in a bit), you're ready to start programming. You'll start off by creating a menu initialization routine. In it, you'll call GetNewMBar(), which builds a menu list, based on the MENUs specified in an MBAR resource. A menu list is the data structure the Menu Manager bases a menu bar on. Once the menu list is built, pass it to SetMenuBar() to make it the current menu bar. Note that you can have more than one menu bar, but only one current menu bar.

Once you've specified a current menu bar, draw the menu bar by calling DrawMenuBar(). Now you're ready to work with your individual menus.

Modifying the Menu Bar

There will be times when the menu bar described in your MBAR resource won't be enough. For example, you might have a menu that appears only if the user has color turned on, or when a certain type of window is open. You can add a menu to or delete a menu from the menu bar. To add a menu to the menu bar, call GetMenu() to load a new MENU resource into memory, into the list of available menus (but not into the current menu bar). GetMenu() returns a MenuHandle which you can pass to InsertMenu(). InsertMenu() inserts the specified menu into the current menu bar. To delete a menu from the menu bar, call DeleteMenu().

Another routine you might find useful is GetMenuHandle(), which returns a MenuHandle to a menu already loaded into memory. Basically, you'll use GetMenu() to get a handle to a menu that's never been loaded, and GetMenuHandle() to get a handle to a previously loaded menu. Use InsertMenu() to add a loaded menu into the current menu bar. Remember, whenever you change the menu bar, call DrawMenuBar() to bring your changes to life. You only need to call DrawMenuBar() when you change the current menu bar, not when you change a menu's items.

Changing a Menu Item's Appearance

The Menu Manager gives you a set of routines you can use to customize your menus. For example, the routines EnableItem() and DisableItem() allow you to enable or disable a menu item. You can use the routine AppendResMenu() to add all the resources of a specific type as menu items. There are two specific times when this comes in handy. To add all the fonts to a menu, pass 'FONT' to AppendResMenu(). To add all the standard apple menu items to the apple menu, pass 'DRVR' to AppendResMenu(). Why 'DRVR'? Prior to System 7, all the items in the apple menu were desk accessories, which have a resource type of 'DRVR'. Even though System 7 allows you to add more than DA's to your apple menu, AppendResMenu() still works properly, as you'll see by this month's program.

You can use SetMenuItemText() to change the name of a menu item. You can use GetMenuItemText() to retrieve an item's name. CheckItem() lets you place or remove a check mark from an item and SetItemMark() lets you place or remove any character from the system font next to an item. GetItemMark() retrieves an item's mark.

SetItemIcon() and GetItemIcon() set and get the resource ID of any icon associated with an item. For some reason, the resource ID returned by GetItemIcon() is 256 less than the icon's actual resource ID. This means that your icon's resource ID will range from 257 to 511.

SetItemStyle() and GetItemStyle() are used to set and get the style of an item's name. We'll make use of these function's in next month's program.

Detecting a Menu Selection

There are two ways a user can select from a menu. They can click the mouse in the menu bar or they can type a command-key equivalent. You'll detect a mouse click in the menu bar by detecting a mouseDown event that occurred inMenuBar. If this happens, you'll call a routine called MenuSelect(). MenuSelect() tracks your mouse, pulling down menus, highlighting items, and, if necessary, selecting an item from a menu. MenuSelect() returns a value that indicates the menu and item that was selected.

If a keyDown or autoKey event occurs, you'll check to see if the command-key was down when the event occurred. If so, you'll call a routine called MenuKey() which translates the key to a value that indicates the menu and item that was selected.

Whether the menu/item was selected via a keyDown or a mouseDown in the menu bar, it will be translated into a menu/item value. You'll pass this menu/item value on to your own routine which processes the menu selection. Once you process the menu selection, call HiliteMenu() to uninvert the menu's title, which was left inverted by MenuSelect() or MenuKey().

MenuMaster

OK, that's about it for Menu Manager routines. There are a few that we haven't discussed and you should definitely read the Menu Manager chapter in Inside Macintosh: Macintosh Toolbox Essentials. For now, let's get into this month's program, MenuMaster.

Create a folder named MenuMaster in your development folder. Now, go into ResEdit and create a new resource file named MenuMaster.rsrc in the MenuMaster folder. Select Create New Resource from the Resource menu and create a new MBAR resource. When the MBAR window appears, click the row of *'s (Figure 2) and type cmd-K to create a new MENU field. When the new field appears, type in the MENU id 128.

Figure 2. Click the *'s and type cmd-K to add a MENU to the MBAR.

When the second row of *'s appears, click it and type cmd-K to create a second MENU field. Repeat this process till your MBAR looks like the one in Figure 3.

Close the MBAR window, and close the MBAR picker window. Next, select Create New Resource from the Resource menu and create a MENU resource. When the MENU editing window appears, click the Apple radio button to create an Apple menu. Hit a carriage return and type in the text About MenuMaster... followed by another carriage return. Now click the separator-line radio button to insert a separator line after the About MenuMaster... item. Because separator lines are never enabled, they'll never be chosen by the user. Your menu should look like the one shown in

Figure 4

.

Figure 3. The filled out MBAR resource with four MENU resource ids.

Figure 4. Specifications for MENU 128.

Close the editing window and press cmd-K to create a new MENU resource. This time, instead of clicking the Apple radio button, type the word File in the Title field and hit a carriage return. Next type the word Quit and type the letter Q in the Cmd-Key field that appears. You've just made cmd-Q a command-key equivalent to the File menu's Quit item. Your menu should look like the one shown in Figure 5.

Figure 5. Specifications for MENU 129.

Close the editing window and create another MENU, using the MENU shown in Figure 6 as a guide. Be sure to add the separator line after the Undo item, and to type in the four command-key equivalents.

Figure 6. Specifications for MENU 130.

Close the editing window and create yet another MENU, according to the specifications shown in Figure 7. Be sure to include the three separator lines. If you forget one, you can add one at the end of the menu, then click and drag it to its proper position. Notice that the item labeled Enable Previous Item has been disabled. Do this by making sure the Enabled check box is unchecked for that item only.

Figure 7. Specifications for MENU 131.

Finally, create one more MENU. Use the title Extra Menu and add the item Delete This Menu (Figure 8).

Figure 8. Specifications for MENU 132.

Next, click the item Delete This Menu and select Choose Icon... from the MENU menu. You're going to attach an icon to the menu item. When the dialog box appears, click the Small Icons radio button, then click the New button.

Figure 9. The Choose Icon... dialog box.

When the SICN editing window appears, go to town. Create whatever kind of small icon your heart desires. Get creative. Figure 10 shows my SICN, lifted from the Macintosh Programming Primer.

Figure 10. A SICN with a resource ID of 257.

If you preferred, you could use an ICON or a reduced ICON resource instead. Personally, I prefer SICNs or none at all. Once you are done editing your SICN, close the SICN editing window. You can get a preview of the menu by clicking the prototype that appears on the right end of the menu bar. Your SICN should be in place. If not, be sure your SICN has a resource ID of 257. Icons attached to menu items must have an ID between 257 and 511.

Once you are happy with your MENU, close the MENU editing window. You may have noticed that you've created MENUs with resource IDs 128 through 132, while your MBAR only includes MENUs with IDs from 128 to 131. We'll add this extra menu to our menu bar from inside our program.

Well, that's about it for resources. Quit ResEdit, making sure you Save your changes.

Creating the MenuMaster Project

Launch CodeWarrior and create a new project based on the MacOS:C/C++:Basic Toolbox 68k stationary. Turn off the Create Folder check box. Name the project MenuMaster.mcp and place it in your MenuMaster folder. Remove SillyBalls.c and SillyBalls.rsrc from the project; we will not be using these files. From the Finder, drag and drop your MenuMaster.rsrc file into the project window. You also can remove the ANSI Libraries group from the project, because we won't need them, either.

Select New from the File menu to create a new window. Save it under the name MenuMaster.c, Select Add Window from the Project menu to add MenuMaster.c to the project. Your project window should look something like Figure 11.

Figure 11. MenuMaster project window.

Rather than print the code here twice, we'll go straight to the walk-through. You can type in the code as we discuss it below and you will end up with the complete program, or you can save your fingures some effort and get the complete project from MacTech's ftp site ftp://ftp.mactech.com/src/.

Walking Through the Source Code

Much of MenuMaster's code should be familiar to you. That being the case, I'm going to breeze over the familiar stuff, focusing on the new stuff.

For starters, notice the way the #defines have been set up for the menus and menu items. In general, you'll create a #define for each menu and item, starting the menu #defines with the letter 'm' and the item #defines with the letter 'i'.

#include <Menus.h>
#include <Sound.h>

#define kBaseResID    128
#define kMoveToFront  (WindowPtr)-1L
#define kSleep        7

#define kLastMenu      0

#define mApple        kBaseResID
#define iAbout        1

#define mFile          kBaseResID+1
#define iQuit          1

#define mOptions      kBaseResID+3
#define iChangeName    1
#define iDisableMe    3
#define iEnablePrev    4
#define iAddExtraMenu  6
#define iAppendItem    8
#define iAddedItem    9

#define kUnchangedName    "\pChange My Name"
#define kChangedName    "\pChange Me Back Again"

#define mExtraMenu    kBaseResID+4
#define iDeleteMenu    1

The global gItemNameChanged is a Boolean flag, used to tell whether the first Options item has been changed or not.

Boolean    gDone;
Boolean    gItemNameChanged = false;

And we can't forget our function declarations:

void  ToolBoxInit( void );
void  WindowInit( void );
void  MenuBarInit( void );
void  EventLoop( void );
void  DoEvent( EventRecord *eventPtr );
void  HandleMouseDown( EventRecord *eventPtr );
void  HandleMenuChoice( long menuChoice );
void  HandleAppleChoice( short item );
void  HandleFileChoice( short item );
void  HandleOptionsChoice( short item );
void  HandleExtraMenuChoice( short item );

Notice that main() calls a new routine, MenuBarInit(), which handles the menu initialization. ToolboxInit() hasn't changed.

/************************ main *********/

void  main( void )
{
  ToolBoxInit();
  MenuBarInit();
  
  EventLoop();
}

/*************************** ToolBoxInit */

void  ToolBoxInit( void )
{
  InitGraf( &qd.thePort );
  InitFonts();
  InitWindows();
  InitMenus();
  TEInit();
  InitDialogs( nil );
  InitCursor();
}

MenuBarInit() loads the MBAR resource and makes the resulting menu bar the current menu bar.

/****************** MenuBarInit **********/

void  MenuBarInit( void )
{
  Handle        menuBar;
  MenuHandle    menu;
  
  menuBar = GetNewMBar( kBaseResID );
  SetMenuBar( menuBar );

Next, AppendResMenu() is called to add the apple menu items to the Apple menu. Notice that GetMenuHandle() was used to retrieve the menu handle, because the MENU resource was already loaded into memory as part of the MBAR.

  menu = GetMenuHandle( mApple );
  AppendResMenu( menu, 'DRVR' );

Finally, the menu bar is drawn with DrawMenuBar().

  DrawMenuBar();
}

We have our standard EventLoop().

/************************* EventLoop *********/

void  EventLoop( void )
{    
  EventRecord    event;
  
  gDone = false;
  while ( gDone == false )
  {
    if ( WaitNextEvent( everyEvent, &event, kSleep, nil ) )
      DoEvent( &event );
  }
}

The next big change is in the DoEvent() code.

/************************* DoEvent   */

void  DoEvent( EventRecord *eventPtr )
{
  char    theChar;
  
  switch ( eventPtr->what )
  {
    case mouseDown: 
      HandleMouseDown( eventPtr );
      break;

The charCodeMask is used to retrieve the character embedded in the keyDown or autoKey event. If the command-key was held down, the character is passed to MenuKey() which translates it into a menu and item code. This code is passed on to HandleMenuChoice().

    case keyDown:
    case autoKey:
      theChar = eventPtr->message & charCodeMask;
      if ( (eventPtr->modifiers & cmdKey) != 0 ) 
        HandleMenuChoice( MenuKey( theChar ) );
      break;
  }
}

HandleMouseDown() also contains a change.

/************************ HandleMouseDown */

void  HandleMouseDown( EventRecord *eventPtr )
{
  WindowPtr    window;
  short        thePart;
  long          menuChoice;
  
  thePart = FindWindow( eventPtr->where, &window );
  
  switch ( thePart )
  {

If the mouseDown was in the menu bar, the event is passed on to MenuSelect() which also returns a menu and item code. The code is again passed on to HandleMenuChoice().

    case inMenuBar:
      menuChoice = MenuSelect( eventPtr->where );
      HandleMenuChoice( menuChoice );
      break;
    case inSysWindow : 
      SystemClick( eventPtr, window );
      break;
  }
}

HandleMenuChoice() pulls the menu and item out of the menu/item code.

/****************** HandleMenuChoice **************/

void  HandleMenuChoice( long menuChoice )
{
  short    menu;
  short    item;
  
  if ( menuChoice != 0 )
  {
    menu = HiWord( menuChoice );
    item = LoWord( menuChoice );

menu is used to decide which menu handling routine to call.

    switch ( menu )
    {
      case mApple:
        HandleAppleChoice( item );
        break;
      case mFile:
        HandleFileChoice( item );
        break;
      case mOptions:
        HandleOptionsChoice( item );
        break;
      case mExtraMenu:
        HandleExtraMenuChoice( item );
        break;
    }

Once the handling routine returns, HiliteMenu() is called to unhighlight the selected menu.

    HiliteMenu( 0 );
  }
}

/****************** HandleAppleChoice *************/

void  HandleAppleChoice( short item )
{
  MenuHandle  appleMenu;
  Str255      accName;
  short      accNumber;
  
  switch ( item )
  {

HandleAppleChoice() handles the About MenuMaster... item by beeping once.

    case iAbout:
      SysBeep( 20 );
      break;

If any other item is selected, OpenDeskAcc() is called to launch the appropriate item. Under System 7, the item might not be a desk accessory.

    default:
      appleMenu = GetMenuHandle( mApple );
      GetMenuItemText( appleMenu, item, accName );
      accNumber = OpenDeskAcc( accName );
      break;
  }
}

HandleFileChoice() sets gDone to true, which will cause the program to exit.

/****************** HandleFileChoice ***********/

void  HandleFileChoice( short item )
{
  switch ( item )
  {
    case iQuit :
      gDone = true;
      break;
  }
}

HandleOptionsChoice() takes the appropriate action, depending on the action selected. Notice that GetMenuHandle() is used to retrieve the Options menu handle.

/****************** HandleOptionsChoice **********/

void  HandleOptionsChoice( short item )
{
  MenuHandle  menu;
  
  menu = GetMenuHandle( mOptions );
  
  switch ( item )
  {
    case iChangeName:
      if ( gItemNameChanged )
        SetMenuItemText( menu, iChangeName, kUnchangedName );
      else
        SetMenuItemText( menu, iChangeName, kChangedName );
      gItemNameChanged = ! gItemNameChanged;
      break;
    case iDisableMe:
      DisableItem( menu, iDisableMe );
      EnableItem( menu, iEnablePrev );
      break;
    case iEnablePrev:
      DisableItem( menu, iEnablePrev );
      EnableItem( menu, iDisableMe );
      break;
    case iAddExtraMenu:
      DisableItem( menu, iAddExtraMenu );
      menu = GetMenu( mExtraMenu );
      InsertMenu( menu, kLastMenu );
      DrawMenuBar();
      break;
    case iAppendItem:
      AppendMenu( menu, "\pCan't Delete Me..." );
      DisableItem( menu, iAppendItem );
      break;
    case iAddedItem:
      SysBeep( 20 );
      break;
  }
}

Finally, HandleExtraMenuChoice() handles a single item.

/****************** HandleExtraMenuChoice ********/

void  HandleExtraMenuChoice( short item )
{
  MenuHandle  menu;
  
  switch ( item )
  {

When Delete This Menu is selected, the Add Extra Menu item is reenabled on the Options menu.

    case iDeleteMenu:
      menu = GetMenuHandle( mOptions );
      EnableItem( menu, iAddExtraMenu );

Next, the Extra Menu menu is deleted and the menu bar is redrawn.

      DeleteMenu( mExtraMenu );
      DrawMenuBar();
      break;
  }
}

That's it. Be sure to save the file if you are typing this in.

Running MenuMaster

Run the project by selecting Run from the Project menu. When the menu bar appears, select Change My Name from the Options menu. If you click on the Options menu again, you'll see that the item has been changed to Change Me Back Again. Select the item again and it will change back to its original name.

Now select Disable Me from the Options menu. If you click on the Options menu again, you'll see that the item has been disabled and the next item, which was disabled, is now enabled. Select Enable Previous Item and it will be disabled again, while the Disable Me item is reenabled.

Next, select Add Extra Menu from the Options menu. A new menu will appear in the menu bar, named Extra Menu. In addition, the Add Extra Menu item is disabled. If you click Extra Menu, you'll notice that the SICN appears to the left of the Delete This Menu item. Select Delete This Menu and the menu will disappear, and Add Extra Menu will be reenabled.

Next, select Append Item from the Options menu. A new item will appear in the Options menu with the name Can't Delete Me.... As its name implies, once you've added an item to a menu, you can't delete it. If you select Can't Delete Me..., MenuMaster will beep once.

Finally, type cmd-Q to exit the program. cmd-Q is the command-key equivalent for the File menu's Quit item.

Till Next Time

Well, that's about it for this month. Next month, we'll dig a little further into the Menu Manager. Till then, go read Inside Macintosh, and save me a slice of pizza...

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Make the passage of time your plaything...
While some of us are still waiting for a chance to get our hands on Ash Prime - yes, don’t remind me I could currently buy him this month I’m barely hanging on - Digital Extremes has announced its next anticipated Prime Form for Warframe. Starting... | Read more »
If you can find it and fit through the d...
The holy trinity of amazing company names have come together, to release their equally amazing and adorable mobile game, Hamster Inn. Published by HyperBeard Games, and co-developed by Mum Not Proud and Little Sasquatch Studios, it's time to... | Read more »
Amikin Survival opens for pre-orders on...
Join me on the wonderful trip down the inspiration rabbit hole; much as Palworld seemingly “borrowed” many aspects from the hit Pokemon franchise, it is time for the heavily armed animal survival to also spawn some illegitimate children as Helio... | Read more »
PUBG Mobile teams up with global phenome...
Since launching in 2019, SpyxFamily has exploded to damn near catastrophic popularity, so it was only a matter of time before a mobile game snapped up a collaboration. Enter PUBG Mobile. Until May 12th, players will be able to collect a host of... | Read more »
Embark into the frozen tundra of certain...
Chucklefish, developers of hit action-adventure sandbox game Starbound and owner of one of the cutest logos in gaming, has released their roguelike deck-builder Wildfrost. Created alongside developers Gaziter and Deadpan Games, Wildfrost will... | Read more »
MoreFun Studios has announced Season 4,...
Tension has escalated in the ever-volatile world of Arena Breakout, as your old pal Randall Fisher and bosses Fred and Perrero continue to lob insults and explosives at each other, bringing us to a new phase of warfare. Season 4, Into The Fog of... | Read more »
Top Mobile Game Discounts
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links below... | Read more »
Marvel Future Fight celebrates nine year...
Announced alongside an advertising image I can only assume was aimed squarely at myself with the prominent Deadpool and Odin featured on it, Netmarble has revealed their celebrations for the 9th anniversary of Marvel Future Fight. The Countdown... | Read more »
HoYoFair 2024 prepares to showcase over...
To say Genshin Impact took the world by storm when it was released would be an understatement. However, I think the most surprising part of the launch was just how much further it went than gaming. There have been concerts, art shows, massive... | Read more »
Explore some of BBCs' most iconic s...
Despite your personal opinion on the BBC at a managerial level, it is undeniable that it has overseen some fantastic British shows in the past, and now thanks to a partnership with Roblox, players will be able to interact with some of these... | Read more »

Price Scanner via MacPrices.net

You can save $300-$480 on a 14-inch M3 Pro/Ma...
Apple has 14″ M3 Pro and M3 Max MacBook Pros in stock today and available, Certified Refurbished, starting at $1699 and ranging up to $480 off MSRP. Each model features a new outer case, shipping is... Read more
24-inch M1 iMacs available at Apple starting...
Apple has clearance M1 iMacs available in their Certified Refurbished store starting at $1049 and ranging up to $300 off original MSRP. Each iMac is in like-new condition and comes with Apple’s... Read more
Walmart continues to offer $699 13-inch M1 Ma...
Walmart continues to offer new Apple 13″ M1 MacBook Airs (8GB RAM, 256GB SSD) online for $699, $300 off original MSRP, in Space Gray, Silver, and Gold colors. These are new MacBook for sale by... Read more
B&H has 13-inch M2 MacBook Airs with 16GB...
B&H Photo has 13″ MacBook Airs with M2 CPUs, 16GB of memory, and 256GB of storage in stock and on sale for $1099, $100 off Apple’s MSRP for this configuration. Free 1-2 day delivery is available... Read more
14-inch M3 MacBook Pro with 16GB of RAM avail...
Apple has the 14″ M3 MacBook Pro with 16GB of RAM and 1TB of storage, Certified Refurbished, available for $300 off MSRP. Each MacBook Pro features a new outer case, shipping is free, and an Apple 1-... Read more
Apple M2 Mac minis on sale for up to $150 off...
Amazon has Apple’s M2-powered Mac minis in stock and on sale for $100-$150 off MSRP, each including free delivery: – Mac mini M2/256GB SSD: $499, save $100 – Mac mini M2/512GB SSD: $699, save $100 –... Read more
Amazon is offering a $200 discount on 14-inch...
Amazon has 14-inch M3 MacBook Pros in stock and on sale for $200 off MSRP. Shipping is free. Note that Amazon’s stock tends to come and go: – 14″ M3 MacBook Pro (8GB RAM/512GB SSD): $1399.99, $200... Read more
Sunday Sale: 13-inch M3 MacBook Air for $999,...
Several Apple retailers have the new 13″ MacBook Air with an M3 CPU in stock and on sale today for only $999 in Midnight. These are the lowest prices currently available for new 13″ M3 MacBook Airs... Read more
Multiple Apple retailers are offering 13-inch...
Several Apple retailers have 13″ MacBook Airs with M2 CPUs in stock and on sale this weekend starting at only $849 in Space Gray, Silver, Starlight, and Midnight colors. These are the lowest prices... Read more
Roundup of Verizon’s April Apple iPhone Promo...
Verizon is offering a number of iPhone deals for the month of April. Switch, and open a new of service, and you can qualify for a free iPhone 15 or heavy monthly discounts on other models: – 128GB... Read more

Jobs Board

IN6728 Optometrist- *Apple* Valley, CA- Tar...
Date: Apr 9, 2024 Brand: Target Optical Location: Apple Valley, CA, US, 92308 **Requisition ID:** 824398 At Target Optical, we help people see and look great - and Read more
Medical Assistant - Orthopedics *Apple* Hil...
Medical Assistant - Orthopedics Apple Hill York Location: WellSpan Medical Group, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Apply Now Read more
*Apple* Systems Administrator - JAMF - Activ...
…**Public Trust/Other Required:** None **Job Family:** Systems Administration **Skills:** Apple Platforms,Computer Servers,Jamf Pro **Experience:** 3 + years of Read more
Liquor Stock Clerk - S. *Apple* St. - Idaho...
Liquor Stock Clerk - S. Apple St. Boise Posting Begin Date: 2023/10/10 Posting End Date: 2024/10/14 Category: Retail Sub Category: Customer Service Work Type: Part Read more
Top Secret *Apple* System Admin - Insight G...
Job Description Day to Day: * Configure and maintain the client's Apple Device Management (ADM) solution. The current solution is JAMF supporting 250-500 end points, Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.