TweetFollow Us on Twitter

Print Dialog
Volume Number:2
Issue Number:12
Column Tag:Basic School

Introduction to Print Dialogs

By Dave Kelly, MacTutor Editorial Board

Exploring the Printing Manager

This month we'll explore the Macintosh Printing Manager. The Printing Manager is a set of RAM-based routines that allow you to use standard Quickdraw routines to print text or graphics on a printer. Take a look at Inside Macintosh for details on the Printing Manager (starting on page II-147). Then when you're thoroughly confused, come back here and I'll try to clarify some points by example.

The examples that I've prepared here are written in ZBasic and Lightspeed Pascal. The pascal example is included to help clarify how the Printing Manager is actually used. ZBasic routines call parts of the Printing Manager to enable you to have some control over your graphics or text output. However, ZBasic does not give you full support even though it does support the Printing Manager in more specific ways than does MS Basic as of this writing. ZBasic Toolbox calls DO NOT support the Printing Manager routines (i.e., they are not available). Also, we've found that the ZBasic example here does not work as cleanly as the Pascal example, so we invite our readers to compare the two and try some alternative Basic approaches to improve its performance.

In ZBasic there is a short list of commands available to us which pertain to the Printing Manager (Found on page D-58 thru D-63 in the ZBasic manual). They are:

DEF LPRINT: this command calls up the job dialog box so the user may select the page range, print quality, etc.

DEF PAGE: this command calls up the page setup dialog box. The user selects the paper size and orientation via this dialog.

PRCANCEL: this function returns a true when the user has pressed the cancel button in the job dialog box (called with DEF LPRINT.

PRHANDLE: this function returns a pointer to the print record created by the Printing Manager. By using PEEK WORD (two byte peek) the records may be examined and important information can be read (see ZBasic manual page D-62).

ROUTE X: this statement routes the output of all printing to a specified device X. ROUTE 0 sends output to the screen; ROUTE 128 sends output to the printer driver. (Note Route 0 does not seem to effect the Printing Manager).

CLEAR LPRINT: abruptly closes the printer driver. If you haven't printed anything, a single sheet of paper (blank) is fed out of the printer.

Fig. 1 Our sample shows print record info

The whole idea of the Printing Manager is to have one set of printing routines that are independent of the type of printer used, to which all printed output can be sent. The Printing Manager will select the selected printer driver (must be on the system disk and chosen by the Chooser desk accessory) and directs the printing operation. The ROUTE 128 statement directs all output to the specified device, after which whatever Quickdraw commands are sent will be executed. In ZBasic, the PLOT, CIRCLE, BOX, COLOR, PEN, PICTURE commands use Quickdraw, and therefore are supported for printing. At this point, Quickdraw commands sent to the printer are executed the same as if they were sent to the screen (which you've probably done before). One thing lacking in the ZBasic implementation is control over the PrOpenDoc, PrOpenPage, PrClosePage, PrCloseDoc routines as discussed in Inside Macintosh.. Instead the CLEAR LPRINT command is used to "CLEAR" out all the impending printing. I'm not sure exactly which routines the CLEAR LPRINT statement actually calls.

The PRHANDLE command returns a handle to the Printing Manager record. It should be noted that until the Printing Manager is opened, the record will contain whatever random garbage was located in the memory allocated for the print record. You must open the print manager by using DEF PAGE or DEF LPRINT. Then the PRHANDLE function may be used. The document and page is opened when the DEF LPRINT statement is executed. The ZBasic manual does not give more than an example to indicate the parameters which are returned by PEEKing into the print record memory locations. The actual parameters are explained in detail in Inside Macintosh.. I attempted to duplicate the data referred to in the ZBasic manual (pg. D-62) in the Pascal program. I found that it was not hard to follow the data, but there were a few mistakes in the ZBasic implementation. Both the printer port and the printer type parameters did not seem to function properly. These parameters are labeled in the demo program. It should also be noted that until a document is printed the printing record does not contain the correct information (appears to be random stuff). After printing, the data appears to be mostly correct except for those noted. The pascal program gave correct results every time (before and after printing). I have no explanation for why ZBasic does not behave like Pascal except that this may indicate another area that needs debugging for Zedcor so beware.

The ZBasic demo demonstrates a technique in using the printing manager from your Zbasic application. The program opens the printing manager using the DEF LPRINT statement and then prints the print record parameters (as outlined in the ZBasic manual), after which a Quickdraw command is given to draw a box around the page. The page size was determined from the print parameters. A helpful command to use was the COORDINATE command. Notice that the coordinates of the page were used as the coordinates for the quickdraw drawing rectangle (the Grafport) by using the following statement: COORDINATE PEEK WORD(P+28),PEEK WORD(P+26) which reads the page size from the printing record. If your printed output will use fonts, etc., you may want to know the page size so you know where to place the characters on the page.

Lightspeed Pascal shows you how the Printing Manager is really used. It should be helpful to walk through the setup of the Pascal procedures in order to understand the Printing Manager better. First off for those just beginning or not familiar with Lightspeed Pascal, you must create a new project and add the PrLink and MacPrint routines from the Resource folder on the Lightspeed Pascal system disk. These are the routines which will be loaded into RAM when the Printing Manager is opened. Of course, the other Macintosh Toolbox calls are automatically included in the new project. Next, the file containing the Pascal program below must be added to the project. For those using another Pascal or language, note that PrLink is Apple's Print Manager interface that is released only in object file format. However, Paul Snively published a PrLink source file in assembly in a past issue of MacTutor if you are interested. The MacPrint file is the interface from LS Pascal to the Print Manager and an equivalent set of glue code should be supplied by any compiler maker.

The Print Manager

Assuming we already have a ready made event loop set up that we can use, we will continue by setting up our pascal procedures. The first one we'll call from our print routine will be 'openprintmgr'. This routine uses PrOpen to open the printing manager and get a handle pointing to the print record. As called for in Inside Macintosh , the print record is created with the statement: prRecHdl := THPrint(NewHandle( SIZEOF(TPrint)));. This statement gets a NewHandle to the print record 'TPrint'. The record is outlined on page II-149 of IM. Keep in mind that the toolbox procedures and functions are provided in the MacPasLib and MacTraps libraries files, therefore it is not necessary to type in the predefined records and other such information (I didn't realize this the first time I wrote a program with Lightspeed Pascal). The predefined procedures and functions are listed in the appendix of the Lightspeed Pascal manual. These functions and procedures match those listed in IM.

Ordinarily when you are preparing to print something when you run an application, you will want to be sure that the PageSetup is correct (you especially want to do this after changing drivers with the Chooser DA). In the procedure DoCommand for the case of the menu selection of PageSetup, the statement valid := PrStlDialog(prRecHdl); is used to select the Page Setup dialog (also called the style dialog). This pascal function returns a boolean reply for the buttons the user may have selected (true for 'OK' and false for 'Cancel'). The Jobsetup menu case uses the statement valid := PrJobDialog(prRecHdl); to call the Job dialog. The boolean is returned once again indicating what button the user selected.

So we see that setup of the printing is done as easily in Pascal as in Basic! However, printing is quite different in Pascal than in Basic. In the example, the print item of the menu first selects the PrJobDialog function to get the Job information from the user. Next the output must be specified. As we discussed earlier, all ZBasic printing is routed to the device selected by the ROUTE statement. In Pascal the printing grafport is opened with the PrOpenDoc function. In Quickdraw all output is sent to the current Grafport. In the program the statement myPrPort := PrOpenDoc( prRecHdl, NIL, NIL); opens the printing grafport to be used. Next, if there is no error, the program calls the PrOpenPage procedure PrOpenPage(myPrPort, NIL); to open a printing page. The next set of statements or procedures call Quickdraw statements and are drawn to the page that has been opened. When each page is finished (the example has only one page to print) the PrClosePage(myPrPort); statement should be called and PrOpenPage to open each new page. Next, you need to check to see if spooling was done. If spooling was done, then your pages were saved to the disk or memory to be spooled to the printer later. To spool to the printer, the PrPicFile procedure should be called. If draft printing was selected, then the pages are printed immediately (no spooling). You should test to see whether spooling was done, and if so, print the spooled document. You may want to free some memory so that there will be more memory for printing the spooled document. Details and another Pascal example are given on pages II-154 and II-155 of the Printing Manager section of IM.

Some hints that you should keep in mind when using Quickdraw for printing:

• Reset font and other grafport information with each new page. The grafport is completely reinitialized with each new page!.

• Don't use calls that don't do anything on the printer such as erasing, clipping etc. (See comments below on LaserWriter restrictions.)

• Don't use clipping to select the text to be printed. The page size may not match your screen size exactly.

• Don't use non-proportional spaced fonts to align columns of text.

For printing to the LaserWriter (according to IM ):

• Regions are not supported.

• Clipping should be limited to rectangles

• "Invert" routines are not supported.

• Copy is the only transfer mode supported for all objects except text and bit images. BIC is supported for Text. XOR is the only mode not supported for bit images.

• Don't change the grafPort's local coordinate system (with SetOrigin) within the printing loop (between PrOpenPage and PrClosePage).

Print Record Information

Access to the printing record information may be retrieved by using the commands in the getprintinfo procedure of the example program. The details here are very clear if you refer to the example program and IM. IM details information about saving your own print records for use by the printing manager instead of the default parameters.

Termination of the printing manager is done by calling the PrClose procedure. There is no need to close the driver after each print procedure unless you have a need to free up memory. Other low-level driver access information may be found in Inside Macintosh also.

I hope that the examples will help those of you that are trying to print graphics with your programs.

Basic Update

Here it is a few months after the release of several new Basic products and there have not been too many significant improvements to any of the Basics except for ZBasic. The latest Beta copy of now released version 3.02 appears to be a big improvement over the earlier versions. A few changes: menus have been redesigned and the program looks and feels much more "Mac-like". A bug (something to do with the window I/O) was located which had been causing a large number of the bombs. It looks like version 3.02 will be one we can trust!! The latest word is that Zedcor is now writing a new Editor (similar to the MSBasic editor) to replace the very poor editor in the previous copies. I hope to be able to comment about it some more next month if it has been completed by then. Appletalk commands are not yet implemented and will bomb if you try to use them. Bugs were fixed involving Edit fields, Box fill, POWERS statements. The startup screen has been replaced by a simple startup dialog box that appears with Andy Gariepy's picture. A SHUTDOWN command and auto repeat scroll bars have been added. DIALOG(16) may be used to read keypresses during event loops. (This replaces INKEY$ during event trapping). Looks like it's coming right along! A 33-page addendum to the ZBasic manual outlines the additions, changes and enhancements in version 3.02. For those of you that have earlier versions of ZBasic, you will be much more satisfied with the improvements. You may want to contact Zedcor about upgrade information.

Rumors are still in the air about the MS Basic compiler and improvements to MS Basic. Word is that Absoft has completed the compiler and Microsoft has purchased the rights to the CLR toolbox libraries and will be bundling the CLR libraries with the Absoft MS Basic compiler. More to come when I have more to tell.

REM ZBasic PrintDemo
REM By Dave Kelly
REM ©1986 by MacTutor
WINDOW OFF
WINDOW #1,"ZBasic printing",(50,50)-(450,300),3
W1=WINDOW(2)-1:W2=WINDOW(3)-1
DEFDBL INT P:DEF TAB 32
 MENU 1,0,1,"File"
 MENU 1,1,0,"Print to screen"
 MENU 1,2,1,"Print to printer"
 MENU 1,3,1,"Page Setup"
 MENU 1,4,1,"Job Setup"
 MENU 1,5,0,"-"
 MENU 1,6,1,"Clear Screen"
 MENU 1,7,1,"Quit"
ON DIALOG GOSUB "Dialogselection"
DIALOG ON
ON MENU GOSUB "Menuselection"
MENU ON

"Loop":
GOTO "Loop"
"Dialogselection":
 THEEVENT=DIALOG(0)
 IF THEEVENT<>5 THEN RETURN
 RETURN
"Menuselection":
 MENUNUMBER=MENU(0)
 MENUITEM=MENU(1)
 MENU OFF:MENU:DIALOG OFF
 ON MENUITEM GOSUB "Printscr", "Printptr", "Page", "Job",      "dummy", 
"Clrscr", "Quit"
 MENU ON:DIALOG OFF
 RETURN
"dummy":
 RETURN
"Clrscr":
 WINDOW PICTURE #1,0
 CLS:RETURN
"Printscr":
 COORDINATE WINDOW
 ROUTE 0
 PICTURE ON  
 GOSUB "Your print routine"
 PRINT@(X,19) "Parameters printed to screen may be in error."
 BOX 0,0 TO W1,W2
 PICTURE OFF, Pic&
 PICTURE,Pic&
 WINDOW PICTURE #1,Pic&
 RETURN
"Printptr":
 DEF LPRINT:CLS
 IF PRCANCEL<>0 THEN RETURN
 P=PEEK LONG(PRHANDLE)
 COORDINATE PEEK WORD(P+28),PEEK WORD(P+26)
 ROUTE 128
 GOSUB "Your print routine"
 BOX 0,0 TO PEEK WORD (P+28)-1,PEEK WORD(P+26)-1
 CLEAR LPRINT
 ROUTE 0
 MENU 1,1,1
 RETURN
"Job":
 DEF LPRINT
 MENU 1,1,1
 RETURN
"Page":
 DEF PAGE
 MENU 1,1,1
 RETURN
"Your print routine":
 X=5
 PRINT@(X,5) "Print Manager version",PEEK WORD(P)
 PRINT@(X,6) "Driver Info (What's that?)",PEEK WORD(P+2)
 PRINT@(X,7) "Vertical resolution",PEEK WORD(P+4)
 PRINT@(X,8) "Horizontal resolution",PEEK WORD(P+6)
 PRINT@(X,9) "Page Rectangle",PEEK WORD(P+8);PEEK WORD(P+10); PEEK WORD(P+12); 
PEEK WORD(P+14)
 PRINT@(X,10) "Paper Rectangle",PEEK WORD(P+16);PEEK WORD(P+18);PEEK 
WORD(P+20);PEEK WORD(P+22)
 PRINT@(X,11) "Paper height,width",PEEK WORD(P+26); ","; PEEK WORD (P+28)
 PRINT@(X,12) "Printer port  (ERROR!)",PEEK WORD(P+30)
 PRINT@(X,13) "Printer type  (ERROR!)",PEEK WORD (P+32)
 PRINT@(X,14) "First page",PEEK WORD(P+62)
 PRINT@(X,15) "Last page",PEEK WORD(P+64)
 PRINT@(X,16) "# of copies..",PEEK WORD(P+66)
 RETURN
"Quit":
 KILL PICTURE Pic&
 END


{ Printdemo program by Dave Kelly }
{ for MacTutor Dec 1986}
{ Lightspeed Pascal 1.0}

PROGRAM Printdemo;
USES
 MacPrint;
CONST
 appleID = 1;
 fileID = 2;
 appleMenu = 1;
 fileMenu = 2;
 menuCount = 2;
 printscr = 1;
 printptr = 2;
 pagesetup = 3;
 Jobsetup = 4;
 clrscr = 6;
 quit = 7;
 plainDBox = 2;

VAR
 myMenus :  ARRAY[1..menuCount] OF MenuHandle;
 theChar :  CHAR;
 extended : BOOLEAN;
 doneFlag : BOOLEAN;
 myEvent :  EventRecord;
 wRecord :  WindowRecord;
 Windowport :  Windowptr;
 whichWindow :   Windowptr;
 UpdateWindow :  Windowptr;
 windowsize :  longint;
 height, width : integer;
 sizeRect, size, dragRect : Rect;
 valid, screenprinted : boolean;
 prRecHdl : THPrint;
 printmgr : boolean;
 myPrPort : TPPrPort;
 myStRec :  TPrStatus;
 P : ARRAY[1..15] OF longint;
 pheight : longint;
 pwidth : longint;
 Ptype : integer;

PROCEDURE SetUpMenus;
VAR
 i : INTEGER;
BEGIN
 myMenus[appleMenu] := NewMenu(AppleID, chr(appleMark));
 AddResMenu(myMenus[appleMenu], 'DRVR');
 myMenus[fileMenu] := NewMenu(fileID, 'File ');
 appendmenu(myMenus[fileMenu], '(Print to screen;Print to printer;Page 
Setup;Job Setup;(-;Clear Screen;Quit/Q');
 FOR i := 1 TO menuCount DO
 InsertMenu(myMenus[i], 0);
 DrawMenuBar;
END;

PROCEDURE openprintmgr;
BEGIN
 PrOpen;
 prRecHdl := THPrint(NewHandle(SIZEOF(TPrint)));
 printmgr := true;
 EnableItem(myMenus[fileMenu], printscr);
END;

PROCEDURE getprintinfo;
BEGIN
 P[1] := prRecHdl^^.iPrVersion; { Print Manager version}
 P[2] := prRecHdl^^.prInfo.iVRes; { Vertical resolution}
 P[3] := prRecHdl^^.prInfo.iHRes; { Horiz resolution}
 P[4] := prRecHdl^^.prInfo.rPage.top; { Page Rec}
 P[5] := prRecHdl^^.prInfo.rPage.left;
 P[6] := prRecHdl^^.prInfo.rPage.bottom;
 P[7] := prRecHdl^^.prInfo.rPage.right;
 P[8] := prRecHdl^^.rPaper.top; { Paper Rectangle}
 P[9] := prRecHdl^^.rPaper.left;
 P[10] := prRecHdl^^.rPaper.bottom;
 P[11] := prRecHdl^^.rPaper.right;
 pheight := ((P[10] - P[8]) * 120 DIV P[2]); { Paper height}
 pwidth := ((P[11] - P[9]) * 120 DIV P[3]);{ Paper width}
 Ptype := (prRecHdl^^.prStl.wDev); {printer type}
 Ptype := (BitAnd(Ptype, 65280) DIV 256);
 P[12] := prRecHdl^^.prJob.iFstPage; { First page}
 P[13] := prRecHdl^^.prJob.iLstPage; { Last page}
 P[14] := prRecHdl^^.prJob.iCopies; { # of copies}
END;

PROCEDURE printinfo;
BEGIN
 Getprintinfo;
 textfont(monaco);
 textsize(9);
 moveto(20, 20);
 WriteDraw('Print Manager Version');
 moveto(150, 20);
 WriteDraw(P[1]);
 moveto(20, 30);
 WriteDraw('Vertical resolution');
 moveto(150, 30);
 WriteDraw(P[2]);
 moveto(20, 40);
 WriteDraw('Horizontal resolution');
 moveto(150, 40);
 WriteDraw(P[3]);
 moveto(20, 50);
 WriteDraw('Page Rectangle');
 moveto(150, 50);
 WriteDraw(P[4], P[5], P[6], P[7]);
 moveto(20, 60);
 WriteDraw('Papar Rectangle');
 moveto(150, 60);
 WriteDraw(P[8], P[9], P[10], P[11]);
 moveto(20, 70);
 WriteDraw('Paper height');
 moveto(150, 70);
 WriteDraw(pheight);
 moveto(20, 80);
 WriteDraw('Paper width');
 moveto(150, 80);
 WriteDraw(pwidth);
 moveto(20, 90);
 WriteDraw('Printer type');
 moveto(150, 90);
 WriteDraw(Ptype);
 moveto(20, 100);
 WriteDraw('First Page');
 moveto(150, 100);
 WriteDraw(P[12]);
 moveto(20, 110);
 WriteDraw('Last Page');
 moveto(150, 110);
 WriteDraw(P[13]);
 moveto(20, 120);
 WriteDraw('# of copies');
 moveto(150, 120);
 WriteDraw(P[14]);
END;

PROCEDURE DrawingProc;
BEGIN
 framerect(myPrPort^.gPort.portRect);
 printinfo;
END;

PROCEDURE DoCommand (mResult : LONGINT);
VAR
 theItem : INTEGER;
 theMenu :  INTEGER;
 name : Str255;
 temp, i :  INTEGER;
BEGIN
 theItem := LoWord(mResult);
 theMenu := HiWord(mResult);
 CASE theMenu OF
 appleID : 
 BEGIN
 GetItem(myMenus[appleMenu], theItem, name);
 temp := OpenDeskAcc(name);
 SetPort(Windowport);
 END;
 fileID : 
 CASE theItem OF
 printscr : 
 BEGIN
 IF printmgr THEN
 BEGIN
 SetPort(Windowport);
 eraserect(Windowport^.portrect);
 FrameRect(Windowport^.portrect);
 printinfo;
 validRect(Windowport^.PortRect);
 screenprinted := true;
 END;
 END; { printscr}

 printptr : 
 BEGIN
 IF NOT printmgr THEN
 openprintmgr;
 valid := PrJobDialog(prRecHdl);
 IF valid THEN
 BEGIN
 myPrPort := PrOpenDoc(prRecHdl, NIL, NIL);
 IF PrError = noErr THEN
 BEGIN
 PrOpenPage(myPrPort, NIL);
 IF PrError = noErr THEN
 DrawingProc;
 PrClosePage(myPrPort);
 END;
 PrCloseDoc(myPrPort);
 IF (prRecHdl^^.prJob.bjDocLoop = bSpoolLoop) AND (PrError = noErr) THEN
 PrPicFile(prRecHdl, NIL, NIL, NIL, myStRec);
 END;
 END;
 Jobsetup : 
 BEGIN
 IF NOT printmgr THEN
 openprintmgr;
 valid := PrJobDialog(prRecHdl);
 END;
 pagesetup : 
 BEGIN
 IF NOT printmgr THEN
 openprintmgr;
 valid := PrStlDialog(prRecHdl);
 END;
 clrscr : 
 BEGIN
 eraserect(Windowport^.portrect);
 screenprinted := false;
 END;
 quit : 
 BEGIN
 IF printmgr THEN
 BEGIN
 PrClose;
 printmgr := false;
 END;
 doneFlag := TRUE;
 END;
 OTHERWISE
 ;
 END; {itemCase}
 OTHERWISE
 ;
 END; { menuCase }
 SetPort(Windowport);
 HiliteMenu(0);
END;

{Here is the Main Program}

BEGIN
InitGraf(@thePort);
InitFonts;
FlushEvents(everyEvent, 0);
InitWindows;
InitMenus;
InitDialogs(NIL);
InitCursor;

SetRect(sizeRect, 50, 50, 450, 300);
dragRect := sizeRect;
doneFlag := FALSE;
printmgr := false;
screenprinted := false;
Windowport := Newwindow(@wRecord, sizeRect, '', true,    plainDBox, POINTER(-1), 
false, 0);
SetPort(Windowport);
SetUpMenus;

{ This is the main event loop}

REPEAT
SystemTask;
IF GetNextEvent(everyEvent, myEvent) THEN
CASE myEvent.what OF
mouseDown : 
 CASE FindWindow(myEvent.where, whichWindow) OF
 inDesk : 
 ; {Not used}
 inMenuBar : 
 DoCommand(MenuSelect(myEvent.where));
 inSysWindow : 
 SystemClick(myEvent, whichWindow);
 inContent : 
 BEGIN
 IF whichWindow <> FrontWindow THEN
 SelectWindow(whichWindow)
 ELSE
 BEGIN
 GlobalToLocal(myEvent.where);
 extended := BitAnd(myEvent.modifiers, shiftKey) <> 0;
 END;
 END;
 inDrag : 
 ; {Not used}
 inGrow : 
 ; {Not used}
 inGoAway : 
 ; {Not used}
 END;
mouseUp : 
 ; {Not used}
keydown, autokey : 
 BEGIN
 theChar := CHR(BitAnd(myEvent.message, charCodeMask));
 IF BitAnd(myEvent.modifiers, cmdKey) <> 0 THEN
 DoCommand(MenuKey(theChar));
 END;
keyUp : 
 ; {Not used}
updateEvt : 
 IF screenprinted THEN
 BEGIN
 UpdateWindow := WindowPtr(myEvent.message);
 BeginUpdate(UpdateWindow);
 SetPort(UpdateWindow);
 eraserect(UpdateWindow^.portrect);
 FrameRect(UpdateWindow^.portrect);
 printinfo;
 EndUpdate(UpdateWindow);
 END;
diskEvt : 
 ; {Not used}
activateEvt :
 ; {Not used}
networkEvt : 
 ; {Not used}
driverEvt : 
 ; {Not used}
OTHERWISE
 ;
END;
UNTIL doneFlag;
END.
 
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.