TweetFollow Us on Twitter

Menu Management
Volume Number:9
Issue Number:2
Column Tag:Getting Started

Related Info: Menu Manager Resource Manager

On the Menu for Today

How does the Macintosh Menu Manager work?

By Dave Mark, MacTech Magazine Regular Contributing Author

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

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, Volumes I and VI.

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, , 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 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 GetMHandle(), 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 GetMHandle() 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 AddResMenu() 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 AddResMenu(). To add all the standard apple menu items to the apple menu, pass ‘DRVR’ to AddResMenu(). 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, AddResMenu() still works properly, as you’ll see by this month’s program.

You can use SetItem() to change the name of a menu item. You can use GetItem() 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, Volume I. 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 on the row of *’s (Figure 2) and type K to create a new MENU field. When the new field appears, type in the MENU id 128.

Figure 2. Click on the *’s and type K to add a MENU to the MBAR.

When the second row of *’s appears, click on it and type 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 on the • 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 on the separator line radio button to insert a separator line after the About MenuMaster... item. Since 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 type K to create a new MENU resource. This time, instead of clicking on the • 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 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 on 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 on 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 on 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 THINK C and create a new project called MenuMaster.Π in the MenuMaster folder. Add MacTraps to the project, then select New from the File menu to create a new source code window. Type in the following source code:

/* 1 */

#include <Values.h>

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

#define kLastMenu0

#define mApple   kBaseResID
#define iAbout   1

#define mFile    kBaseResID+1
#define iQuit    1

#define mOptions kBaseResID+3
#define iChangeName1
#define iDisableMe 3
#define iEnablePrev4
#define iAddExtraMenu6
#define iAppendItem8
#define iAddedItem 9

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

#define mExtraMenu kBaseResID+4
#define iDeleteMenu1


/*************/
/*  Globals  */
/*************/

Boolean gDone;
Boolean gItemNameChanged = false;


/***************/
/*  Functions  */
/***************/

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 );

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

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

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

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

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

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

 menu = GetMHandle( mApple );
 AddResMenu( menu, 'DRVR' );
 
 DrawMenuBar();
}

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

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

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

void  DoEvent( EventRecord *eventPtr )
{
 char   theChar;
 
 switch ( eventPtr->what )
 {
 case mouseDown: 
 HandleMouseDown( eventPtr );
 break;
 case keyDown:
 case autoKey:
 theChar = eventPtr->message & charCodeMask;
 if ( (eventPtr->modifiers & cmdKey) != 0 ) 
 HandleMenuChoice( MenuKey( theChar ) );
 break;
 }
}

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

void  HandleMouseDown( EventRecord *eventPtr )
{
 WindowPtrwindow;
 short  thePart;
 long   menuChoice;
 
 thePart = FindWindow( eventPtr->where, &window );
 
 switch ( thePart )
 {
 case inMenuBar:
 menuChoice = MenuSelect( eventPtr->where );
 HandleMenuChoice( menuChoice );
 break;
 case inSysWindow : 
 SystemClick( eventPtr, window );
 break;
 }
}

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

void  HandleMenuChoice( long menuChoice )
{
 short  menu;
 short  item;
 
 if ( menuChoice != 0 )
 {
 menu = HiWord( menuChoice );
 item = LoWord( menuChoice );
 
 switch ( menu )
 {
 case mApple:
 HandleAppleChoice( item );
 break;
 case mFile:
 HandleFileChoice( item );
 break;
 case mOptions:
 HandleOptionsChoice( item );
 break;
 case mExtraMenu:
 HandleExtraMenuChoice( item );
 break;
 }
 HiliteMenu( 0 );
 }
}

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

void  HandleAppleChoice( short item )
{
 MenuHandle appleMenu;
 Str255 accName;
 short  accNumber;
 
 switch ( item )
 {
 case iAbout:
 SysBeep( 20 );
 break;
 default:
 appleMenu = GetMHandle( mApple );
 GetItem( appleMenu, item, accName );
 accNumber = OpenDeskAcc( accName );
 break;
 }
}

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

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

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

void  HandleOptionsChoice( short item )
{
 MenuHandle menu;
 
 menu = GetMHandle( mOptions );
 
 switch ( item )
 {
 case iChangeName:
 if ( gItemNameChanged )
 SetItem( menu, iChangeName, kUnchangedName );
 else
 SetItem( 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;
 }
}

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

void  HandleExtraMenuChoice( short item )
{
 MenuHandle menu;
 
 switch ( item )
 {
 case iDeleteMenu:
 menu = GetMHandle( mOptions );
 EnableItem( menu, iAddExtraMenu );
 
 DeleteMenu( mExtraMenu );
 DrawMenuBar();
 break;
 }
}

Once your code is typed in, save the source code file as MenuMaster.c, then Add the file to the project. 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 on 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 Q to exit the program. Q is the command-key equivalent for the File menu’s Quit item.

Source Code Highlights

Much of MenuMaster’s code should be familiar to you. That being the case, I’m going to stick to the highlights, 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’.

/* 2 */

#define mApple   kBaseResID
#define iAbout   1

#define mFile    kBaseResID+1
#define iQuit    1

#define mOptions kBaseResID+3
#define iChangeName1
#define iDisableMe 3
#define iEnablePrev4
#define iAddExtraMenu6
#define iAppendItem8
#define iAddedItem 9

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

/* 3 */

Boolean gItemNameChanged = false;

Notice that main() calls a new routine, MenuBarInit(), which handles the menu initialization.

/* 4 */

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

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

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

/* 5 */

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

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

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

/* 6 */

 menu = GetMHandle( mApple );
 AddResMenu( menu, 'DRVR' );

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

/* 7 */

 DrawMenuBar();
}

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

/* 8 */

/************************* 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().

/* 9 */

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

HandleMouseDown() also contains a change.

/* 10 */

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

void  HandleMouseDown( EventRecord *eventPtr )
{
 WindowPtrwindow;
 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().

/* 11 */

 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.

/* 12 */

/****************** 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.


/* 13 */

 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.

/* 14 */

 HiliteMenu( 0 );
 }
}

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

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

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

/* 15 */

 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.

/* 16 */

 default:
 appleMenu = GetMHandle( mApple );
 GetItem( appleMenu, item, accName );
 accNumber = OpenDeskAcc( accName );
 break;
 }
}

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

/* 17 */

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

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

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

/* 18 */

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

void  HandleOptionsChoice( short item )
{
 MenuHandle menu;
 
 menu = GetMHandle( mOptions );
 
 switch ( item )
 {
 case iChangeName:
 if ( gItemNameChanged )
 SetItem( menu, iChangeName, kUnchangedName );
 else
 SetItem( 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.


/* 19 */

/****************** 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.

/* 20 */

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

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

/* 21 */
 DeleteMenu( mExtraMenu );
 DrawMenuBar();
 break;
 }
}

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...

 
AAPL
$473.06
Apple Inc.
+5.70
MSFT
$32.24
Microsoft Corpora
-0.64
GOOG
$881.20
Google Inc.
-4.31

MacTech Search:
Community Search:

Software Updates via MacUpdate

TrailRunner 3.7.746 - Route planning for...
Note: While the software is classified as freeware, it is actually donationware. Please consider making a donation to help stimulate development. TrailRunner is the perfect companion for runners,... Read more
VueScan 9.2.23 - Scanner software with a...
VueScan is a scanning program that works with most high-quality flatbed and film scanners to produce scans that have excellent color fidelity and color balance. VueScan is easy to use, and has... Read more
Acorn 4.1 - Bitmap image editor. (Demo)
Acorn is a new image editor built with one goal in mind - simplicity. Fast, easy, and fluid, Acorn provides the options you'll need without any overhead. Acorn feels right, and won't drain your bank... Read more
Mellel 3.2.3 - Powerful word processor w...
Mellel is the leading word processor for OS X, and has been widely considered the industry standard since its inception. Mellel focuses on writers and scholars for technical writing and multilingual... Read more
Iridient Developer 2.2 - Powerful image...
Iridient Developer (was RAW Developer) is a powerful image conversion application designed specifically for OS X. Iridient Developer gives advanced photographers total control over every aspect of... Read more
Delicious Library 3.1.2 - Import, browse...
Delicious Library allows you to import, browse, and share all your books, movies, music, and video games with Delicious Library. Run your very own library from your home or office using our... Read more
Epson Printer Drivers for OS X 2.15 - Fo...
Epson Printer Drivers includes the latest printing and scanning software for OS X 10.6, 10.7, and 10.8. Click here for a list of supported Epson printers and scanners.OS X 10.6 or laterDownload Now Read more
Freeway Pro 6.1.0 - Drag-and-drop Web de...
Freeway Pro lets you build websites with speed and precision... without writing a line of code! With it's user-oriented drag-and-drop interface, Freeway Pro helps you piece together the website of... Read more
Transmission 2.82 - Popular BitTorrent c...
Transmission is a fast, easy and free multi-platform BitTorrent client. Transmission sets initial preferences so things "Just Work", while advanced features like watch directories, bad peer blocking... Read more
Google Earth Web Plug-in 7.1.1.1888 - Em...
Google Earth Plug-in and its JavaScript API let you embed Google Earth, a true 3D digital globe, into your Web pages. Using the API you can draw markers and lines, drape images over the terrain, add... Read more

The D.E.C Provides Readers With An Inter...
The D.E.C Provides Readers With An Interactive Comic Book Platform Posted by Andrew Stevens on August 13th, 2013 [ permalink ] | Read more »
Choose ‘Toons: Choose Your Own Adventure...
As a huge fan of interactive fiction thanks to a childhood full of Fighting Fantasy and Choose Your Own Adventure books, it’s been a pretty exciting time on the App Store of late. Besides Tin Man Games’s steady conquering of all things Fighting... | Read more »
Premier League Kicks Off This Week; Watc...
Premier League Kicks Off This Week; Watch Every Single Match Live Via NBC Sports Live Extra and Your iPhone or iPad Posted by Jeff Scott on August 13th, 2013 [ permalink ] | Read more »
Meet Daniel Singer, the Thirteen-Year-Ol...
Ever had the idea for an app, but felt like the lack of programming and design ability was a bit of a non-starter? Well, 13-year-old Daniel Singer has made an app. He’s the designer of Backdoor, a chat app that lets users chat with their friends... | Read more »
Flashout 2 Gets Revealed, Offers Up An E...
Flashout 2 Gets Revealed, Offers Up An Enhanced Career Mode and Exciting New Circuits Posted by Andrew Stevens on August 13th, 2013 [ permalink ] | Read more »
Mickey Mouse Clubhouse Paint and Play HD...
Mickey Mouse Clubhouse Paint and Play HD Review By Amy Solomon on August 13th, 2013 Our Rating: :: 3-D FUNiPad Only App - Designed for the iPad Color in areas of the Mickey Mouse Clubhouse with a variety of art supplies for fun 3-... | Read more »
Strategy & Tactics: World War II Upd...
Strategy & Tactics: World War II Update Adds Two New Scenarios Posted by Andrew Stevens on August 12th, 2013 [ permalink ] Universal App - Designed for iPhone and iPad | Read more »
Expenses Planner Review
Expenses Planner Review By Angela LaFollette on August 12th, 2013 Our Rating: :: PLAIN AND SIMPLEUniversal App - Designed for iPhone and iPad Expenses Planner keeps track of future bills through due date reminders, and it also... | Read more »
Kinesis: Strategy in Motion Brings An Ad...
Kinesis: Strategy in Motion Brings An Adaptation Of The Classic Strategic Board Game To iOS Posted by Andrew Stevens on August 12th, 2013 [ | Read more »
Z-Man Games Creates New Studio, Will Bri...
Z-Man Games Creates New Studio, Will Bring A Digital Version of Pandemic! | Read more »

Price Scanner via MacPrices.net

Apple refurbished iPads and iPad minis availa...
 Apple has Certified Refurbished iPad 4s and iPad minis available for up to $140 off the cost of new iPads. Apple’s one-year warranty is included with each model, and shipping is free: - 64GB Wi-Fi... Read more
Snag an 11-inch MacBook Air for as low as $74...
 The Apple Store has Apple Certified Refurbished 2012 11″ MacBook Airs available starting at $749. An Apple one-year warranty is included with each model, and shipping is free: - 11″ 1.7GHz/64GB... Read more
15″ 2.3GHz MacBook Pro (refurbished) availabl...
 The Apple Store has Apple Certified Refurbished 15″ 2.3GHz MacBook Pros available for $1449 or $350 off the cost of new models. Apple’s one-year warranty is standard, and shipping is free. Read more
15″ 2.7GHz Retina MacBook Pro available with...
 Adorama has the 15″ 2.7GHz Retina MacBook Pro in stock for $2799 including a free 3-year AppleCare Protection Plan ($349 value), free copy of Parallels Desktop ($80 value), free shipping, plus NY/NJ... Read more
13″ 2.5GHz MacBook Pro on sale for $150 off M...
B&H Photo has the 13″ 2.5GHz MacBook Pro on sale for $1049.95 including free shipping. Their price is $150 off MSRP plus NY sales tax only. B&H will include free copies of Parallels Desktop... Read more
iPod touch (refurbished) available for up to...
The Apple Store is now offering a full line of Apple Certified Refurbished 2012 iPod touches for up to $70 off MSRP. Apple’s one-year warranty is included with each model, and shipping is free: -... Read more
27″ Apple Display (refurbished) available for...
The Apple Store has Apple Certified Refurbished 27″ Thunderbolt Displays available for $799 including free shipping. That’s $200 off the cost of new models. Read more
Apple TV (refurbished) now available for only...
The Apple Store has Apple Certified Refurbished 2012 Apple TVs now available for $75 including free shipping. That’s $24 off the cost of new models. Apple’s one-year warranty is standard. Read more
AnandTech Reviews 2013 MacBook Air (11-inch)...
AnandTech is never the first out with Apple new product reviews, but I’m always interested in reading their detailed, in-depth analyses of Macs and iDevices. AnandTech’s Vivek Gowri bought and tried... Read more
iPad, Tab, Nexus, Surface, And Kindle Fire: W...
VentureBeat’s John Koetsier says: The iPad may have lost the tablet wars to an army of Android tabs, but its still first in peoples hearts. Second place, however, belongs to a somewhat unlikely... Read more

Jobs Board

Sales Representative - *Apple* Honda - Appl...
APPLE HONDA AUTOMOTIVE CAREER FAIR! NOW HIRING AUTO SALES REPS, AUTO SERVICE BDC REPS & AUTOMOTIVE BILLER! NO EXPERIENCE NEEDED! Apple Honda is offering YOU a Read more
*Apple* Developer Support Advisor - Portugue...
Changing the world is all in a day's work at Apple . If you love innovation, here's your chance to make a career of it. You'll work hard. But the job comes with more than Read more
RBB - *Apple* OS X Platform Engineer - Barc...
RBB - Apple OS X Platform Engineer Ref 63198 Country USA…protected by law. Main Function | The engineering of Apple OS X based solutions, in line with customer and Read more
RBB - Core Software Engineer - Mac Platform (...
RBB - Core Software Engineer - Mac Platform ( Apple OS X) Ref 63199 Country USA City Dallas Business Area Global Technology Contract Type Permanent Estimated publish end Read more
*Apple* Desktop Analyst - Infinity Consultin...
Job Title: Apple Desktop Analyst Location: Yonkers, NY Job Type: Contract to hire Ref No: 13-02843 Date: 2013-07-30 Find other jobs in Yonkers Desktop Analyst The Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.