TweetFollow Us on Twitter

Fat Bits
Volume Number:2
Issue Number:6
Column Tag:C Workshop

Mouse DA shows off Fat Bits

By Rick Flott, FlottWare, Chandler, AZ

Mouse Position Desk Accessory

Introduction

Setting up screen graphics on the Mac can be a very tedious and time consuming job. Previously I have used "Mouse Position" desk accessories (DA's) to show the position of the mouse, but none of them had the features I wanted. So as a true programmer I wrote one myself. I borrowed some ideas from others and added a few new ones of my own.

First, I must give credit where it is due. I used an old DA called Magnifying Glass to get a "Fat Bits" view of the screen. I really thought the "Fat Bits" was neat, but wanted other information. This Mouse Position DA also has this feature, but uses it in a little different way.

Using the Mouse Position DA

The window created by the Mouse Position DA looks like this -

The top line gives the name of the window the cursor is currently over. The next two lines (labeled 'L' and 'G') give the local and global coordinates of the mouse (both horizontal and vertical portions are given). The bottom graphics give a "Fat Bits" view of the mouse position. There are a few differences between these "Fat Bits" and others you may have seen.

First, the actual position of the cursor is in the center of the screen (not in the top left corner). Second, the gray lines symbolize the real point (as you all know from reading Inside Macintosh - points do not occupy space, they are at the intersection of infinitely thin horizontal and vertical grid lines). The "hot spot" of the cursor is the point immediately below and to the right of the gray "crosshairs" (the tip of the paintbrush of the MacPaint Icon shown in the window). The "crosshairs" do not cover up any pixels, they just split the rectangle surrounding the cursor into four planes.

There are also a few other features in this DA -

• when the mouse is over the desktop, the window name is set to "DeskTop" and no local coordinates are shown (since they don't exist).

• the window name, local, and global coordinates can be "Cut" or "Copied" to the clipboard and "Pasted" into your program.

• when the CapsLock key is down and the coordinates are Cut or Copied, they are appended to the clipboard. This is very handy when setting up rectangles or other complex graphics that require multiple points. Just press CapsLock and start Copying!

• remember - in most applications Cut and Copy only work on the topmost window, hence the Mouse Position window must be in front for these commands to work.

Code Description

As in any desk accessory, 5 routines must be present -

• open (initializes the DA)

• close (stops the DA)

• control (receives commands from system)

• prime

• status

The latter two routines do not need to perform any functions, but they must be present.

The open routine in the Mouse Position DA is the "main()" of this C program. It allocates the DA window from the heap, sets up the font for this window, and draws the "static" portion of the window. It also stores the reference number of the DA in the windowKind field of the window. This is very important since this the only way the Mac knows that this is a "system" window and to pass the proper events to it and not to the running application. In addition to this, the pointer to the window is kept in the device control entry for retrieval later on. Remember, a desk accessory is viewed as 5 separate routines called by the system (unlike an application).

The Close routine does the opposite of the open. It releases the memory used by the window and resets the proper fields in the device control entry record.

The Control routine does all the work. It takes commands from the system (passed to it when the application calls SystemTask, SystemEdit, or SystemClick) and processes them. In this DA, only two commands are processed - accRun (periodic command telling the DA to run) and accEvent (command telling the DA to handle an event). As you will see later on, this DA is set up to run as often as possible so that the mouse position coordinates appear to be updated continuously in the window.

This routine starts off by obtaining the window pointer from the device control entry and parsing the command (CSCode) sent to it. If it is a run command (accRun) then the new mouse position is displayed (by calling the routine dspMousePos). If it is the event command (accEvent) then the doEvent routine is called.

The doEvent routine handles 4 types of events - keyDown, autoKey, updateEvt, and activateEvt. The updateEvt will re-draw the coordinates and the window name. The activateEvt only re-draws the coordinates. The keyDown and autoKey events do most of the work in this code. When either of these events occur, a string is allocated, the coordinates and window name placed into the string (with the Munger ROM call), and moved to the clipboard.

Why did I append perfectly good strings into another string? I'm lazy I guess (plus the string is temporarily allocated off the heap and is released immediately). Notice that if the Cut or Copy keys are capitals (the CapsLock key is down) then the current TEXT contents of the clipboard are placed in the string. This allows the user to "append" coordinates together as previously described.

The dspMousePos routine first gets the current coordinates of the mouse. If the mouse has moved from the last time this routine was called, then processing continues, otherwise this routine just returns. This keeps down the "flicker" of the display, since the window is only updated when the mouse moves. It also keeps the DA from being a CPU hog.

Next, the name of the window the mouse is currently over is retrieved. If it is a different window than the last time, the new name is displayed (by the routine dspWindowTitle).

If the mouse is not on the desktop, then the local coordinates must be recomputed. GetMouse gives the mouse in local coordinates of the active window, not the window the mouse is currently over (which may be inactive or even invisible). Hence, the local coordinates must be recomputed with respect to the window the mouse is over. The rest of this routine is straightforward.

The coordinates are converted to strings, the "h" and "v" characters are appended to them, and these strings are displayed right justified in the window. Next, the four "Fat Bit" rectangles are displayed. Notice that 24 pixels surrounding the cursor in the horizontal direction and 16 pixels surrounding the cursor in the vertical direction are displayed (using CopyBits) in the window.

The dspWindowTitle routine first determines if the window passed to it is the desktop or a real window. If it is a real window, then its name is retrieved. Otherwise the name "DeskTop" is used. It then displays this name center justified in the DA window. It also adds a carriage return ('\n') to the name so that when the name is Cut or Copied to the clipboard, the coordinates will be on the next line (like in the window).

The drawWindow routine just draws the "static" portion of the window. This includes the "G" and "L" characters, the horizontal dividing lines, and the gray "crosshairs".

Consulair's DeskMaker

Now all of you desk accessory veterans are saying - "this stuff will never work, look at all of the global variables this guy has in a DA". Well, an application called DeskMaker by Consulair (included with their Mac C development system) takes alot of the headache out of writing DA's. After talking with Bill Duvall, he informed me that the way DeskMaker works is that it takes all of the global variables (referenced off of A4 by the #Options R=4 line) and makes them part of the DRVR resource (he appends them to the end of the code). This allows them to be global and still be accessed by the code in the DA. Of course, I didn't call him until I had already stayed up all night allocating my globals from the heap and accessing them through a handle. Oh well, it wasn't the first time I threw out code, and it won't be the last.

In addition to this, DeskMaker takes commands from a ".desk" text file to set up the DA's flags and header constants they require. You can turn any flag on or off, set up the other constants (like drvrDelay, drvrMask, etc.), and specify the names of the standard routines (Open, Close, Control, etc.) He has also added another command "Test" which allows you temporarily install the DA in the system menu to try it out. This is nice since you do not have to use Font/DA Mover or any of the other applications/DA's that run DA's from a file.

The "MousePos.Desk" listing shows the commands sent to DeskMaker for this DA. First, the filename, map, and name of the DA is set up. Next, the names of the 5 routines are defined. Finally, the drvrEMask, drvrDelay, and drvrFlags are set up. This DA was given the ID of 22 and the test flag was set to allow debugging. Since most of the C compilers handle DAs differently, this information should allow you to recreate this DA on other compilers.

MousePos.c Lisiting

/*************************************************************

  MousePos.c

     This is a desk accessory that shows three things about the position 
of the mouse cursor -

     - Name of the window the cursor is currently over
     - Local and global coordinates of the cursor
     - "Fat Bits" display of a rectangle around the cursor

      It also allows the user to Copy or Cut the window name and the 
local & global coordinates to the clipboard (CapsLock-Copy or CapsLock-Cut 
will append the coordinates to the clipboard).

 Written by: Rick Flott                           Mac C (Consulair) V 
4.5
*************************************************************/

#Options R=4 L=500 F=8000 Z Q=0 O=200

#include "MacCDefs.h"// Mac ROM data structure def's
#include "Events.h"
#include "Window.h"
#include "Font.h"
#include "TextEdit.h"
#include "Osmisc.h"
#include "Osio.h"
#include "Desk.h"

/*----------------------------------------------------------------
    Global Data
-----------------------------------------------------------------*/

/* ------ Constants ----- */

#define FALSE 0
#define TRUE  0xFF

/* ------- Types ------- */

typedef struct    // 6 char strings for the coord's
 {
 char count;
 char s[6];
 } Str6;

/* ---- Rectangles ---- */

Rect titleRect      = {  0,  0, 10,100},   // Window title rect
     localStrRect   = { 11,  1, 21,  6},
     localHRect     = { 11,  6, 21, 49},     // Local horiz coord's rect
     localVRect     = { 11, 52, 21, 94},   // Local vert  coord's rect
     globalStrRect  = { 21,  1, 31,  6},
     globalHRect    = { 21,  6, 31, 49},   // Global horiz coord's rect
     globalVRect    = { 21, 52, 31, 94},  // Global vert  coord's rect

     fBTopLeftRect  = { 32,  0, 64, 48}, // "Fat Bits" rect's
     fBBotLeftRect  = { 68,  0,100, 48},
     fBTopRightRect = { 32, 52, 64,100},
     fBBotRightRect = { 68, 52,100,100},

     windowRect     = { 50,  5,150,105}; // DA window rect

/* ----- Strings ------ */

char   deskTopTitle[] = {"\pDeskTop"}; // Constant desktop str

Str6   localVStr,  localHStr, // Local coord strings
       globalVStr, globalHStr;// Global coord strings

Str255 windowT;    // Window name string

/* --- Global Var's --- */

WindowPtr oldFrontWindow = 0; // Last front window ptr
Point     oldPt = {0,0};   // Last position of mouse

struct QDVar *getQD();


/*------------------------------------------------------------------------
    main()     (Open routine)

      The Open routine opens the desk accessory window and intializes 
any global data before the desk accessory is used.
-------------------------------------------------------------*/

int main(parameterBlock,DeviceControlEntry)
 CntrlParam       *parameterBlock;
 DeviceControl *DeviceControlEntry;
 {
 WindowPtr windowPtr;
 GrafPtr port;

 if ((windowPtr = DeviceControlEntry->dCtlWindow) == 0)
 {
 GetPort(&port); // Preserve appl window
    // Open DA window
 windowPtr = NewWindow(0, &windowRect,
 "\pMouse Pos",0,
 rDocProc, -1, 1, 0);
 if (windowPtr == 0)
      return(-1);

   SetPort(windowPtr);       // Use this new window

   // Set it as a system window
   ((WindowPeek)windowPtr)->windowKind =     
                                                  DeviceControlEntry->dCtlRefNum;

  // Save DA window ptr
   DeviceControlEntry->dCtlWindow=windowPtr;

   TextFont(monaco);    // Set up DA font
   TextSize(9);

   drawWindow();   // Draw static portion of window

   SetPort(port);   // Restore application window
   }

 return 0;

 } // end main()

/*----------------------------------------------------------------
    Close()

      The Close routine disposes of the desk accessory window and any 
data allocated on the heap.
--------------------------------------------------------------*/

int Close(parameterBlock,DeviceControlEntry)
 CntrlParam       *parameterBlock;
 DeviceControl *DeviceControlEntry;
 {
 WindowPtr windowPtr;
 // Get DA window ptr
 windowPtr = DeviceControlEntry->dCtlWindow; 

 DisposeWindow(windowPtr);   // Release DA window
 DeviceControlEntry->dCtlWindow = 0;

 return 0;

 } // end Close()

/*--------------------------------------------------------------
   Prime()

      This desk accessory does not use a Prime routine.
----------------------------------------------------------------*/

Prime(parameterBlock,DeviceControlEntry)
 CntrlParam       *parameterBlock;
 DeviceControl *DeviceControlEntry;
 {
 }

/*--------------------------------------------------------------
   Status(parameterBlock,DeviceControlEntry)

      This desk accessory does not use a Status routine.
---------------------------------------------------------------*/

Status(parameterBlock,DeviceControlEntry)
 CntrlParam       *parameterBlock;
 DeviceControl *DeviceControlEntry;
 {
 }

/*----------------------------------------------------------------
    Control()

      The Control routine parses the desk accessory command sent from 
the system and routes the data to the proper routine. The commands currently 
used are -

 accRun - Display the mouse position.
 accEvent - Handle Cut and Copy menu commands.

----------------------------------------------------------------*/

Control(parameterBlock,DeviceControlEntry)
 CntrlParam       *parameterBlock;
 DeviceControl *DeviceControlEntry;
 {
 GrafPtr port;
 WindowPtr windowPtr;
 // Get DA window ptr
 windowPtr = DeviceControlEntry->dCtlWindow; 

 GetPort(&port); // Preserve application window
 SetPort(windowPtr);    // Use DA window

 switch (parameterBlock->CSCode) // What cmd was sent?
 {
 case accRun:      // cmd = RUN
 dspMousePos(windowPtr);      // Display new  position
 break;
 case accEvent:   // cmd = HANDLE EVENT
 doEvent(parameterBlock->csp.event,windowPtr);
 break;
 } // end switch

 SetPort(port);   // Restore appl window

  } // end Control()


/*----------------------------------------------------------------
    doEvent()

      This routine parses the event sent from the system. The events 
currently used are -

 keyDown, autoKey  - Cut or Copy the window name &                   
                                                  mouse coord's to clipboard.

 updateEvt         - Redraw the entire desk acc window.

 activateEvt       - Redraw the only the mouse coord's.

--------------------------------------------------------------*/

doEvent(event,windowPtr)
 EventRecord *event;
 WindowPtr    windowPtr;
 {
 Handle strHandle;
 Ptr    strPtr;
 int    scrapOffset;
 long   offset = 0;

 switch (event->what)// Which event occurred?
 {
 case keyDown:
 case autoKey:   // Event = KEY PUSH
 if ((event->modifiers&cmdKey))      // Was it a cmd key?
 {
 strHandle = (Handle)NewHandle(0); // Allocate a string

 // Only allow Cut,Copy
 switch ((char)(event->message))
 {
 case 'C':         // If Shift/CapsLock, copy previous clip
 case 'X':
 offset = GetScrap(strHandle,
  'TEXT',&scrapOffset);
 case 'c':
 case 'x':
 if (offset < 0)   // Was there a scrap error?
 {
 SysBeep(2);// Y - return
 break;
 }

 if (ZeroScrap())// Clear the clipboard
 {
 SysBeep(2);
 break;
 }

        // Grow string to place clipboard stuff in

   SetHandleSize(strHandle,offset+
 (sizeof windowT)+
 (sizeof localHStr)+
 (sizeof localVStr)+
 (sizeof globalHStr)+
 (sizeof globalVStr));

        // Place window name, local, global coord's into string

        offset = Munger(strHandle, offset,0,0, windowT.s,      
 (long) windowT.count);
           offset = Munger(strHandle, offset,0,0, localHStr.s, 
 (long) localHStr.count);
        offset = Munger(strHandle, offset,0,0, localVStr.s,    
 (long) localVStr.count);
        offset = Munger(strHandle, offset,0,0, globalHStr.s,
 (long) globalHStr.count);
        offset = Munger(strHandle,offset,0,0, globalVStr.s,
 (long) globalVStr.count);

        HLock(strHandle); // Lock the string down

        strPtr = (Ptr)*strHandle;
        // Put string into clipboard
        if (PutScrap((long)offset,'TEXT',strPtr))
 SysBeep(20);

   HUnlock(strHandle);  // Unlock the string
   break;

        default: // Beep on other cmd keys
        SysBeep(2);
    break;

 } // end switch

 DisposHandle(strHandle); // Release the string
   } // end if

   return;

 case updateEvt: // Event = UPDATE EVENT
 SetPort(windowPtr);  // Use DA window
 BeginUpdate(windowPtr);
 drawWindow();      // Redraw the window
 // Display  new window title
 dspWindowTitle(oldFrontWindow); 
 EndUpdate(windowPtr);
 return;

 case activateEvt: // Event = ACTIVATE EVENT
 dspMousePos(windowPtr);   // Display  new mouse pos
 return;

    } // end switch
  } // end doEvent()

/*-----------------------------------------------------------
   dspMousePos()

      This routine displays the position of the mouse. It displays the 
following information -

 - Local and global coordinates of the cursor
 - "Fat Bits" display of a rectangle around the cursor

------------------------------------------------------------*/

dspMousePos(windowPtr)
  WindowPtr windowPtr;
  {
  Rect      cursorRect;
  WindowPtr mouseWindow;
  short     windowCode;
  struct    QDVar *myQD;  // Place for copy of QD pointer
  Point     localPt,globalPt;

  myQD = getQD();// Get a copy of QD pointer

  GetMouse(&localPt);// Get the new mouse position
  globalPt = localPt;
  LocalToGlobal(&globalPt); // Convert it to global coord's

  if (!EqualPt(&globalPt,&oldPt))  // Has the mouse moved?
 {
    oldPt = globalPt;// Y - remember where it now is

  // Determine the window the mouse is now in
    windowCode = FindWindow(&globalPt, 
   &mouseWindow);

 // Is mouse in a different window?
    if (oldFrontWindow != mouseWindow)
            // Y - Display  title of new window
      dspWindowTitle(oldFrontWindow = mouseWindow);

    if (mouseWindow) // Is the mouse on the Desktop?
      { // N - get, display  local coord's
 // Get local coord's of window mouse is in
      SetPort(mouseWindow);
      localPt = globalPt;
      GlobalToLocal(&localPt);
           // Convert local coord's to strings
      NumToString(localPt.h,&localHStr);
      NumToString(localPt.v,&localVStr);

      localHStr.s[localHStr.count++]='h';    // Add in 'h' and 'v'
      localVStr.s[localVStr.count++]='v';
      localVStr.s[localVStr.count++]='\n';   // Add CR
      }
    else    // Y - don't display local coord's when on desktop
      localHStr.count=localVStr.count=0;

    SetPort(windowPtr);      // Draw in desk acc window
 // Convert global coord's to strings
    NumToString(globalPt.h,&globalHStr);
    NumToString(globalPt.v,&globalVStr);

    globalHStr.s[globalHStr.count++]='h';    // Add in 'h' and 'v'
    globalVStr.s[globalVStr.count++]='v';
    globalVStr.s[globalVStr.count++]='\n';   // Add CR

 // Display global coord's
    TextBox(globalHStr.s,globalHStr.count,
                      &globalHRect,-1);
    TextBox(globalVStr.s,globalVStr.count,
                      &globalVRect,-1);
 // Display local coord's
    TextBox(localHStr.s,localHStr.count,     
            &localHRect,-1);
    TextBox(localVStr.s,localVStr.count,
            &localVRect,-1);


    SetRect(&cursorRect,  // Set up top left "Fat Bits" rect
                      globalPt.h-12,globalPt.v-8,
           globalPt.h, globalPt.v);
    CopyBits(&myQD->screenBits, // Display  top left "Fat Bits"
                       &windowPtr->portBits,
    &cursorRect,&fBTopLeftRect,srcCopy,0);


    SetRect(&cursorRect,  // Set up bottom left "Fat Bits" rect
                     globalPt.h-12,globalPt.v,
  globalPt.h, globalPt.v+8);
    CopyBits(&myQD->screenBits,    // Display bot left "Fat Bits"
             &windowPtr->portBits,
    &cursorRect,&fBBotLeftRect,srcCopy,0);

    SetRect(&cursorRect,  // Set up bottom right "Fat Bits" rect
                      globalPt.h, globalPt.v,
   globalPt.h+12,globalPt.v+8);
    CopyBits(&myQD->screenBits,  // Display bot right "Fat Bits"
                        &windowPtr->portBits,
 &cursorRect,&fBBotRightRect,srcCopy,0);


    SetRect(&cursorRect,  // Set up top right "Fat Bits" rect
                     globalPt.h, globalPt.v-8,
 globalPt.h+12,globalPt.v);
    CopyBits(&myQD->screenBits,  // Display top right "Fat Bits"
                        &windowPtr->portBits,
 &cursorRect,&fBTopRightRect,srcCopy,0);

    } // endif
  } // end dspMousePos()

/*----------------------------------------------------------------
   dspWindowTitle()

      This routine displays the name of the window passed to it in the 
window title rectangle.

---------------------------------------------------------------*/
dspWindowTitle(windowPtr)
  WindowPtr windowPtr;
  {
  if (windowPtr) // Is the mouse in a real window?
  // Y - display  window's name
    GetWTitle(windowPtr,&windowT);
  else   // N - display the desktop name
    BlockMove(&deskTopTitle[0],&windowT,deskTopTitle[0]+1);

  TextBox(windowT.s,windowT.count,&titleRect,1);
  windowT.s[windowT.count++] = '\n'; // Add CR

 } // end dspWindowTitle()

/*----------------------------------------------------------------------
  drawWindow()

 This routine draws the "static" portion of the window.

  ----------------------------------------------------------------------*/
drawWindow()
  {
  struct    QDVar *myQD;  // Place for copy of QD pointer

  myQD = getQD();  // Get a copy of QD pointer

  MoveTo(globalStrRect.left,// Draw "G"
                   globalStrRect.bottom - 1 );
  DrawChar('G');

 MoveTo(localStrRect.left,  // Draw "L"
                   localStrRect.bottom - 1);
  DrawChar('L');

  MoveTo(0,titleRect.bottom);  // Draw the horiz dividing lines
  Line(titleRect.right,0);
  MoveTo(0,globalStrRect.bottom);
  Line(titleRect.right,0);

  PenSize(4,4);
  PenPat(&myQD->gray);

  MoveTo(fBTopLeftRect.right,    // Draw crosshairs
                   fBTopLeftRect.bottom);
  LineTo(fBTopRightRect.right,fBTopRightRect.bottom);

  MoveTo(fBTopLeftRect.right,
                   fBTopLeftRect.bottom);
  LineTo(fBBotLeftRect.right,fBBotLeftRect.bottom);

  MoveTo(fBTopLeftRect.right,
                   fBTopLeftRect.bottom);
  LineTo(fBTopLeftRect.left,fBTopLeftRect.bottom);

  MoveTo(fBTopLeftRect.right,
                   fBTopLeftRect.bottom);
  LineTo(fBTopLeftRect.right,fBTopLeftRect.top);

  PenNormal();

  } // end drawWindow()

/*--------------------------------------------------------------
      getQD()

      This routine returns the pointer used by Quikdraw to point to its 
global data.

-------------------------------------------------------------*/
 {
  #asm

grafSizeEQU $CA

  MOVE.L0(A5),A0
  SUB.L #grafSize,A0

  #endasm
  } // end getQD()

/*-------------------------------------------------------------
      NumToString()  (Package glue routine)

---------------------------------------------------------------*/

NumToString(theNum,theString)
  long         theNum;
  struct PStr *theString;

  {
  #asm
 MOVE.L D1,A0    ; theString
 MOVE   #0,-(SP) ; NumToString selector
 DC.W   $A9EE    ; PACK7
  #endasm
  }

MousePos.link Listing

/NoAnimate
/Output MousePos
/Type 'DFIL' 'DMOV'

MousePos

$

MousePos.desk Listing

File MousePos

Map MousePos.map

Name "Mouse Position"

Open main

Close close

Control control

Status status

Prime prime

EventMask 362
Delay 0

+ Periodic
+ Control
+ Status

DeskID 22

+ Test
 
AAPL
$467.36
Apple Inc.
+0.00
MSFT
$32.87
Microsoft Corpora
+0.00
GOOG
$885.51
Google Inc.
+0.00

MacTech Search:
Community Search:

Software Updates via MacUpdate

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
Google Earth 7.1.1.1888 - View and contr...
Google Earth gives you a wealth of imagery and geographic information. Explore destinations like Maui and Paris, or browse content from Wikipedia, National Geographic, and more. Google Earth... Read more
SMARTReporter 3.1.1 - Hard drive pre-fai...
SMARTReporter is an application that can warn you of some hard disk drive failures before they actually happen! It does so by periodically polling the S.M.A.R.T. status of your hard disk drive. S.M.... 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 »
Minutely Review
Minutely Review By Jennifer Allen on August 12th, 2013 Our Rating: :: CROWDSOURCING WEATHERiPhone App - Designed for the iPhone, compatible with the iPad Work together to track proper weather conditions no matter what area of the... | Read more »
10tons Discuss Publishing Fantasy Hack n...
Recently announced, Trouserheart looks like quite the quirky, DeathSpank-style fantasy action game. Notably, it’s a game that is being published by established Finnish games studio, 10tons and developed by similarly established and Finnish firm,... | Read more »
Boat Watch Lets You Track Ships From Por...
Boat Watch Lets You Track Ships From Port To Port Posted by Andrew Stevens on August 12th, 2013 [ permalink ] Universal App - Designed for iPhone and iPad | Read more »
Expenses Review
Expenses Review By Ruairi O'Gallchoir on August 12th, 2013 Our Rating: :: STUNNINGiPhone App - Designed for the iPhone, compatible with the iPad Although focussing primarily on expenses, Expenses still manages to make tracking... | Read more »
teggle is Gameplay Made Simple, has Play...
teggle is Gameplay Made Simple, has Players Swiping for High Scores Posted by Andrew Stevens on August 12th, 2013 [ permalink ] | Read more »
How To: Manage iCloud Settings
iCloud, much like life, is a scary and often unknowable thing that doesn’t always work the way it should. But much like life, if you know the little things and tweaks, you can make it work much better for you. I think that’s how life works, anyway.... | Read more »

Price Scanner via MacPrices.net

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
Should You Buy An iPad mini Or An iPad 4?
Macworld UK’s David Price addresses the conundrum of which iPAd to buy? Apple iPad 4, iPad 2, iPad mini? Or hold out for the iPad mini 2 or the iPad 5? Price notes that potential Apple iPad... Read more
iDraw 2.3 A More Economical Alternative To Ad...
If you’re a working graphics pro, you can probably justify paying the stiff monthly rental fee to use Adobe’s Creative Cloud, including the paradigm-setting vector drawing app. Adobe Illustrator. If... Read more
New Documentary By Director Werner Herzog Sho...
Injuring or even killing someone because you were texting while driving is a life-changing experience. There are countless stories of people who took their eyes off the road for a second and ended up... Read more
AppleCare Protection Plans on sale for up to...
B&H Photo has 3-Year AppleCare Warranties on sale for up to $105 off MSRP including free shipping plus NY sales tax only: - Mac Laptops 15″ and Above: $244 $105 off MSRP - Mac Laptops 13″ and... 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.