Crash on quit when switching resolutions.

In case there are others out there needing to switch resolutions and have a full screen app running on the desktop with OS X 10.8 and Director 12.
I thought I would share this experience and offer a way of fixing it.
If you use BuddyAPI to change the screen resolution of your project and set the "Full Screen" option in the build settings for your projector. The projector will crash when you use the halt command.
This only happens on OS X 10.8 and you projector is built with Director 12. Director 11 will not have this problem. But as we all know custom fonts will not display properly on OS X 10.7 and 10.8 when the projector is built with Director 10, 11 or 11.5.
By the way it is also important not to use the older baSetDisplay as there will be color palette problems if you have used any art that have reduced palettes.
Rather use baSetMultiDisplay, it works like a charm.
     if (the platform contains "Windows") then
             isOK = baSetMultiDisplay( "primary", 800 , 600 , 32 , 60 , "temp" , 2 )
      else
             isOK = baSetMultiDisplay( "primary", 800 , 600 , 32 , 75 , "temp" , 2 )
      end if
The fix for the crash is also with the help of BuddyAPI.
If you not set the projector options to "Full Screen" when you reset the monitor's resolution the menu bar will remain, so use BuddyAPI's baHideTaskBar(2) to get rid of it. Now it no longer crashes on Quit.
Hope this can save someone some grief.
Cheers!
Update:
I forgot to mention that now you will the menu bar will appear at the top of the window. To make it dissapear add the following code to your StartMovie script or at the end of your BuddyAPI resolution switch call:
baHideTaskBar(2)
P.S. The reason for the crash however is squarely in Adobe's court as you can see by the crash log below.
Crashed Thread:  0  Dispatch queue: com.apple.main-thread
Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000009eb435c
VM Regions Near 0x9eb435c:
    MALLOC_LARGE (freed)   00000000092bb000-00000000093fb000 [ 1280K] rw-/rwx SM=PRV 
-->
    VM_ALLOCATE            000000000b9f9000-000000000b9fd000 [   16K] rw-/rwx SM=PRV 
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libobjc.A.dylib                         0x9764b258 fixupSelectorsInMethodList + 27
1   libobjc.A.dylib                         0x976419f4 _class_getMethodNoSuper_nolock + 107
2   libobjc.A.dylib                         0x976413d1 lookUpMethod + 235
3   libobjc.A.dylib                         0x976412e1 _class_lookupMethodAndLoadCache3 + 47
4   libobjc.A.dylib                         0x97640ac1 objc_msgSend + 81
5   com.apple.HIToolbox                     0x93d949bb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
6   com.apple.HIToolbox                     0x93c1c394 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
7   com.apple.HIToolbox                     0x93c1b780 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
8   com.apple.HIToolbox                     0x93c1b5ca SendEventToEventTargetWithOptions + 94
9   com.apple.HIToolbox                     0x93dd6204 SendMenuPopulate(MenuData*, OpaqueEventTargetRef*, unsigned long, double, unsigned long, OpaqueEventRef*, unsigned char*) + 370
10  com.apple.HIToolbox                     0x93def1fd PopulateMenu(MenuData*, unsigned long) + 92
11  com.apple.HIToolbox                     0x93dedd93 FindItemByCommand(MenuData*, unsigned long, unsigned char, unsigned long*, MenuData**, unsigned short*) + 47
12  com.apple.HIToolbox                     0x93dedf85 FindItemByCommand(MenuData*, unsigned long, unsigned char, unsigned long*, MenuData**, unsigned short*) + 545
13  com.apple.HIToolbox                     0x93dedf85 FindItemByCommand(MenuData*, unsigned long, unsigned char, unsigned long*, MenuData**, unsigned short*) + 545
14  com.apple.HIToolbox                     0x93dedc1f _GetIndMenuItemWithCommandIDWithOptions(MenuData*, unsigned long, unsigned long, unsigned char, MenuData**, unsigned short*) + 110
15  com.apple.HIToolbox                     0x93c6b761 GetIndMenuItemWithCommandID + 99
16  com.apple.HIToolbox                     0x93ecc757 InvalidateLiveMenu() + 82
17  com.apple.HIToolbox                     0x93ecc8de RemoveWindowFromWindowMenu(WindowData*) + 58
18  com.apple.HIToolbox                     0x93c33634 _ShowHideWindows + 816
19  com.apple.HIToolbox                     0x93c332ff ShowHide + 44
20  com.apple.HIToolbox                     0x93c0d1ac WindowData::Destruct() + 160
21  com.apple.HIToolbox                     0x93c21ad8 HIObject::__Deallocate(void const*) + 34
22  com.apple.CoreFoundation                0x96e545d9 CFRelease + 873
23  com.apple.HIToolbox                     0x93c21934 HIObject::Release() + 20
24  com.apple.HIToolbox                     0x93eb85e6 DisposeWindow + 29
25  com.adobe.director_12_0.IMLLib.framework          0x0063a1a4 imWindowDispose + 247
26  com.adobe.director_12_0.IMLLib.framework          0x0063a257 0x600000 + 238167
27  com.adobe.director_12_0.IMLLib.framework          0x0061eb8d imShutDown + 100
28  com.adobe.director_12_0.ProjLib.framework          0x000aadfd 0xa7000 + 15869
29  com.adobe.director_12_0.ProjLib.framework          0x000a9bae ProjectorMain + 1165
30  D&D2_stub_SP_v1_2                       0x00002d5f 0x1000 + 7519
31  D&D2_stub_SP_v1_2                       0x00001d29 0x1000 + 3369
32  D&D2_stub_SP_v1_2                       0x00001c58 0x1000 + 3160

Thank you everyone for your comments and help. We had to push the release back two weeks for many reasons, some of them this issue.
But I thought my solution would be good to know for people. For the record I was attempting to edit at 4k with imported RED files converted to optimized media. What I didn't realize is that some of those clips were actually shot at 5 or 6k. I think that was one problem in and of itself, so I converted my projects to 1080p. Still got memory errors though.
So I think what solved the issue was when I flushed the cache by moving it outside the library. I think FCP had crashed while doing background renders from choking on some of the odd clips. I believe that corrupted some of the cache system, and wasn't fixed even when regenerating the cache files.
So I went to project settings and set the project cache to be outside of my project file in a folder I created. When doing so you are prompted to decide whether or not to move your current cache. I didn't, and this forced it to re-reender all those clips (but not the original optimized or proxy media). This seemed to clear up every problem I was having with Final Cut Running Out of Memory problems. I bet it was the cache, but could have been related to the mixed resolutions.
So I thought this might helpful to others searching this forum, and thanks again for everyone's help!

Similar Messages

  • On my iPad Air Safari crashes and quits when I view a slideshow.

    On my iPad Air , Safari crashes and quits when I view a slideshow on an internet site. Sometimes it doesn't crash but the slideshow is freezes. Any idea why?

    Try clearing Safari's cache : Settings > Safari > Clear Cookies And Data (Clear Cache on iOS 4) and also Clear History
    If that doesn't work then try closing Safari completely and then re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Pixel distortion when switching resolutions

    I just hooked up a new LCD monitor via DVI. When swithcing resolutions as I do fairly reguarly when I play games I sometimes get distortion in some pixels. If I power cycle the monitor it corrects the problem. I'm wondering if this is something I should be concerned about - did I get a lemon monitor?

    >Any suggestions would be very much valued.
    Upgrade to CS4 so you can run ACR 5.2.

  • Ical quits when switching to delegate google calendars

    I am using Mac Book Pro with yosemite. Recently the Calendar app started to quit unexpectedly. i have a google calendar and 12 delegate calendars. And it happens when i switch to other calendars. Any known issue and solutions?

    The next time the problem happens, note the date and time the problem occurred, then go to Applications/Utilities/Console and copy the log starting at the time of the crash. Paste the log in a reply. Please do not use a screen shot as they can be hard to read. If there are repeated runs of the same messages, please post only one run. Be selective about what you post and don’t  post huge amounts. Make sure there is no personal data visible. Information learned from Linc Davis.

  • Crashing / Unexpectedly quitting when attaching files etc.

    Hi
    I have this query posted in a couple of different places but some developments in my own investigation have led me to post it again.
    Initially, I noticed I could no longer attach files in yahoo mail. Until tuesday this week, I have always been able to. Then I realised I couldn't attach them to skype of send them through yahoo messenger. When trying to attch files, the 'browse' page comes up, I select the file, the computer thinks for a moment then kicks me out of the software - 'safari unexpectedly quit'
    Then I noticed spotlight has stopped working.
    Through advice from posting bits of this in various places, I have run repair disc, disc permission, printed off log on console, tried to start spotlight again by using a command in terminal.
    Nothing has made the slightest bit of difference.
    However, I've just been fiddling with folders in finder - if i go to view and then 'arrange icons as columns' (incidentally, how the browse thing organises them when attching files) and then if I try to open a file, the computer can't cope - console tells me 'Finder crashed'
    mds apparently crashes every few minutes and that is also what it says when safari quits.
    I updated software last week - I keep up to date so it was only itunes and 2 'powerPC (???)' things but ever since then, it hasn't worked.
    The only other thing I've done recently is to have contacted Netgear to reset my router and setup new WEP key for my wireless connection as I had lost the password but I can't see that that would have made any difference.
    Please help someone - I'm getting desperate as I rely on being able to attch files as part of my job.
    I frequently get this error code:
    Can't checkin with server named com.apple.metadata.mdserver, error 0xfffffecc
    Someone must know what to do????
    For further info on what I've done so far, please see
    http://discussions.apple.com/thread.jspa?threadID=604976
    Thanks

    Hello again, Jim: )
    I updated software last week - I keep up to date so it was only itunes and 2 'powerPC (???)' things but ever since then, it hasn't worked.
    Next time to find out exactly what you installed System preferences->Sotware Update Installed Software ->Show as Log button on the bottom.
    To find out why Safari is crashing posting the latest & entire safari crash log is a great troubleshooting tool which we never did get to because the
    metadata was crashing as well & now so was the finder I read. So something was askew with the os software, missing files not proper installation of the os. Third party software incompatibly.
    A myriad of things could of gone wrong hard to know, I understand you wanting to know, it would be a good way to avoid this from happening again.
    Can't checkin with server named com.apple.metadata.mdserver, error 0xfffffecc. Someone must know what to do????
    http://www.macfixitforums.com/showflat.php?Board=tiger&Number=761792
    As I linked you to before, this is the only hit I get when searching this issue, so it is not a common problem it seems. Which is why I recommended another forum sorry if the road was not smooth, still you did get some help
    & direction from us all, which is what we aim for.
    I hope the A & I has sorted it all out, you can do your work. If you have any other issues, let us know. Best of luck.
    Eme;~[)

  • IMovie crashes and quits when trying to export to MiniDV Camera

    Hello all,
    I am having a problem with iMove HD 6 running on my PPC Mini. When I try to export to my Sony MiniDV camera it reports that it looses it's connection, and then iMoive crashes. This worked prior to my OS upgrade to OS X 10.4.8 and my upgrade to iLife 06. Additionally, I have a brand new Intel Mac Mini and this process works flawlessly using the same camera on that machine. All of my software updates are up to date and installed
    I have deleted the Quicktime preferences in /Library and ~/Library (in re: to a KB article referencing codecs/FCP issues), to no avail. I have reinstalled iMovie HD 6 and it has not fixed the problem. I have exhausted all of my options and I'm wondering if anyone else is expierencing the same problems, or has a solution for me.
    Here is the error log from the console:
    Host Name: abc-123-01
    Date/Time: 2007-02-23 14:02:50.382 -0500
    OS Version: 10.4.8 (Build 8L127)
    Report Version: 4
    Command: iMovie HD
    Path: /Applications/iMovie HD.app/Contents/MacOS/iMovie HD
    Parent: WindowServer [89]
    Version: 6.0.3 (6.0.3)
    Build Version: 14
    Project Name: iMovieApp
    Source Version: 2670200
    PID: 289
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000004
    Thread 0 Crashed:
    0 com.apple.iMovie 0x00074bdc 0x1000 + 474076
    1 com.apple.iMovie 0x0010519c 0x1000 + 1065372
    2 com.apple.Foundation 0x9295ead8 nsnotecallback + 180
    3 com.apple.CoreFoundation 0x90804010 __CFXNotificationPost + 368
    4 com.apple.CoreFoundation 0x907fc0ec _CFXNotificationPostNotification + 684
    5 com.apple.Foundation 0x92948ee0 -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    6 com.apple.iMovie 0x001d1b04 0x1000 + 1903364
    7 com.apple.AppKit 0x9374b168 -[NSWindow _changeKeyAndMainLimitedOK:] + 668
    8 com.apple.AppKit 0x9374a288 -[NSWindow makeKeyAndOrderFront:] + 120
    9 com.apple.iMovie 0x000831cc 0x1000 + 532940
    10 com.apple.AppKit 0x93789c4c -[NSApplication sendAction:to:from:] + 108
    11 com.apple.AppKit 0x937e44b8 -[NSMenu performActionForItemAtIndex:] + 392
    12 com.apple.AppKit 0x937e423c -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 104
    13 com.apple.AppKit 0x936eb500 _NSHandleCarbonMenuEvent + 372
    14 com.apple.AppKit 0x936e8e64 _DPSNextEvent + 1280
    15 com.apple.AppKit 0x936e87a8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    16 com.apple.AppKit 0x936e4cec -[NSApplication run] + 472
    17 com.apple.AppKit 0x937d587c NSApplicationMain + 452
    18 com.apple.iMovie 0x00048af8 0x1000 + 293624
    19 com.apple.iMovie 0x0000b184 0x1000 + 41348
    20 com.apple.iMovie 0x0000b02c 0x1000 + 41004
    Thread 1:
    0 libSystem.B.dylib 0x9000ab48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000aa9c mach_msg + 60
    2 com.apple.CoreFoundation 0x907dcb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dc47c CFRunLoopRunSpecific + 268
    4 com.apple.CoreFoundation 0x907eb8dc CFRunLoopRun + 52
    5 com.apple.AVCVideoServices 0x68490588 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 168
    6 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9002bbc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x900306ac pthreadcondwait + 480
    2 com.apple.Foundation 0x92966300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.AppKit 0x93785708 -[NSUIHeartBeat _heartBeatThread:] + 324
    4 com.apple.Foundation 0x9295f194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000ab48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000aa9c mach_msg + 60
    2 com.apple.CoreFoundation 0x907dcb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dc47c CFRunLoopRunSpecific + 268
    4 com.apple.CoreFoundation 0x907eb8dc CFRunLoopRun + 52
    5 com.apple.iMovie 0x00136174 0x1000 + 1266036
    6 com.apple.Foundation 0x9295f194 forkThreadForFunction + 108
    7 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9000ab48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000aa9c mach_msg + 60
    2 com.apple.CoreFoundation 0x907dcb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dc47c CFRunLoopRunSpecific + 268
    4 com.apple.audio.CoreAudio 0x9145663c HALRunLoop::OwnThread(void*) + 264
    5 com.apple.audio.CoreAudio 0x914563dc CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x90054ae8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071168 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf7514 TSWaitOnSemaphoreCommon + 176
    3 ...ickTimeComponents.component 0x98bd47c4 ReadSchedulerThreadEntryPoint + 5300
    4 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x90054ae8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071168 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf7514 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90c01fbc AIOFileThread(void*) + 520
    4 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x90040978 machwaituntil + 8
    1 libSystem.B.dylib 0x90040744 nanosleep + 388
    2 libSystem.B.dylib 0x90043f18 usleep + 88
    3 com.apple.iMovie 0x0003e414 0x1000 + 250900
    4 com.apple.Foundation 0x9295f194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x9000ab48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000aa9c mach_msg + 60
    2 com.apple.CoreFoundation 0x907dcb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dc47c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x9296e164 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x9296e09c -[NSRunLoop run] + 76
    6 com.apple.iMovie 0x0003a714 0x1000 + 235284
    7 com.apple.Foundation 0x9295f194 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000000074bdc srr1: 0x000000000000f030 vrsave: 0x0000000000000000
    cr: 0x24044422 xer: 0x0000000020000007 lr: 0x000000000010519c ctr: 0x000000000010515c
    r0: 0x000000000010519c r1: 0x00000000bfffe2c0 r2: 0x00000000a0001fac r3: 0x0000000000000000
    r4: 0x00000000002416f4 r5: 0x000000000031a284 r6: 0x0000000093c7fcd4 r7: 0x0000000000000052
    r8: 0x0000000000000042 r9: 0x0000000000000018 r10: 0x00000000a36e62c4 r11: 0x0000000000000001
    r12: 0x000000000010515c r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000005744950 r19: 0x00000000054e0f70
    r20: 0x00000000a36e62c4 r21: 0x00000000a07b3eb0 r22: 0x0000000000000006 r23: 0x0000000000000000
    r24: 0x0000000000606600 r25: 0x0000000000000000 r26: 0x0000000000000000 r27: 0x000000000031a284
    r28: 0x000000000564c060 r29: 0x00000000bfffe3c0 r30: 0x000000000031a284 r31: 0x0000000000000000
    Binary Images Description:
    0x1000 - 0x2dbfff com.apple.iMovie 6.0.3 /Applications/iMovie HD.app/Contents/MacOS/iMovie HD
    0x5d8000 - 0x5dafff com.apple.iMovie.WarpTransition 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/WarpTransition.bundle/Contents/MacOS/WarpTransition
    0x4005000 - 0x4007fff com.apple.iMovie.3DSpin 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/3DSpin.bundle/Contents/MacOS/3DSpin
    0x400b000 - 0x400efff com.apple.iMovie.AgedFilm 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/AgedFilm.bundle/Contents/MacOS/AgedFilm
    0x4011000 - 0x4013fff com.apple.iMovie.CircleTransition 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/CircleTransition.bundle/Contents/MacOS/CircleTransition
    0x4061000 - 0x409afff com.apple.audio.SoundManager.Components 3.9.1 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x40a0000 - 0x40b9fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x40bf000 - 0x40dafff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x4120000 - 0x4129fff com.apple.iMovie.ClipToChars 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/ClipToChars.bundle/Contents/MacOS/ClipToChars
    0x4131000 - 0x4133fff com.apple.iMovie.CoreImageEffects 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/CoreImageEffects.bundle/Contents/MacOS/CoreImageEffects
    0x4137000 - 0x4139fff com.apple.iMovie.CoreImageTransitions 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/CoreImageTransitions.bundle/Contents/MacOS/CoreImageTra nsitions
    0x413d000 - 0x413ffff com.apple.iMovie.Earthquake 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/Earthquake.bundle/Contents/MacOS/Earthquake
    0x4142000 - 0x4149fff com.apple.iMovie.ElectricalArcs 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/ElectricalArcs.bundle/Contents/MacOS/ElectricalArcs
    0x414d000 - 0x4151fff com.apple.iMovie.FairyDust 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/FairyDust.bundle/Contents/MacOS/FairyDust
    0x4154000 - 0x4156fff com.apple.iMovie.FarFarAway 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/FarFarAway.bundle/Contents/MacOS/FarFarAway
    0x4162000 - 0x4167fff com.apple.iMovie.Filters 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/Filters.bundle/Contents/MacOS/Filters
    0x42eb000 - 0x43fafff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x4429000 - 0x4680fff com.apple.ATIRadeon8500GLDriver 1.4.18 (4.1.8) /System/Library/Extensions/ATIRadeon8500GLDriver.bundle/Contents/MacOS/ATIRadeo n8500GLDriver
    0x468b000 - 0x468cfff com.apple.iMovie.Flash 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/Flash.bundle/Contents/MacOS/Flash
    0x468f000 - 0x4693fff com.apple.iMovie.FogFactory 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/FogFactory.bundle/Contents/MacOS/FogFactory
    0x469c000 - 0x469dfff com.apple.iMovie.GhostTrails 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/GhostTrails.bundle/Contents/MacOS/GhostTrails
    0x46a0000 - 0x46a4fff com.apple.iMovie.Glower 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/Glower.bundle/Contents/MacOS/Glower
    0x46a7000 - 0x46a8fff com.apple.iMovie.TitleBounceAcross 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/KTitles-BounceAcross.bundle/Contents/MacOS/KTitles-Boun ceAcross
    0x46ab000 - 0x46acfff com.apple.iMovie.TitleConverge 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/KTitles-Converge.bundle/Contents/MacOS/KTitles-Converge
    0x46af000 - 0x46b0fff com.apple.iMovie.TitleMaterialize 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/KTitles-Materialize.bundle/Contents/MacOS/KTitles-Mater ialize
    0x46b3000 - 0x46b4fff com.apple.iMovie.TitleTwirl 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/KTitles-Twirl.bundle/Contents/MacOS/KTitles-Twirl
    0x46b7000 - 0x46b8fff com.apple.iMovie.TitleUnscramble 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/KTitles-Unscramble.bundle/Contents/MacOS/KTitles-Unscra mble
    0x46bb000 - 0x46cafff com.apple.iMovie.LensFlare 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/LensFlare.bundle/Contents/MacOS/LensFlare
    0x46f4000 - 0x46f6fff com.apple.iMovie.Letterbox 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/Letterbox.bundle/Contents/MacOS/Letterbox
    0x46f9000 - 0x46fafff com.apple.iMovie.Mirror 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/Mirror.bundle/Contents/MacOS/Mirror
    0x46fd000 - 0x46fefff com.apple.iMovie.NSquare 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/NSquare.bundle/Contents/MacOS/NSquare
    0x4701000 - 0x4703fff com.apple.iMovie.RadialTransition 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/RadialTransition.bundle/Contents/MacOS/RadialTransition
    0x4706000 - 0x470bfff com.apple.iMovie.Rainfall 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/Rainfall.bundle/Contents/MacOS/Rainfall
    0x470f000 - 0x4710fff com.apple.iMovie.Subtitles 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/Subtitles.bundle/Contents/MacOS/Subtitles
    0x4713000 - 0x4721fff com.apple.iMovie.Titles 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/Titles.bundle/Contents/MacOS/Titles
    0x4746000 - 0x4749fff com.apple.iMovie.Transitions 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/Transitions.bundle/Contents/MacOS/Transitions
    0x474d000 - 0x474efff com.apple.iMovie.WashTransition 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/WashTransition.bundle/Contents/MacOS/WashTransition
    0x4751000 - 0x4752fff com.apple.iMovie.ZoomTitles 6.0 (81) /Applications/iMovie HD.app/Contents/PlugIns/ZoomTitles.bundle/Contents/MacOS/ZoomTitles
    0x4760000 - 0x4775fff com.apple.QuartzComposer.ExtraPatches 1.2.3 (32.21) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x4d15000 - 0x4d18fff com.apple.ATIRadeon8500GA 1.4.18 (4.1.8) /System/Library/Extensions/ATIRadeon8500GA.plugin/Contents/MacOS/ATIRadeon8500G A
    0x4d24000 - 0x4d28fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x530d000 - 0x530efff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x5a56000 - 0x5a63fff com.apple.IOFireWireAVCLib 1.8.2 /System/Library/Extensions/IOFireWireAVC.kext/Contents/PlugIns/IOFireWireAVCLib .plugin/Contents/MacOS/IOFireWireAVCLib
    0x5a69000 - 0x5a83fff com.apple.IOFireWireLib 2.2.5 /System/Library/Extensions/IOFireWireFamily.kext/Contents/PlugIns/IOFireWireLib .plugin/Contents/MacOS/IOFireWireLib
    0x5acf000 - 0x5ae9fff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x5aee000 - 0x5b67fff com.apple.applepixletvideo 1.2.5 (1.2d5) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x67e00000 - 0x67e31fff com.apple.MediaBrowser 2.0.3 (103) /Applications/iMovie HD.app/Contents/Frameworks/MediaBrowser.framework/Versions/A/MediaBrowser
    0x68480000 - 0x684a2fff com.apple.AVCVideoServices 1.0 (28) /Applications/iMovie HD.app/Contents/Frameworks/AVCVideoServices.framework/Versions/A/AVCVideoServic es
    0x68ba0000 - 0x68ba6fff com.apple.iMovieSupport 6.0 (51) /Applications/iMovie HD.app/Contents/Frameworks/iMovieSupport.framework/Versions/A/iMovieSupport
    0x68bf0000 - 0x68c21fff com.apple.MPEG2TSDecoder 1.0 (65) /Applications/iMovie HD.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/A/Mpeg2TsDecoder
    0x70000000 - 0x700fcfff com.apple.audio.units.Components 1.4.3 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x78e00000 - 0x78e07fff libLW8Utils.dylib /System/Library/Printers/Libraries/libLW8Utils.dylib
    0x79200000 - 0x7923efff libLW8Converter.dylib /System/Library/Printers/Libraries/libLW8Converter.dylib
    0x8fe00000 - 0x8fe51fff dyld 45.3 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072dfff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907ba000 - 0x90893fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dc000 - 0x908dcfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908de000 - 0x909e0fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3a000 - 0x90abefff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae8000 - 0x90b5afff IOKit /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd1fff com.apple.CFNetwork 129.19 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe6000 - 0x90ffefff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100e000 - 0x9108ffff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d5000 - 0x910fefff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110f000 - 0x9111dfff libz.1.dylib /usr/lib/libz.1.dylib
    0x91120000 - 0x912dbfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913da000 - 0x913e3fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ea000 - 0x91412fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91425000 - 0x91430fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91435000 - 0x9143dfff libbsm.dylib /usr/lib/libbsm.dylib
    0x91441000 - 0x914bcfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914f9000 - 0x914f9fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fb000 - 0x91533fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154e000 - 0x9161bfff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91670000 - 0x91701fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91748000 - 0x917fffff com.apple.QD 3.10.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9183c000 - 0x9189afff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918c9000 - 0x918eafff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918fe000 - 0x91923fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91936000 - 0x91978fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91994000 - 0x919a8fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919b6000 - 0x919f8fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a0e000 - 0x91ad5fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b23000 - 0x91b38fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b3d000 - 0x91b5bfff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b61000 - 0x91bd0fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91be7000 - 0x91bebfff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91bed000 - 0x91c4cfff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c51000 - 0x91c8efff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c95000 - 0x91caefff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91cb3000 - 0x91cb6fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91cb8000 - 0x91cb8fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cba000 - 0x91d9ffff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91da7000 - 0x91dc6fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e32000 - 0x91ea0fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91eab000 - 0x91f40fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f5a000 - 0x924e2fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92515000 - 0x92840fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92870000 - 0x928f8fff com.apple.DesktopServices 1.3.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92939000 - 0x92b64fff com.apple.Foundation 6.4.6 (567.27) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c82000 - 0x92d60fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d80000 - 0x92e6efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e80000 - 0x92e9efff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92ea9000 - 0x92f03fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f21000 - 0x92f21fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f23000 - 0x92f37fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f4f000 - 0x92f5ffff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f6b000 - 0x92f80fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f92000 - 0x93019fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9302d000 - 0x93038fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93042000 - 0x9306ffff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93089000 - 0x93098fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x930a4000 - 0x9310afff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9313b000 - 0x9318afff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x931b8000 - 0x931d5fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931e7000 - 0x931f4fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x931fd000 - 0x9350afff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93659000 - 0x93665fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9366a000 - 0x9368afff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x936de000 - 0x936defff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936e0000 - 0x93d13fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x940a0000 - 0x94110fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94149000 - 0x9420cfff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9425e000 - 0x9425efff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94260000 - 0x94433fff com.apple.QuartzCore 1.4.9 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94489000 - 0x944c6fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x944ce000 - 0x9451efff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9455e000 - 0x945a3fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x945af000 - 0x945e7fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946c2000 - 0x946d1fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x946d9000 - 0x946e6fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9472c000 - 0x94745fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9474c000 - 0x94a1bfff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94ade000 - 0x94b4ffff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94bc2000 - 0x94be3fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94ceb000 - 0x94e1bfff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94ead000 - 0x94ebcfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94ec4000 - 0x94ef1fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94ef8000 - 0x94f08fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94f0c000 - 0x94f3bfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94f4b000 - 0x94f68fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x952ae000 - 0x9531cfff com.apple.Bluetooth 1.7.8 (1.7.8f2) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x95358000 - 0x95358fff com.apple.DiscRecording 3.1.3 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9535a000 - 0x953ddfff com.apple.DiscRecordingEngine 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x9540a000 - 0x95450fff com.apple.DiscRecordingContent 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x95769000 - 0x957fffff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95e88000 - 0x95ec7fff com.apple.QTKit 7.1.3 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96ab2000 - 0x96abffff com.apple.JavaScriptGlue 418 /System/Library/PrivateFrameworks/JavaScriptGlue.framework/Versions/A/JavaScrip tGlue
    0x96ac9000 - 0x96b08fff com.apple.audio.midi.CoreMIDI 1.5 (41) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x96ef0000 - 0x96f0ffff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97626000 - 0x976e7fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x97712000 - 0x97713fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x97715000 - 0x97722fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9773c000 - 0x9777cfff com.apple.glut 3.3.8 (GLUT-3.3.8) /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x97b09000 - 0x97b1ffff com.apple.audio.CoreAudioKit 1.0 (1.0.0d1) /System/Library/Frameworks/CoreAudioKit.framework/CoreAudioKit
    0x97f4c000 - 0x97f5ffff com.apple.BluetoothUI 1.7.8 (1.7.8f2) /System/Library/Frameworks/IOBluetoothUI.framework/Versions/A/IOBluetoothUI
    0x98241000 - 0x98312fff com.apple.QuartzComposer 1.2.3 (32.21) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/QuartzComposer
    0x984c0000 - 0x984e2fff com.apple.DiscRecordingUI 3.1.3 /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x98bbd000 - 0x99574fff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9979b000 - 0x9979ffff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x997a1000 - 0x99885fff QuickTimeH264.altivec /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0x999d1000 - 0x99a98fff com.apple.QuickTimeMPEG4.component 7.1.3 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x99fb7000 - 0x99fc2fff com.apple.IMFramework 3.1.3 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9a551000 - 0x9a587fff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0xeab00000 - 0xeab25fff libConverter.dylib /System/Library/Printers/Libraries/libConverter.dylib
    Thanks for your time and consideration in this matter.

    Hey! Thanks! That ended up fixing it.

  • Premiere CS 5.0.4 on OSX Leopard 10.5.8 crashes on Quiting program

    I've scoured the web and forums looking for a solution to this. Most have said to check your folder permissions, which I have, and that does not fix it in my setup. I would really appreciate some assistance to troubleshoot this. Everytime I Quit out of Premiere Pro CS 5.0.4 running on a OSX 10.5.8, the program hangs in the dock until I eventually get these errors:
    From Apple:
    "The application Adobe Premiere Pro CS5 quit unexpectedly."
    From Adobe:
    "Adobe has detected that the application Adobe Premiere Pro CS5 has unexpectedly quit."
    Just troublesome, as I have clients coming in and it's embarrassing to be working on projects in front of them, and the program comes up with a crash message.
    Thanks,
    -Edward

    Do you have the Titler panel open? If so, try closing it before quitting and see if this prevents the crash on quit. I see that we have an open bug regarding a crash on quit when the Titler panel is open.
    If this isn't the issue that you're seeing, please file a bug report.

  • Acrobat 10.1.7 crash on quit on 10.7.5

    Hello,
    I've experience frequent Acrobat crash on quit when running under Lion 10.7.5. I have refresh the Acrobat prefences as suggested in previous discussions. Still no dice.
    Crash report: http://pastebin.com/GPAcAnxC
    Anyone can help?
    Thanks
    T

    I was experiencing very similar behavior in Safari and Firefox. 
    What I did and it seems to have worked was this:
    1.  Updated to Safari 5.1.5 ( http://www.apple.com/safari/download/ ).  If you were like me you never updated to the Safari 5.1.x versions because you would lose the ability to work with Acrobat and Reader within Safari otherwise.
         a.  If you read the 10.1.3 Release Notes Safari 5.1.x is now supported.
    http://helpx.adobe.com/content/dam/help/attachments/Acrobat_Reader_ReleaseNote_10.1.3.pdf
    10.1.3
    Added support for:
    • Firefox 10.0.x
    • Apple Safari 5.1 (64 bit) for OSX 10.6.8, Apple Safari 5.1(32-bit and 64-bit) for OSX 10.7.x
    Dropped support for:
    • All versions of Firefox prior to 10.0.
    2.  Reboot required by the Safari 5.1.5 installation
    3.  Opened both Safari and Firefox and both are stable now.
    Odd behavior I would agree.
    *Note:  You may lose some plugin functionality because when I looked in the /Library/Internet Plug-ins/ folder the only one that was there was a WebEx plug-in.  Everything else got moved out of that folder.

  • APERTURE CRASHES AND QUITS

    I´M CURRENTLY USING THE TRIAL VERSION FOR APERTURE 3. IT SEEMS UNBELIEVABLY SLOW AND TENDS TO CRASH AND QUIT WHEN I'M USING THE BRUSHES. IT HAS DONE THIS 4 AND 5 TIMES IN A ROW. I'M WONDERING IF ANYONE ELSE IS HAVING THE SAME PROBLEM??? I'M HOLDING BACK ON BUYING THE SOFTWARE BECAUSE THIS IS MAKING ME INSECURE AND UNEASY... I KEEP WONDERING IF THEY WILL FIX THESE BUGS...

    I have the same problem.
    I am fighting with the same problem even sough I have a licensed version. I have reinstalled Aperture (of cause the latest version). I rebuild as well (manually) the complete aperture library. Never the less it still has the same problem. I run Aperture always in in 32bit mode as well have installed the Nick software collection.
    I must say I felt and feel very conformable with Aperture 2 still like the use of Aperture 3. The main reason I changed to Mac was to be able to organize my photos in Aperture but somehow I am loosing slowly confident in the whole Library concept as I fear that this crashes might cause a corrupt library. Honestly I am not very dissatisfied regarding the whole story. Nevertheless I hope that this problem gets fixed soon.
    Best regards,
    Matthias

  • Why does my After Effects CS5.5 keep crashing on me when I switch to other apps?

    I have Adobe After Effects CS5.5 (v.10.5.1) and it keeps crashing when switching between AE and other programs.  Here's a video so you can see what's happening.
    I don't have any special plug-ins loaded except for what came with the program.  OpenGL rendering is turned on and have tried turning it off to see if it make the problem go away and it doesn't make a difference.
    Greatly appreciate any assistance I can get on this.
    Computer System
    Dell Precision M6600 Laptop
    Intel(R) Core(TM) i7-2920XM CPU @ 2.50GHz
    16GB RAM
    2GB NVIDIA Quadro 4000M
    Driver Version 285.62
    Optimus is turned off so it's just the Quadro 4000M Card - no Intel HD Graphics in the background
    413GB Free (687GB Total) Primary HD
    200GB Free (250GB Total) D Drive
    Windows 7 64-bit SP1 Professional
    Adobe Master Collection CS5.5 (Website Download)
    After Effects v.10.5.1 Update (Website Download version)

    I opened the Event Viewer and it listed the problem as an Application Error. Here is the information that it gave me.  Is the .dll file that it's listing causing my problem?
    Log Name: 
    Application
    Source:   
    Application Error
    Date:     
    12/12/2011 9:25:48 PM
    Event ID: 
    1000
    Task Category: (100)
    Level:    
    Error
    Keywords: 
    Classic
    User:     
    N/A
    Computer: 
    adsfa-PC
    Description:
    Faulting application name: AfterFX.exe, version: 10.5.1.2, time stamp: 0x4dc4fb01
    Faulting module name: NtrigInterfacePressure.dll_unloaded, version: 0.0.0.0, time stamp: 0x4d2dae27
    Exception code: 0xc0000005
    Fault offset: 0x0000000037e16090
    Faulting process id: 0x161c
    Faulting application start time: 0x01ccb946c75ad65a
    Faulting application path: C:\Program Files\Adobe\Adobe After Effects CS5.5\Support Files\AfterFX.exe
    Faulting module path: NtrigInterfacePressure.dll
    Report Id: 25e2b81d-253a-11e1-9bd8-90004edb40d6
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
    <Provider Name="Application Error" />
    <EventID Qualifiers="0">1000</EventID>
    <Level>2</Level>
    <Task>100</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2011-12-13T03:25:48.000000000Z" />
    <EventRecordID>11585</EventRecordID>
    <Channel>Application</Channel>
    <Computer>adfsa-PC</Computer>
    <Security />
      </System>
      <EventData>
    <Data>AfterFX.exe</Data>
    <Data>10.5.1.2</Data>
    <Data>4dc4fb01</Data>
    <Data>NtrigInterfacePressure.dll_unloaded</Data>
    <Data>0.0.0.0</Data>
    <Data>4d2dae27</Data>
    <Data>c0000005</Data>
    <Data>0000000037e16090</Data>
    <Data>161c</Data>
    <Data>01ccb946c75ad65a</Data>
    <Data>C:\Program Files\Adobe\Adobe After Effects CS5.5\Support Files\AfterFX.exe</Data>
    <Data>NtrigInterfacePressure.dll</Data>
    <Data>25e2b81d-253a-11e1-9bd8-90004edb40d6</Data>
      </EventData>
    </Event>
    Any ideas? 
    Thanks - jjgleim

  • Safari quits when using librooksbas.dylib plug-in and Rapport switched on.  Any way I can keep Rapport on?

    Safari quits when using librooksbas.dylib plug-in and with Rapport switched on.  Hence can only use Safari with Rapport switched off.  Anyone know how to keep Rapport on and use Safari?

    While the usual advice is to remove Rapport, there have been a number of recent reports where both that & genieo adware were involved.
    See Adware Removal Guide : Genieo
    or
    You installed the "Genieo" search-hijacking rootkit.
    to find out which files to check for.
    Otherwise, if you really want to keep it, perhaps uninstall it completely, including any Safari extension; then reinstall.

  • Office Apps Quit when I switch to different User

    I use a number of User Accounts on the same computer.
    MS Word and MS Excel both quit when I switch to a different Account.
    I am running 10.4.11 and use Microsoft Office 2004.
    Anyone have any ideas of how I can stop the MS apps from quitting?

    Have you enabled Fast User Switching in Accounts Pref Pane?

  • AE 2014.2 crash when switching preview panel with Matrox

    I newly bought a pc with Matrox M9138 card, and using it for professional use. All works fine, except for Adobe After Effects CC 2014.2: it simply crashes when switching between the Preview-panel and Render-Cue panel.
    When I look in AE preferences under Video-preview > Mercury transmit doesn't even show that there is a Matrox-card. The only option there is Adobe DV. So, I guess AE doesn't find and even makes use of my Matrox card.
    Technical info:
    Windows Version: 8.1
    Processor: Intel Core i7-4790 CPU, 3.6 GHz
    RAM: 16GB
    Type: 64bits
    Matrox M9138 LP PCIex16
    Driver version 2.4.3.2 (4.4.3.2) for Win 8-64bit
    Adobe CC After effects 2014.2
    After Efects error: "Crash in progress. Last logged message was: <816><ae.blitpipe><2> Making New Context"
    First I installed the Matrox driver, and then Adobe CC, but After effects crashed when switching between preview-panel and render-cue-panel (No Matrox recognition in AE preferences > Mercury transmit)
    Now I did it in other order:
    - I removed Adobe CC (AE included) and all parts
    - Did extra checkup removal with Adobe CC cleaner
    - Removed the Matrox driver
    - Restarted PC
    - Reinstalled Adobe CC with AE
    - Reinstalled Matrox Driver
    - Restarted PC
    - matrox fully installed and working perfectly (no errors in Display Adapters info).
    But still, After effects crashed (Still no Matrox recognition in AE preferences > Mercury transmit)
    I contacted Matrox technical support, and as I suspected, they say they haven't had this problem before and all works fine.
    Typical...
    Does someone has an idea what the problem would be?
    Help or info would be very appreciated.

    Solution:
    My graphics card did not supported the "Mercury Playback Engine GPU Acceleration (Open CL)". You can change it into "Mercury Playback Engine Software Only" in your Project Settings.
    But this is in the wrong place in my opinion. Why not in "Edit/Preferences"? I could've changed it by myself but I did not find the menu.
    Thanks Michaela from the Adobe Support Chat!

  • DW CS3 Crashes When Switching from Design View to Code View

    The page opens in code view, and when I try to switch to
    either split or design view, the application freezes.

    read my reply
    Date: Thu, 30 May 2013 20:27:49 -0700
    From: [email protected]
    To: [email protected]
    Subject: dreamweaver cs6 crashes when switching from design to live view
        Re: dreamweaver cs6 crashes when switching from design to live view
        created by Preran in Dreamweaver - View the full discussion
    Hi,
    Can you try the solutions mentioned in this document?
    http://helpx.adobe.com/dreamweaver/kb/crash-live-view-dreamweaver-cs5. html
    Thanks,
    Preran
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5367198#5367198
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5367198#5367198
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5367198#5367198. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Dreamweaver cs6 crashes when switching from design to live view

    dreamweaver cs6 crashes when switching from design to live view

    read my reply
    Date: Thu, 30 May 2013 20:27:49 -0700
    From: [email protected]
    To: [email protected]
    Subject: dreamweaver cs6 crashes when switching from design to live view
        Re: dreamweaver cs6 crashes when switching from design to live view
        created by Preran in Dreamweaver - View the full discussion
    Hi,
    Can you try the solutions mentioned in this document?
    http://helpx.adobe.com/dreamweaver/kb/crash-live-view-dreamweaver-cs5. html
    Thanks,
    Preran
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5367198#5367198
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5367198#5367198
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5367198#5367198. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

Maybe you are looking for