TweetFollow Us on Twitter

Scrolling Menubar
Volume Number:5
Issue Number:4
Column Tag:Programmer's Workshop

April Fool's INIT: Scrolling the Menu Bar!?

By Mike Scanlin, San Diego, CA

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

Probably everyone who reads this magazine knows at least one person who owns a Mac that they’d like to play a joke on. This INIT resource might be just the thing you’re looking for. It is a patch to _GetNextEvent that will scroll the menu bar off the right side of the screen (leaving the menu bar blank) when the mouse is clicked in the very top pixel of the menu bar with an odd horizontal position. It does nothing if the mouse is clicked anywhere else on the screen, so it is possible to use the menus when this patch is installed, just so long as you don’t click in the very top pixel at an odd position. The menus will come back eventually (after a few sarcastic messages are displayed in the empty menu bar), so this is a pretty harmless patch (although extremely annoying according to my guinea pig roommate). Command key equivalents for current menus (like COMMAND-Q) will work even though no menus are shown. It is possible to remove the patch once it is installed by typing COMMAND-SHIFT-OPTION-TAB. The patch will beep to let you know it has been removed.

HOW IT WORKS

This patch to _GetNextEvent is an application of the technique I used in the Shift Mod patch (September 1987 issue of MacTutor). It is a tail patch on _GetNextEvent that looks at the event being returned and intercepts it if it is a mouseDown event with a vertical position of zero and an odd horizontal position. When it finds such an event the menu bar is scrolled off the screen and then _DrawMenuBar and _HiliteMenu are patched to do nothing. The reason those two traps are patched is because we don’t want anything drawn in the menu bar while we’re displaying our messages. The menu bar is restored by restoring those two traps and then calling _DrawMenuBar. Note that because we are patching _DrawMenuBar the user will not be able to get the menus back by quitting the current application and/or launching another application (because every application uses _DrawMenuBar to put their menus up).

Once we have scrolled the menus off, the patch to _GetNextEvent will intercept any mouseDown event anywhere in the menu bar area and display a message in the menu bar for 1 second or until the mouse button is let go, which ever is longer. After four such messages, the patches to _DrawMenuBar and _HiliteMenuBar are removed and _DrawMenuBar is called to draw the current menu bar (which may not necessarily be the one that was scrolled off since the user could have changed applications in the mean time).

To do the actual scrolling you would expect me to use _ScrollRect. That’s what I tried at first, but it was too slow (took about 10 seconds for the menu bar to get all the way off the screen). Then I tried scrolling by 3 or 4 pixels at a time, but it wasn’t smooth enough. The version you see here is scrolling by rotating bits in screen memory (via the 68000’s roxr instruction). Although somewhat unorthodox (Apple wouldn’t approve) it now only takes about 2 seconds to smoothly scroll the menu bar all the way off the screen.

PROBLEM

There is a potential problem with this patch. There is a danger in patching and unpatching traps that may be patched by other applications. For applications that patch traps this isn’t normally a problem because they get a chance to restore the traps when they quit (before something else can patch them). But it is possible for our patches to be unpatched at a bad time. A “bad time” to unpatch would be after something else has patched on top of one of our patches. For instance, if we patch _GetNextEvent and then some other program patches it and then we unpatch ours, the second patch will be unpatched along with ours, but the application that made the second patch won’t know about it. To partially correct this from happening, I have the removePatch routine check if something has patched _GetNextEvent after we have patched it (by calling _GetTrapAddress and comparing it to ourself) and if it has, then ignore the request to unpatch ourself. I did not do this for _DrawMenuBar and _HiliteMenu, but it is unlikely that other applications would patch either of those two (besides, this is only a joke -- it’s not something you’re going to leave around in your System Folder forever).

One additional problem is that while this patch should work on any size monochrome monitor, it will not work on a Mac II color monitor. If anyone comes up with a simple fix, please send it in.

/* scrollMenuBarPatch.c     18 Nov 1987
 *
 * by Mike Scanlin and Andy Voelker
 *
 * This will install a patch to
 * _GetNextEvent that intercepts
 * mouseDown events if they occur in the
 * very top pixel-row of the screen. If
 * an event is intercepted, the menu bar
 * is scrolled off the right side of the
 * screen before the user can react.
 * After 4 more clicks in the menuBar
 * (with appropriately sarcastic messages 
 * displayed after each one) the origina
 * l menuBar is restored. The patch can
 * be removed by typing
 * COMMAND-OPTION-SHIFT-TAB.
 */

#include “EventMgr.h”
#include “QuickDraw.h”
#include “asm.h”

/* low memory globals */
extern Handle    MenuList : 0x0A1C;
extern PtrScrnBase : 0x0824;
extern GrafPtr WMgrPort   : 0x09DE;

/* the traps we patch */
#define GetNextEventTrap  0xA970
#define DrawMenuBarTrap   0xA937
#define HiliteMenuTrap    0xA938

#define CLICKS_TO_MENU    4
#define MESSAGE_DELAY60
#define MENU_BAR_HEIGHT   20
#define TAB_KEY  0x09
#define JMP_INSTRUCTION   0x4EF9

#define memFullErr -108
#define screenBits_bounds_right  -110
#define screenBits_bounds_left-114

void  main(void);

void main()
{
 asm {
 
/* This first section is the only part
 * that gets run initially. It gets some
 * space in the system heap and sets up a 
 * patch to _GetNextEvent. The patch
 * won’t do anything until the user
 * clicks in the very top pixel of the
 * menu bar (in which case it will scroll 
 * the menu bar off the screen to the
 * right). */
 
   move.l D3,-(SP)

/* get the old trap address */
 move   #GetNextEventTrap,D0
 _GetTrapAddress

/* set the address for the JMP
 * instruction that calls the original
 * trap */
 lea    @origTrap,A1
 move.l A0,(A1)

/* get some space in the system heap for
 * our patch */
 lea    @last,A0
 lea    @first,A1
 suba.l A1,A0
/* D0 = length of patch */
 move.l A0,D0  
/* save length for _BlockMove */
 move.l D0,D3    
 _NewPtrSYS
 cmpi   #memFullErr,D0
 beq.s  @noPatch
 lea    @saveLoc,A1
/* save for removePatch */
 move.l A0,(A1)
/* save for _BlockMove */ 
 move.l A0,-(SP) 

/* set the trap address to the space we
 * just got in the system heap. */
 move   #GetNextEventTrap,D0
 _SetTrapAddress

/* now move our patch into place */
 lea    @first,A0
/* (SP)+ is the result from _NewPtr */
 move.l (SP)+,A1 
 move.l D3,D0
 _BlockMove

@noPatch
 move.l (SP)+,D3

/* this is the end of the installation
 * part, but we can’t do an RTS here
 * because LSC needs to clean up. So we
 * fall through to the end. */
 bra    @last

/***************************************
 * Here’s the new _GetNextEvent. It calls 
 * the existing _GetNextEvent and then
 * checks if a mouseDown or keyDown event 
 * is being reported. If not, the event
 * is passed to the application
 * unmodified. If we end up using the
 * event ourselves, a null event is
 * returned to the application.
 ***************************************/

@first
/* pop the original return address and
 * save it */
 lea    @exitAddress,A0
 move.l (SP)+,(A0)
/* save ptr to event record so we can get 
 * at it later */
 lea    @eventRecPtr,A0
 move.l (SP),(A0)
/* set the return address to our patch */
 pea    @tailPatch

/* the nops get filled with the address
 * of the original _GetNextEvent */
 dcJMP_INSTRUCTION
@origTrap 
 nop
 nop

/* this is where it comes after the
 * normal _GetNextEvent processing */
@tailPatch
 movem.lA1/D0-D3,-(SP)
 
 lea    @eventRecPtr,A0
 move.l (A0),A0

/* check if it’s a keydown event that
 * says to remove ourself. This is the
 * only keyDown that we intercept. */
 move 
 OFFSET(EventRecord,what)(A0),D0
 cmpi   #keyDown,D0
 bne.s  @noKeyDown
/* the key to remove the patch is
 * COMMAND-SHIFT-OPTION-Tab */
 move.l 
 OFFSET(EventRecord,message)(A0),D0
 cmpi.b #TAB_KEY,D0
 bne.s  @noKeyDown
 move 
 OFFSET(EventRecord,modifiers)(A0),D0
 andi   
 #optionKey+cmdKey+shiftKey,D0
 eori   
 #optionKey+cmdKey+shiftKey,D0
 beq.s  @removePatch
 
@noKeyDown
/* if it’s not a mousedown event, then
 * ignore it */
 cmpi   #mouseDown,D0
 bne.s  @patchExit

/* if we’ve already scrolled the menu
 * list, then don’t scroll it again */
 lea    @menus,A1
 tst    (A1)
 bne.s  @alreadyGone
 
/* if no menus exist, then leave */
 move.l MenuList,A1
 move.l (A1),A1
 tst    (A1)
 beq.s  @patchExit

/* if the mouse is not at an odd
 * location, then leave */
 move.l 
 OFFSET(EventRecord,where)(A0),D0
 andi   #1,D0
 beq.s  @patchExit
/* if the mouse is not at the very top
 * pixel of the menu bar, then leave */
 move.l 
 OFFSET(EventRecord,where)(A0),D0
/* put vertical coordinate in low word */
 swap   D0
 cmpi   #1,D0
 bge.s  @patchExit
 
/* now we’re set to scroll that puppy. */
 bsr    @scrollMenuBar

/* save the fact that the menu bar that
 * was just scrolled */
 lea    @menus,A0
 move   #1,(A0)
 
/* patch _DrawMenuBar and _HiliteMenu to
 * do nothing if and when they’re
 * called */
 bsr    @disableTraps

 lea    @clicks,A1
 move   #CLICKS_TO_MENU,(A1)
 
 bra.s  @returnNullEvent

@alreadyGone
/* if mouse is not in menu bar, then
 * leave */
 move.l 
 OFFSET(EventRecord,where)(A0),D0
/* put vertical coordinate in low word */
 swap   D0
 cmpi   #MENU_BAR_HEIGHT,D0
 bge.s  @patchExit

/* print a message in the menu bar */
 bsr    @drawAMessage

 lea    @clicks,A0
 subi   #1,(A0)
 bne.s  @returnNullEvent

/* now that we’re finished playing,
 * restore _DrawMenuBar and 
 * _HiliteMenu */
 bsr    @restoreMenus
 
@returnNullEvent
/* set the event to null */
 lea    @eventRecPtr,A0
 move.l (A0),A0
 clr    
 OFFSET(EventRecord,what)(A0)
/* change _GetNextEvent’s return value to 
 * false. The 20 is for the 5 regs that
 * are saved on the stack at this point
 */
 clr    20(SP)

@patchExit
 movem.l(SP)+,A1/D0-D3
/* JMP to the place that called
 * _GetNextEvent */
 dcJMP_INSTRUCTION
@exitAddress
 nop
 nop

/* this is where it comes to remove the
 * _GetNextEvent patch */
@removePatch
/* if the menus aren’t shown, then
 * restore them before leaving */
 bsr    @restoreMenus
/* check if we are the most recent patch
 * to _GetNextEvent. If we’re not, then
 * don’t unpatch. */
   move #GetNextEventTrap,D0
 _GetTrapAddress
 lea    @first,A1
 cmpa.l A1,A0
 bne.s  @returnNullEvent
/* set the trap address back to the
 * original trap. */
 lea    @origTrap,A0
 move.l (A0),A0
 move   #GetNextEventTrap,D0
 _SetTrapAddress
/* beep to let them know it has been 
 * removed */
 move   #1,-(SP)
 _SysBeep
/* free up mem occupied by this patch */
 lea    @saveLoc,A0
 move.l A0),A0
 _DisposPtr
 bra.s  @returnNullEvent

/* This routine will disable _DrawMenuBar 
 * and _HiliteMenu */
@disableTraps
 move   #DrawMenuBarTrap,D0
 _GetTrapAddress
 lea    @drawMenuBarAddr,A1
 move.l A0,(A1)
 lea    @doNothing,A0
 move   #DrawMenuBarTrap,D0
 _SetTrapAddress
 move   #HiliteMenuTrap,D0
 _GetTrapAddress
 lea    @hiliteMenuAddr,A1
 move.l A0,(A1)
 lea    @doNothingWithParam,A0
 move   #HiliteMenuTrap,D0
 _SetTrapAddress
 rts
 
/* This routine will restore _DrawMenuBar 
 * and _HiliteMenu and then draw the 
 * current menu bar */
@restoreMenus
 lea    @menus,A0
 tst    (A0)
 beq.s  @doNothing
/* unpatch DrawMenuBar and then draw the
 * old menu bar */
 lea    @drawMenuBarAddr,A0
 move.l (A0),A0
 move   #DrawMenuBarTrap,D0
 _SetTrapAddress
 lea    @hiliteMenuAddr,A0
 move.l (A0),A0
 move   #HiliteMenuTrap,D0
 _SetTrapAddress
 lea    @menus,A0
 clr    (A0)
 _DrawMenuBar
@doNothing
 rts

/* This is the _HiliteMenu routine that
 * does nothing. It gets rid of the
 * parameter passed to _HiliteMenu and
 * then returns. */
@doNothingWithParam
 move.l (SP)+,A0
 addq.l #2,SP
 jmp    (A0)

/* This is the routine that actually does 
 * the scrolling */
@scrollMenuBar
/* hide the cursor so we don’t get part
 * of the cursor scrolled with the
 * menuBar */
 _HideCursor

/* get the current screen width from the
 * Quickdraw global screenBits */
 move.l (A5),A0
/* D3 = # of columns (width) - 1 in the
 * current screen */
 move 
 screenBits_bounds_right(A0),D3
 sub    
 screenBits_bounds_left(A0),D3
 move   D3,D2
 subq   #1,D3
/* D2 = # of bytes - 1 in one screen
 * row */ 
 asr    #3,D2
 subq   #1,D2

/* here’s the loop that actually scrolls
 * the menu bar all the way across the
 * screen */
@wayOut
 move   #MENU_BAR_HEIGHT - 2,D1

/* this outside loop will scroll all rows 
 * of the menu bar one pixel to the right 
 */
@outside
 move   D2,D0
 addq   #1,D0
/* calc # of bytes from base addr to
 * start of current row */
 mulu   D1,D0    
 move.l ScrnBase,A0
 adda.l D0,A0
/* white-out the left edge of this row */
 clr.b  (A0)
/* D0 = number of words in one row */
 move   D2,D0    
 asr    #1,D0
/* set the X flag */
 andi.b #0xEF,CCR
/* this inner loop will scroll one row of 
 * the screen one pixel to the right */
@inside
 roxr   (A0)+
 dbra   D0,@inside

/* go and do the next row */
 dbra   D1,@outside

/* make the corners look like they used
 * to (i.e. rounded and black) */
 move   D2,D0
 move.l ScrnBase,A1
 ori.b  #0xF8,(A1)
 adda   D0,A1
 ori.b  #0x1F,(A1)+
 ori.b  #0xE0,(A1)
 adda   D0,A1
 ori.b  #0x07,(A1)+
 ori.b  #0xC0,(A1)
 adda   D0,A1
 ori.b  #0x03,(A1)+
 ori.b  #0x80,(A1)
 adda   D0,A1
 ori.b  #0x01,(A1)+
 ori.b  #0x80,(A1)
 adda   D0,A1
 ori.b  #0x01,(A1)
 
 dbra   D3,@wayOut

 _ShowCursor
 rts

/* this routine will print a string in
 * the menu bar, wait a bit and then
 * erase it */
@drawAMessage
/* set the current port to the window
 * manager’s */
 move.l (A5),A0
 lea    @savePort,A1
 move.l (A0),(A1)
 move.l WMgrPort,(A0)

/* save the old clipRgn */
 lea    @saveClip,A0
 move.l WMgrPort,A1
 move.l 
 OFFSET(GrafPort,clipRgn)(A1),(A0)
/* set the clipRgn to be big enough for
 * the string we want to print */
 subq   #4,SP
 _NewRgn
 move.l WMgrPort,A1
 move.l 
 (SP)+,OFFSET(GrafPort,clipRgn)(A1)
 pea    @stringRect
 _ClipRect

/* the string we print depends on the
 * value of the clicks variable */
 lea    @clicks,A0
 move   (A0),D0
 cmpi   #4,D0
 bne.s  @1
 pea    @string1
 bra.s  @5
@1 cmpi #3,D0
 bne.s  @2
 pea    @string2
 bra.s  @5
@2 cmpi #2,D0
 bne.s  @3
 pea    @string3
 bra.s  @5
@3 cmpi #1,D0
 bne.s  @delay
 pea    @string4
@5 move #10,-(SP)
 move   #14,-(SP)
 _MoveTo
 _DrawString
@delay  
 lea    @downTime,A0
 move.l Ticks,(A0)

/* wait until the mouse is released or 60 
 * ticks, which ever is longer */
@waitTilMouseUp
 subq.l #2,SP
 _StillDown
 tst    (SP)+
 bne.s  @waitTilMouseUp
 lea    @downTime,A0
 move.l (A0),D0
 addi.l #MESSAGE_DELAY,D0
 cmp.l  Ticks,D0
 bgt.s  @waitTilMouseUp

/* erase the string */
 pea    @stringRect
 _EraseRect

/* dispose of the clipRgn we created */
 move.l WMgrPort,A1
 move.l 
 OFFSET(GrafPort,clipRgn)(A1),-(SP)
 _DisposeRgn
/* restore the old clip rgn */
 lea    @saveClip,A0
 move.l WMgrPort,A1
 move.l 
 (A0),OFFSET(GrafPort,clipRgn)(A1)
 
/* restore the old port */
 move.l (A5),A0
 lea    @savePort,A1
 move.l (A1),(A0)
 rts
 
@eventRecPtrdc.l 0
/* @menus is TRUE while menus that exist
 * are not being shown */
@menus  dc0 
@downTime dc.l   0
/* @clicks is the number of menus clicks
 * until menus return */
@clicks dc0 
/* @words is the number of 16 bit words
 * in one row of screen */
@words  dc0
/* @saveLoc is the address of our patch
 * in the system heap */  
@saveLocdc.l0  
@savePort dc.l   0
@saveClip dc.l   0
@drawMenuBarAddr dc.l0
@hiliteMenuAddr  dc.l0

/* this rect should be big enough to
 * enclose the longest of the strings. */
@stringRect dc
 0,8,MENU_BAR_HEIGHT-1,300

/* define the pascal strings. Does LSC
 * provide a better way than this? */
@string1dc.b13,’N’,’o’,
 ‘ ‘,’M’,’e’,’n’,’u’,’s’,’ ‘,’H’,’e’,
 ‘r’,’e’
@string2dc.b14,’S’,’t’,’i’,
 ‘l’,’l’,’ ‘,’N’,’o’,’ ‘,’M’,’e’,’n’,
 ‘u’,’s’
@string3dc.b7,’N’,’o’,’t’,
 ‘ ‘,’Y’,’e’,’t’
@string4dc.b25,’W’,’h’,’e’,
 ‘r’,’e’,’ ‘,’D’,’i’,’d’,’ ‘,’T’,’h’,
 ‘o’,’s’,’e’, ‘,’M’,’e’,’n’,’u’,’s’,
 ‘ ‘,’G’,’o’,’?’
@last
 }
}

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Challenge those pesky wyverns to a dance...
After recently having you do battle against your foes by wildly flailing Hello Kitty and friends at them, GungHo Online has whipped out another surprising collaboration for Puzzle & Dragons. It is now time to beat your opponents by cha-cha... | Read more »
Pack a magnifying glass and practice you...
Somehow it has already been a year since Torchlight: Infinite launched, and XD Games is celebrating by blending in what sounds like a truly fantastic new update. Fans of Cthulhu rejoice, as Whispering Mist brings some horror elements, and tests... | Read more »
Summon your guild and prepare for war in...
Netmarble is making some pretty big moves with their latest update for Seven Knights Idle Adventure, with a bunch of interesting additions. Two new heroes enter the battle, there are events and bosses abound, and perhaps most interesting, a huge... | Read more »
Make the passage of time your plaything...
While some of us are still waiting for a chance to get our hands on Ash Prime - yes, don’t remind me I could currently buy him this month I’m barely hanging on - Digital Extremes has announced its next anticipated Prime Form for Warframe. Starting... | Read more »
If you can find it and fit through the d...
The holy trinity of amazing company names have come together, to release their equally amazing and adorable mobile game, Hamster Inn. Published by HyperBeard Games, and co-developed by Mum Not Proud and Little Sasquatch Studios, it's time to... | Read more »
Amikin Survival opens for pre-orders on...
Join me on the wonderful trip down the inspiration rabbit hole; much as Palworld seemingly “borrowed” many aspects from the hit Pokemon franchise, it is time for the heavily armed animal survival to also spawn some illegitimate children as Helio... | Read more »
PUBG Mobile teams up with global phenome...
Since launching in 2019, SpyxFamily has exploded to damn near catastrophic popularity, so it was only a matter of time before a mobile game snapped up a collaboration. Enter PUBG Mobile. Until May 12th, players will be able to collect a host of... | Read more »
Embark into the frozen tundra of certain...
Chucklefish, developers of hit action-adventure sandbox game Starbound and owner of one of the cutest logos in gaming, has released their roguelike deck-builder Wildfrost. Created alongside developers Gaziter and Deadpan Games, Wildfrost will... | Read more »
MoreFun Studios has announced Season 4,...
Tension has escalated in the ever-volatile world of Arena Breakout, as your old pal Randall Fisher and bosses Fred and Perrero continue to lob insults and explosives at each other, bringing us to a new phase of warfare. Season 4, Into The Fog of... | Read more »
Top Mobile Game Discounts
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links below... | Read more »

Price Scanner via MacPrices.net

Free iPhone 15 plus Unlimited service for $60...
Boost Infinite, part of MVNO Boost Mobile using AT&T and T-Mobile’s networks, is offering a free 128GB iPhone 15 for $60 per month including their Unlimited service plan (30GB of premium data).... Read more
$300 off any new iPhone with service at Red P...
Red Pocket Mobile has new Apple iPhones on sale for $300 off MSRP when you switch and open up a new line of service. Red Pocket Mobile is a nationwide MVNO using all the major wireless carrier... Read more
Clearance 13-inch M1 MacBook Airs available a...
Apple has clearance 13″ M1 MacBook Airs, Certified Refurbished, available for $759 for 8-Core CPU/7-Core GPU/256GB models and $929 for 8-Core CPU/8-Core GPU/512GB models. Apple’s one-year warranty is... Read more
Updated Apple MacBook Price Trackers
Our Apple award-winning MacBook Price Trackers are continually updated with the latest information on prices, bundles, and availability for 16″ and 14″ MacBook Pros along with 13″ and 15″ MacBook... Read more
Every model of Apple’s 13-inch M3 MacBook Air...
Best Buy has Apple 13″ MacBook Airs with M3 CPUs in stock and on sale today for $100 off MSRP. Prices start at $999. Their prices are the lowest currently available for new 13″ M3 MacBook Airs among... Read more
Sunday Sale: Apple iPad Magic Keyboards for 1...
Walmart has Apple Magic Keyboards for 12.9″ iPad Pros, in Black, on sale for $150 off MSRP on their online store. Sale price for online orders only, in-store price may vary. Order online and choose... Read more
Apple Watch Ultra 2 now available at Apple fo...
Apple has, for the first time, begun offering Certified Refurbished Apple Watch Ultra 2 models in their online store for $679, or $120 off MSRP. Each Watch includes Apple’s standard one-year warranty... Read more
AT&T has the iPhone 14 on sale for only $...
AT&T has the 128GB Apple iPhone 14 available for only $5.99 per month for new and existing customers when you activate unlimited service and use AT&T’s 36 month installment plan. The fine... Read more
Amazon is offering a $100 discount on every M...
Amazon is offering a $100 instant discount on each configuration of Apple’s new 13″ M3 MacBook Air, in Midnight, this weekend. These are the lowest prices currently available for new 13″ M3 MacBook... Read more
You can save $300-$480 on a 14-inch M3 Pro/Ma...
Apple has 14″ M3 Pro and M3 Max MacBook Pros in stock today and available, Certified Refurbished, starting at $1699 and ranging up to $480 off MSRP. Each model features a new outer case, shipping is... Read more

Jobs Board

Omnichannel Associate - *Apple* Blossom Mal...
Omnichannel Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
IT Systems Engineer ( *Apple* Platforms) - S...
IT Systems Engineer ( Apple Platforms) at SpaceX Hawthorne, CA SpaceX was founded under the belief that a future where humanity is out exploring the stars is Read more
*Apple* Systems Administrator - JAMF - Activ...
…**Public Trust/Other Required:** None **Job Family:** Systems Administration **Skills:** Apple Platforms,Computer Servers,Jamf Pro **Experience:** 3 + years of Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.