Keyboard shortcut file strategy

I would keep the file for my keyboard shortcut in a special place with a special name.
But now, I can't figure out where PS pulls the file from and I honestly am not sure things don't get screwy doing this.
What do others do about their keyboard shortcut file.
I can't really figure out where it navigates to anymore, it gets confusing, especially as versions change.
What is the best stragegy for this?

Oooh.
Have you pressed Save button?
After you'll do that Photoshop will ask you where you want to save .kys file OR will save it automatically to your *home folder*/Library/Application Support/Adobe/Adobe Photoshop *version*/Presets/Keyboard Shortcuts
So either save it wherever you want or grab the file there. After that you can double-click the file to restore shortcuts OR place the file into 'Keyboard Shortcuts' directory for it to appear in Photoshop's dropdown menu.
I can't understand, what's the problem?

Similar Messages

  • Saving plain text on a mac (Keyboard shortcuts file)

    Hi there perhaps some mac users can help me...
    I am manually editing the keyboard shortcuts file in TEXT edit on a mac (Im a pc user). I open the file as plain text  all the rich text stuff turned off.
    (Looked up how to do this.)
    I edit one of the shortcuts, no unusual characters etc.
    When I restart CC, it gives an error and shows squiggley characters at that line as the problem.
    On a pc I just edit and save as plain text and there are no issues...
    What am I doing wrong on a mac in Text edit ?
    Thanks Alan.

    The issue you are encountering might be related to how TextEdit handles line endings?  Not sure, but have you tried using the KeyedUp script to edit shortcuts?  I used it for CC and it seems to be working fine.
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1698043
    Hope that helps,
    Arie

  • Photoshop CS6 keyboard shortcuts in PSE 12

    Has the structure of the .kys file changed in CS6?  I used to be able to use the keyboard shortcuts from CS5 with my wife's laptop.  We recently went to CS6 on my desktop and PSE 12 on her laptop, and now the keyboard shortcuts that I try to copy from CS6 to PSE not only don't work, but are deleted by PSE as it exits.  I've put an old keyboard shortcuts.psp file that I had from CS5, and it works fine and doesn't get deleted.
    If my conclusion that the shortcuts are different and incompatible is correct, is there any workaround?
    I'm using Windows 7.  Thanks!

    It looks like the shortcuts from cs6 won't work in pse 12 and they don't work in photoshop cs5 either, so adobe must have changed something.
    Anyway, it's probably best to use the keyboard shortcuts from photoshop cs5, since pse 12 is mostly based on the photoshop cs5 code.
    This the message one gets in photoshop cs5 when trying to load a keyboard shortcuts file saved out of photoshop cs6.

  • Importing CS4 Keyboard Shortcuts to CS5

    I've  discovered that you can open your custom keyboard shortcuts xml file in a  text editor, and copy/paste shortcuts into your CS5 keyboard shortcuts  file. Anyone else tried this? Is there an easier way to import all of  your keyboard shortcuts from CS4 to CS5?

    I did some experimentation, and I stand corrected! Apparently my memory was dodgy. In particular:
    My experience is that it basically works fine, though it's been a while.
    I thought we had tested this from CS3 to CS5, but it looks like maybe we only did it from CS5 to CS5.5. Which are a lot more similar.
    (And yes, I did recall people having complaints about it, but my experience disagreed...)
    Indeed, you have some problems with CS4 to CS5, but they are not subtle. At least, initially, I was getting a dialog box informing me that there were defined shortcuts in the shortcut set that were invalid (Somewhere along the way that stopped happening, which is Interesting, but probably not relevant).
    Anyhow, I certainly don't disagree that pasting the XML differences is the better way to go -- I said as much in post #13.
    But by way of recompense, here are a pair of scripts to make it easier.
    Both require you to create a special shortcut set called "defaults" (i.e. defaults.indk) that they use as a baseline for differences. For a variety of reasons, it is insufficient for the script to use the Default.indk file in the application directory. Both scripts pop up an error if you have not done this, and tell you how to do it.
    The first one, extractShortcuts.jsx, prompts you to select a shortcut file to extract from, compares it against the default shortcut set, and outputs and differences to a file on the Desktop, extracted.xml. Run this in CS4.
    The second one, importShortcuts.jsx, prompts you to select the extracted.xml file from previous, asks you for the name of the new shortcut set, and then merges the two. It merges them in a fairly stupid way (just plain appending just before the end), but it's probably sufficient.
    So here we go, exportShortcuts.jsx:
    #target InDesign
    (function() {
         var appdir = app.filePath,
              prefs, shortcuts,
              i, s,
              defaults, readcuts,
              defxml, readxml,
              e, ea, action, context, string,
              defaultsByAction, d;
         var includes = $.includePath.split(";");
         for (i=0; i<includes.length; i++) {
              s = includes[i];
              if (s.match("Preferences") && s.match(/Scripts$/)) {
                   prefs = new File(s).parent;
                   break;
         if (!prefs) {
              alert("Could not find User Preferences directory");
              exit(1);
         // $.writeln(prefs.fsName);
         shortcuts = prefs.getFiles("InDesign Shortcut Sets")[0];
         defaults = shortcuts.getFiles("defaults.indk")[0];
         if (!defaults) {
              alert(
         'The script requires a special shortcut set called "defaults" to exist.\n'+
         'The app-folder Defaults.indk is NOT sufficient. Please go to '+
         'Edit > Keyboard Shortcuts, and select the the [Default] shortcut set,'+
         '  modify it in a trivial way (for instance, assign F1 to About InDesign),'+
         ' name the new set "defaults", remove the modification, and save the set.'+
         ' Then re-run this script.');
              exit(1);
         readcuts = shortcuts.openDlg("Select an INDK file to extract shortcuts from.","*.indk");
         writecuts = new File(Folder.desktop.fullName+"/extracted.xml");
         defaults.open("r");
         defxml = new XML(defaults.read());
         defaults.close();
         readcuts.open("r");
         readxml = new XML(readcuts.read());
         readcuts.close();
         writecuts.open("w");
         writecuts.writeln("<shortcut-sets>"); // hack
         defaultsByAction = {};
         for (i=0; i<defxml.shortcut.length(); i++) {
              e = defxml.shortcut[i];
              ea = e.elements()[0];
              if (ea.name() != "action-id") {
                   alert("Parse failure on element "+ea);
                   exit(1);
              action = ea.attributes();
              context = e.context[0];
              string = e.string[0];
              defaultsByAction[action] = { context: context, string: string };
         for (i=0; i<readxml.shortcut.length(); i++) {
              e = readxml.shortcut[i];
              ea = e.elements()[0];
              if (ea.name() != "action-id") {
                   alert("Parse failure on element "+ea);
                   exit(1);
              action = ea.attributes();
              context = e.context[0];
              string = e.string[0];
              d = defaultsByAction[action];
              if (!d ||
                   d.context != context ||
                   d.string != string) {
                   writecuts.writeln(e);
         writecuts.writeln("</shortcut-sets>"); // matching hack
         writecuts.close();
    And its mating half, importShortcuts.jsx:
    #target InDesign
    (function() {
        var appdir = app.filePath,
            prefs, shortcuts,
            i, s,
            defaults, readcuts,
            writename, writecuts,
            defxml, readxml,
            e, ea, action, context, string,
            defaultsByAction, d;
        var includes = $.includePath.split(";");
        for (i=0; i<includes.length; i++) {
            s = includes[i];
            if (s.match("Preferences") && s.match(/Scripts$/)) {
                prefs = new File(s).parent;
                break;
        if (!prefs) {
            alert("Could not find User Preferences directory");
            exit(1);
        // $.writeln(prefs.fsName);
        shortcuts = prefs.getFiles("InDesign Shortcut Sets")[0];
        defaults = shortcuts.getFiles("defaults.indk")[0];
        if (!defaults) {
            alert(
        'The script requires a special shortcut set called "defaults" to exist.\n'+
        'The app-folder Defaults.indk is NOT sufficient. Please go to '+
        'Edit > Keyboard Shortcuts, and select the the [Default] shortcut set,'+
        '  modify it in a trivial way (for instance, assign F1 to About InDesign),'+
        ' name the new set "defaults", remove the modification, and save the set.'+
        ' Then re-run this script.');
            return 1;
        readcuts = Folder.desktop.openDlg("Select an XML file to import shortcuts from","*.xml");
        writename  = prompt("Choose a name for the new shortcut set. One word, no spaces, please.",
        "new");
        writecuts = new File(shortcuts+"/"+writename+".indk");
        defaults.open("r");
        defxml = new XML(defaults.read());
        defaults.close();
        readcuts.open("r");
        readxml = new XML(readcuts.read());
        readcuts.close();
        defxml.appendChild(readxml.elements());
        writecuts.open("w");
        writecuts.write(defxml);
        writecuts.close();
    These are written on a Mac. I suppose there's they might not work perfectly under Windows if the logic to find the user's keyboard shortcuts directory doesn't work.
    As always, install scripts by saving each script as a plain text file (in TextEdit or Notepad) and following directions at, e.g., How to Install InDesign Scripts.
    Good night.

  • A keyboard shortcut seems to crash CS5

    Since beginning my trial of CS5 I have been crashing under certain circumstances. I may have isolated the problem, but I wonder if anyone else has had this problem or can reproduce it.
    FYI. I am using a brand new 17" Macbook Pro w/ 8 GB or ram. I also tested the Ram with Rember (plus I saw the same crashes before I upgraded from 4 GB of ram). I have tried all the remedies I have seen suggested such as, deleting preferences, checking my fonts (using Font Doctor), turning off flick panning and open GL, deleting all my caches- including font caches.
    I'm using PS CS5 12.01, OS 10.6.5. The same crash happened under 10.6.4.
    Here is the crash report I just sent Adobe:
    "I think I have gotten my crashes down to their essence. I believe it has to do with having my keyboard shortcut for "Standard Screen mode" set to opt-F11 (or perhaps any shortcut would do the same thing.
    1. open image
    2. use shortcut set in "keyboard shortcuts" to go to Full Screen with Menu Bar mode (F11).
    3. Use rectangular marquee tool to make a selection.
    4. Image>Crop
    5. Use shortcut set in "keyboard shortcuts" to go to Standard Screen mode (opt-F11)
    Instant crash!"
    I have used these same Keyboard Shortcuts without a problem in CS3 and CS4.
    While this seems to crash CS5 consistently, I can't be sure whether it is something with my machine or with CS5, or whether CS5 might also crash under some other conditions. Trying to trouble shoot this stuff is very frustrating!!!
    If any users (or Adobe) can see if this does the same thing on their systems it might help to identify a bug.
    Also, if anyone has an alternate explanation or a fix please let me know.

    Hello Chris,
    I sure do. I was hoping you'd want to see it! Good luck in finding the cause!! I could also send my keyboard shortcuts .kys file if you think that would help with trouble shooting. Incidentally, I always place my keyboard shortcut file in User>LIbrary>Application Support> Adobe > Adobe Photoshop CS_ > Presets > Keyboard Shortcuts.
    Thanks for taking the time to look into this.
    Ric
    Process:         Adobe Photoshop CS5 [786]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0.1 (12.0.1)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [108]
    Date/Time:       2010-11-21 16:06:48.390 -0500
    OS Version:      Mac OS X 10.6.5 (10H574)
    Report Version:  6
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000001
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    objc_msgSend() selector name: _unlockViewHierarchyForDrawing
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib               0x00007fff8168610a objc_msgSend + 22
    1   com.apple.AppKit              0x00007fff86063e3a -[NSView performKeyEquivalent:] + 181
    2   com.apple.AppKit              0x00007fff86063c40 -[NSWindow performKeyEquivalent:] + 69
    3   com.apple.AppKit              0x00007fff86063a5f -[NSApplication _handleKeyEquivalent:] + 221
    4   com.apple.AppKit              0x00007fff85f34645 -[NSApplication sendEvent:] + 3630
    5   com.adobe.Photoshop           0x00000001012debb2 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16785186
    6   com.adobe.Photoshop           0x00000001012df146 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16786614
    7   com.apple.AppKit              0x00007fff85ecb4da -[NSApplication run] + 474
    8   com.adobe.Photoshop           0x00000001012dd5ee AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16779614
    9   com.adobe.Photoshop           0x00000001012de819 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16784265
    10  com.adobe.Photoshop           0x00000001000688c2 0x100000000 + 428226
    11  com.adobe.Photoshop           0x0000000100237c01 0x100000000 + 2325505
    12  com.adobe.Photoshop           0x0000000100237c91 0x100000000 + 2325649
    13  com.adobe.Photoshop           0x00000001000028e4 0x100000000 + 10468
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x00007fff84de416a kevent + 10
    1   libSystem.B.dylib             0x00007fff84de603d _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib             0x00007fff84de5d14 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib             0x00007fff84de583e _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib             0x00007fff84de5168 _pthread_wqthread + 353
    5   libSystem.B.dylib             0x00007fff84de5005 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib             0x00007fff84e05fca __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff84e09de1 _pthread_cond_wait + 1286
    2   com.adobe.amt.services        0x00000001085e6c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services        0x00000001085dfcce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services        0x00000001085e6cbe AMTThread::Worker(void*) + 28
    5   libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    6   libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib             0x00007fff84dcb32e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore 0x00007fff87c101f2 MPWaitOnSemaphore + 96
    2   MultiProcessor Support        0x000000011cc1ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore 0x00007fff87b7b411 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    5   libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib             0x00007fff84dcb32e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore 0x00007fff87c101f2 MPWaitOnSemaphore + 96
    2   MultiProcessor Support        0x000000011cc1ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore 0x00007fff87b7b411 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    5   libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib             0x00007fff84dcb32e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore 0x00007fff87c101f2 MPWaitOnSemaphore + 96
    2   MultiProcessor Support        0x000000011cc1ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore 0x00007fff87b7b411 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    5   libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib             0x00007fff84e05fca __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff84e09de1 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore 0x00007fff87c39e27 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore 0x00007fff87ba9310 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore 0x00007fff87ba321b MPWaitOnQueue + 215
    5   AdobeACE                      0x000000010591eccd 0x1058e4000 + 240845
    6   AdobeACE                      0x000000010591e67a 0x1058e4000 + 239226
    7   ...ple.CoreServices.CarbonCore 0x00007fff87b7b411 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    9   libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib             0x00007fff84e05fca __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff84e09de1 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore 0x00007fff87c39e27 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore 0x00007fff87ba9310 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore 0x00007fff87ba321b MPWaitOnQueue + 215
    5   AdobeACE                      0x000000010591eccd 0x1058e4000 + 240845
    6   AdobeACE                      0x000000010591e67a 0x1058e4000 + 239226
    7   ...ple.CoreServices.CarbonCore 0x00007fff87b7b411 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    9   libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib             0x00007fff84e05fca __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff84e09de1 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore 0x00007fff87c39e27 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore 0x00007fff87ba9310 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore 0x00007fff87ba321b MPWaitOnQueue + 215
    5   AdobeACE                      0x000000010591eccd 0x1058e4000 + 240845
    6   AdobeACE                      0x000000010591e67a 0x1058e4000 + 239226
    7   ...ple.CoreServices.CarbonCore 0x00007fff87b7b411 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    9   libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib             0x00007fff84e05fca __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff84e05e59 nanosleep + 148
    2   com.adobe.PSAutomate          0x000000011f88209b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate          0x000000011f863fd3 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate          0x000000011f882196 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    6   libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib             0x00007fff84e05fca __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff84e09de1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl           0x000000012098789d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl           0x00000001207405e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl           0x00000001209879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x0000000120987d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x0000000120987e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib             0x00007fff84e05fca __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff84e09de1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl           0x000000012098789d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl           0x00000001207405e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl           0x00000001209879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x0000000120987d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x0000000120987e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib             0x00007fff84e05fca __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff84e09de1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl           0x000000012098789d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl           0x00000001207405e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl           0x00000001209879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x0000000120987d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x0000000120987e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib             0x00007fff84e05fca __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff84e09de1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl           0x000000012098789d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl           0x00000001207405e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl           0x00000001209879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x0000000120987d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x0000000120987e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib             0x00007fff84dcb2da mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff84dcb94d mach_msg + 59
    2   com.apple.CoreFoundation      0x00007fff88c71932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation      0x00007fff88c70dbf CFRunLoopRunSpecific + 575
    4   com.apple.CoreMediaIOServices 0x00007fff8083d61b MIO::DAL::RunLoop::OwnThread(void*) + 147
    5   com.apple.CoreMediaIOServices 0x00007fff8083f1e6 CAPThread::Entry(CAPThread*) + 140
    6   libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    7   libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib             0x00007fff84dcb33a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff84e09cd2 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl           0x0000000120987869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl           0x00000001209a40ec APXGetHostAPI + 2582620
    4   com.adobe.adobeswfl           0x00000001209879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x0000000120987d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x0000000120987e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib             0x00007fff84dcb33a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff84e09cd2 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl           0x0000000120987869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl           0x0000000120b21ef3 APXGetHostAPI + 4146787
    4   com.adobe.adobeswfl           0x00000001209879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x0000000120987d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x0000000120987e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib             0x00007fff84e0eeb6 recvfrom + 10
    1   ServiceManager-Launcher.dylib 0x0000000123623982 Invoke + 54020
    2   ServiceManager-Launcher.dylib 0x0000000123622adf Invoke + 50273
    3   ServiceManager-Launcher.dylib 0x0000000123621b26 Invoke + 46248
    4   ServiceManager-Launcher.dylib 0x0000000123621b81 Invoke + 46339
    5   ServiceManager-Launcher.dylib 0x0000000123621c02 Invoke + 46468
    6   ServiceManager-Launcher.dylib 0x000000012361c30d Invoke + 23695
    7   ServiceManager-Launcher.dylib 0x000000012361c4a6 Invoke + 24104
    8   ServiceManager-Launcher.dylib 0x000000012361cf2f Invoke + 26801
    9   ServiceManager-Launcher.dylib 0x000000012361d01d Invoke + 27039
    10  ServiceManager-Launcher.dylib 0x000000012362031f Invoke + 40097
    11  ServiceManager-Launcher.dylib 0x00000001236205c5 Invoke + 40775
    12  ServiceManager-Launcher.dylib 0x0000000123620b84 Invoke + 42246
    13  ServiceManager-Launcher.dylib 0x0000000123620d71 Invoke + 42739
    14  ServiceManager-Launcher.dylib 0x0000000123612daf Login + 1773
    15  ServiceManager-Launcher.dylib 0x0000000123614295 Login + 7123
    16  ServiceManager-Launcher.dylib 0x00000001236212a8 Invoke + 44074
    17  ServiceManager-Launcher.dylib 0x00000001236236c1 Invoke + 53315
    18  libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    19  libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib             0x00007fff84dcb33a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff84e09cd2 _pthread_cond_wait + 1015
    2   ...ple.CoreServices.CarbonCore 0x00007fff87ba9330 TSWaitOnConditionTimedRelative + 209
    3   ...ple.CoreServices.CarbonCore 0x00007fff87ba90de TSWaitOnSemaphoreCommon + 416
    4   ...ple.CoreServices.CarbonCore 0x00007fff87ba8ddc AsyncFileThread(void*) + 61
    5   libSystem.B.dylib             0x00007fff84e04536 _pthread_start + 331
    6   libSystem.B.dylib             0x00007fff84e043e9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000060  rbx: 0x00000001206d6760  rcx: 0x00007fff708ae630  rdx: 0x0000000000000000
      rdi: 0x0000000000000001  rsi: 0x00007fff86634410  rbp: 0x00007fff5fbff0e0  rsp: 0x00007fff5fbff098
       r8: 0x000000014374a4c8   r9: 0x0000000143746600  r10: 0x00000001205c58f0  r11: 0x00007fff85ee9d19
      r12: 0x0000000000000000  r13: 0x0000000000000001  r14: 0x0000000143702d80  r15: 0x00007fff86631d88
      rip: 0x00007fff8168610a  rfl: 0x0000000000010202  cr2: 0x0000000000000001
    Binary Images:
           0x100000000 -        0x1026a7fff +com.adobe.Photoshop 12.0.1 (12.0.1) <CFDED939-0A8A-EBC4-215B-94A4A224A1D1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
           0x103287000 -        0x1032fffef +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <4A355686-1451-B19A-0C55-DFE49FD2539E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x103315000 -        0x10331cfff  org.twain.dsm 1.9.4 (1.9.4) <46B3568D-9CD5-4B11-4984-E50264A6B7EE> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103324000 -        0x103334ff8 +com.adobe.ahclientframework 1.5.0.30 (1.5.0.30) <5D6FFC4E-7B81-3E8C-F0D4-66A3FA94A837> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x10333f000 -        0x103345ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <1AB34F57-2E8D-42FB-A484-5CCB928CA456> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10334c000 -        0x103552fef +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x1035e5000 -        0x103793fef +com.adobe.owl AdobeOwl version 3.0.93 (3.0.93) <74CF40F6-B216-DB73-5C8F-FC5533220CD9> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x103835000 -        0x103c65fef +AdobeMPS ??? (???) <FA334142-5343-8808-7760-4318EB62AD51> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103dbf000 -        0x1040eaff7 +AdobeAGM ??? (???) <52E17D56-6E7A-A635-82ED-5DE1F3E5045D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1041b7000 -        0x1044dffe7 +AdobeCoolType ??? (???) <7EF54CD5-3426-A1E5-7961-FA34CCC2018D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x104577000 -        0x104598ff7 +AdobeBIBUtils ??? (???) <F7150688-2C15-0F0C-AF24-93ED82FC321A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x1045a5000 -        0x1045d0ff6 +AdobeAXE8SharedExpat ??? (???) <7E809606-BF97-DB3A-E465-156446E56D00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x1045e2000 -        0x104726fef +WRServices ??? (???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x10476d000 -        0x1047d2fff +aif_core ??? (???) <12FA670E-05A8-1FCB-A7A2-AAE68728EA30> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x1047ee000 -        0x104804fff +data_flow ??? (???) <9C5D39A6-D2A2-9B6A-8B64-D1B59396C112> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x10481c000 -        0x1048b2fff +image_flow ??? (???) <B72AA922-0D68-D57E-96B1-2E009B0AD4AE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104929000 -        0x104947fff +image_runtime ??? (???) <32786637-C9BF-4CB6-2DF9-5D99220E00BE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x104964000 -        0x104b93fff +aif_ogl ??? (???) <615E7DF6-09B1-857A-74AC-E224A636BEE1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x104c72000 -        0x104d05fff +AdobeOwlCanvas ??? (???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
           0x104d25000 -        0x10506efef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x1051fe000 -        0x105380fe7 +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x105422000 -        0x10579afff +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x1058e4000 -        0x1059f9fff +AdobeACE ??? (???) <5BFBC4A1-1704-06A7-B656-D28BF592307A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x105a1e000 -        0x105a3afff +AdobeBIB ??? (???) <7A792F27-42CC-2DCA-D5DF-88A2CE6C2626> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x105a44000 -        0x105aaeff7 +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <6B2F73C2-10AB-08B3-4AB0-A31C83D1E5E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x105ae1000 -        0x105bb4ffb +AdobeJP2K ??? (???) <465D1693-BE79-590E-E1AA-BAA8061B4746> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105bd4000 -        0x105bd8ff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) <0C380604-C686-C2E4-0535-C1FAB230187E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x105bdc000 -        0x105c53fff +FileInfo ??? (???) <6D5235B9-0EB6-17CA-6457-A2507A87EA8F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105c74000 -        0x105cd2ffd +AdobeXMP ??? (???) <561026BB-C6EA-29CE-4790-CABCB81E8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105ce0000 -        0x10617bfff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
           0x106701000 -        0x106757feb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x10679c000 -        0x1067c1ffe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x1067fb000 -        0x106800ffd +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) <DFFB9A08-8369-D65F-161F-7C61D562E307> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x106805000 -        0x1069a1fff +com.adobe.PlugPlug 2.0.0.109 (2.0.0.109) <83092855-E671-F64A-EE0D-1110CF669634> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x106a49000 -        0x106a62feb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
           0x106a73000 -        0x106a79feb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
           0x106a80000 -        0x106a80ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
           0x106a83000 -        0x106a8bff3 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x106a92000 -        0x106b78fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <BA5E5276-8696-906D-0A37-0FFEF022B482> /usr/lib/libcrypto.0.9.7.dylib
           0x106cf8000 -        0x106cfafef  com.apple.textencoding.unicode 2.3 (2.3) <B254327D-2C4A-3296-5812-6F74C7FFECD9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x1085c3000 -        0x108633ff6 +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64) <52FF1F9B-9991-ECE2-C7E3-09DA1B368CBE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
           0x1087c0000 -        0x1087d7fe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <5C25B45F-7A9E-3259-0532-E13B34B5398A> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x1087db000 -        0x1087fcfef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <1CC25A05-9E4C-ACBE-546E-34063A4CEB09> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x109d5a000 -        0x109d69fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <50541300-118F-BE28-86DB-0F42738A9338> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x109d6d000 -        0x109d7ffff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <CC30A563-5E4C-7ACE-3B73-90E8F582171A> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x109d83000 -        0x109d84fff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <0739FD38-CF46-0ECC-517C-E187C5A3B8D6> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x109d8b000 -        0x109d93fff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
           0x109dc6000 -        0x109dcdfff +Enable Async IO ??? (???) <9C98DC9E-5974-FE5D-75C3-16BC4738DCC8> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x109dd6000 -        0x109ddffff +FastCore ??? (???) <F1D1C94D-4FE1-F969-6FC2-8D81837CA5E1> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11cb00000 -        0x11cb63ff3 +MMXCore ??? (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11cbe9000 -        0x11cc54ff0 +MultiProcessor Support ??? (???) <8A0A7B32-67A5-4CD5-80DC-F9BEDA271F2C> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x11f46b000 -        0x11f487ff7 +MeasurementCore ??? (???) <0E3BE9B3-FF3D-78A6-38EC-5CB0828B80EB> /Applications/Adobe Photoshop CS5/Plug-ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
           0x11f4a7000 -        0x11f4c7ffb +com.adobe.ape adbeapecore version 3.1.70.10055 (3.1.70.10055) <66373ADB-0865-ECDB-D3D0-B3373FC43919> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
           0x11f700000 -        0x11f95cfef +com.adobe.PSAutomate 12.0.1 (12.0.1) <6A522366-AB0A-E14E-D695-CDC7F5211991> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x11fb72000 -        0x11fc16ffb +com.adobe.AdobeExtendScript ExtendScript 4.1.25 (4.1.25.8769) <144F37AB-BE20-D159-C326-A34154FE04B3> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x11fc78000 -        0x11fd18fef +com.adobe.AdobeScCore ScCore 4.1.25 (4.1.25.8769) <28F9410F-A5B5-BB59-FB7E-F5DB8FA70A0C> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x11fdd1000 -        0x11fdd5fff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <F99C2FBC-103D-DB2D-8D53-CFB8CEFA90F8> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
           0x11fdda000 -        0x11fde0fff  com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) <933CA4C6-F428-0E2E-DCBE-FA0284914092> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
           0x120700000 -        0x121568ff3 +com.adobe.adobeswfl ??? (2.0.0.10053) <ADE7E8AA-80B6-7BAC-8205-13D7A0E89DF8> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/Ado beSWFL
           0x122870000 -        0x1228aeff7  com.apple.DP.ScreenInputDevice 13.0 (13.0) <22174597-D163-7A20-C82A-C00C2CA19640> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/AppleScreenInpu tDevice.plugin/Contents/MacOS/AppleScreenInputDevice
           0x122d20000 -        0x122d4aff7  com.apple.mio.DAL.VDC_4 133.0 (1158) <75A32DC1-B6D9-A21B-7CDF-110B6C6ABDC3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.plugin/Cont ents/MacOS/VDC
           0x1235b8000 -        0x1235f5feb +com.adobe.AAM.AdobeUpdaterNotificationFramework UpdaterNotifications 1.0.0.64 (1.0.0.64) <CD8BD7C7-0F66-29B6-C158-A6EF8DF69996> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/updaternotifications.framework/Versions/a/UpdaterNotification s
           0x123610000 -        0x123638fef +ServiceManager-Launcher.dylib ??? (???) <4608E5E7-7F22-A4FF-527C-E97EA339FCCC> /Library/Application Support/Adobe/CS5ServiceManager/lib/ServiceManager-Launcher.dylib
           0x1236cb000 -        0x1236eaffe +com.adobe.adobe_oobe_launcher Adobe OOBE Launcher 1.0.0.64 (BuildVersion: 1.0; BuildDate: Mon Jan 26 2010 21:49:00) (1.0.0.64) <DAC1355F-1B1F-99B2-E5D7-01EF0BDB5688> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_oobe_launcher.framework/Versions/a/adobe_oobe_launcher
           0x14085a000 -        0x140880fff  GLRendererFloat ??? (???) <0310BFE5-B3DE-BCD8-EFD7-42C574EBF776> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
           0x140a00000 -        0x140b91fff  GLEngine ??? (???) <BB46BB42-B574-1E54-101B-A68E43576B26> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x140bc2000 -        0x140fe5fef  libclh.dylib 3.1.1 C  (3.1.1) <49B010DC-B120-EF70-B369-FB53E56DE658> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x141013000 -        0x141eccfe7  com.apple.driver.AppleIntelHDGraphicsGLDriver 1.6.24 (6.2.4) <D123120E-C789-41BA-B6C0-E771956CA4F6> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelH DGraphicsGLDriver
           0x200000000 -        0x200787fef  com.apple.GeForceGLDriver 1.6.24 (6.2.4) <FA0ED181-B06F-1868-B4B6-978FC4BD0DBE> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
        0x7fff80003000 -     0x7fff803ddfff  com.apple.RawCamera.bundle 3.4.1 (546) <F7865FD2-4869-AB19-10AA-EFF1B3BC4178> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff803de000 -     0x7fff805cdfe7  com.apple.JavaScriptCore 6533.19 (6533.19.1) <233B3E34-CDC4-668A-529A-7E61D510D991> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff805ce000 -     0x7fff80699fe7  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <3C223A94-EF14-28C5-844B-C25DFC87FB42> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff8069a000 -     0x7fff80774ff7  com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff80775000 -     0x7fff8082efff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff8082f000 -     0x7fff80874fff  com.apple.CoreMediaIOServices 133.0 (1158) <53F7A2A6-78CA-6C34-0BB6-471388019799> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOSer vices
        0x7fff8094e000 -     0x7fff80960fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff809b4000 -     0x7fff80adafff  com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <B51023BB-A5C9-3C65-268B-6B86B901BB2C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff80adb000 -     0x7fff80b18ff7  libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff80b19000 -     0x7fff80b1dff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <63F77AC8-84CB-0C2F-8D2B-190EE5CCDB45> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff80b3f000 -     0x7fff80cf6fef  com.apple.ImageIO.framework 3.0.4 (3.0.4) <2CB9997A-A28D-80BC-5921-E7D50BBCACA7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
        0x7fff80d39000 -     0x7fff80e61ff7  com.apple.MediaToolbox 0.484.20 (484.20) <628A7245-7ADE-AD47-3368-CF8EDCA6CC1C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff80e62000 -     0x7fff80f6cff7  com.apple.MeshKitIO 1.1 (49.2) <B9E2EB6C-66F6-CFAD-4530-DDA4355D7FBA> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitIO.frame work/Versions/A/MeshKitIO
        0x7fff80f6d000 -     0x7fff80f9cff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
        0x7fff8100c000 -     0x7fff8100cff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff81139000 -     0x7fff8125afe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8125b000 -     0x7fff812f5fff  com.apple.ApplicationServices.ATS 4.4 (???) <395849EE-244A-7323-6CBA-E71E3B722984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff81326000 -     0x7fff8136ffef  libGLU.dylib ??? (???) <EB4255DD-A9E5-FAD0-52A4-CCB4E792B86F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff81370000 -     0x7fff81386fef  libbsm.0.dylib ??? (???) <83676D2E-23CD-45CD-BE5C-35FCFFBBBDBB> /usr/lib/libbsm.0.dylib
        0x7fff81387000 -     0x7fff8147fff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <E0683DF0-8180-58A2-BA49-511111D4F36E> /usr/lib/libiconv.2.dylib
        0x7fff81480000 -     0x7fff814a5ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff81550000 -     0x7fff815d5ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff815e4000 -     0x7fff81615fff  libGLImage.dylib ??? (???) <57DA0064-4581-62B8-37A8-A07ADEF46EE2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff81616000 -     0x7fff8164ffef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <97F968EB-80ED-36FB-7819-D438B489E46E> /usr/lib/libcups.2.dylib
        0x7fff81650000 -     0x7fff81670ff7  com.apple.DirectoryService.Framework 3.6 (621.9) <FF6567B5-56BD-F3EC-E59D-1EC583C3CF73> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
        0x7fff81671000 -     0x7fff81680fff  com.apple.NetFS 3.2.1 (3.2.1) <3FC302C9-A5C6-A9CA-08CE-435AD05499F1> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff81681000 -     0x7fff81737fff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <B1F5CDC0-96BD-C7C0-BEAA-1E2259DDE067> /usr/lib/libobjc.A.dylib
        0x7fff81738000 -     0x7fff817a4ff7  com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff817a5000 -     0x7fff8180ffe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <7D8B6D68-7E70-2AF2-BF9F-2CD56145909C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
        0x7fff81810000 -     0x7fff81833fff  com.apple.opencl 12.3 (12.3) <D30A45FC-4520-45AF-3CA5-092313DB5D54> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff81877000 -     0x7fff818bafef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff818bb000 -     0x7fff81b41fef  com.apple.security 6.1.1 (37594) <17CF7858-52D9-9665-3AE8-23F07CC8BEA1> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff81b42000 -     0x7fff81b5dff7  com.apple.openscripting 1.3.1 (???) <5A6ECC32-04D0-9A62-635D-1DD03EC6E190> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff81b86000 -     0x7fff81df0fef  com.apple.QuartzComposer 4.2 ({156.28}) <7586E7BD-D3BD-0EAC-5AC9-0BFA3679017C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
        0x7fff81df1000 -     0x7fff81ea0fff  edu.mit.Kerberos 6.5.10 (6.5.10) <F3F76EDF-5660-78F0-FE6E-33B6174F55A4> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff820b0000 -     0x7fff8213ffff  com.apple.PDFKit 2.5.1 (2.5.1) <927B9F90-3EBE-768E-8B18-BE43B4B58190> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
        0x7fff82140000 -     0x7fff82323fff  libType1Scaler.dylib ??? (???) <3A1AFBA4-958E-DD07-297E-DF1FB2C96D7C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib
        0x7fff82324000 -     0x7fff82462fff  com.apple.CoreData 102.1 (251) <782F29CA-ACC7-4A77-5772-52FBE2CEFB5E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff82463000 -     0x7fff824a4fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff824fa000 -     0x7fff82500ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8251c000 -     0x7fff8255dfff  com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff8263d000 -     0x7fff8263dff7  com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8263e000 -     0x7fff82879fef  com.apple.imageKit 2.0.3 (1.0) <5D18C246-303A-6580-9DC9-79BE79467C95> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
        0x7fff8287a000 -     0x7fff82887fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <397B9057-5CDF-3B19-4E61-9DFD49369375> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff82888000 -     0x7fff829a1fef  libGLProgrammability.dylib ??? (???) <13E8114C-6E07-A66E-35E6-C185E54840AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
        0x7fff829b6000 -     0x7fff829fdff7  com.apple.coreui 2 (114) <BB09E685-1F5D-0676-1A0E-295610B387A8> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff829fe000 -     0x7fff830fb06f  com.apple.CoreGraphics 1.545.0 (???) <356D59D6-1DD1-8BFF-F9B3-1CE51D2F1EC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff830fc000 -     0x7fff83145ff7  com.apple.securityinterface 4.0.1 (37214) <C22EEFC8-92E8-EC11-B967-FD790D39F9AB> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
        0x7fff83154000 -     0x7fff83168fff  libGL.dylib ??? (???) <1EB1BD0F-C17F-55DF-B8B4-8E9CF99359D4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff83169000 -     0x7fff8316fff7  IOSurface ??? (???) <04EDCEDE-E36F-15F8-DC67-E61E149D2C9A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff83170000 -     0x7fff83173ff7  com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff83184000 -     0x7fff831b4fef  com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff83335000 -     0x7fff833c5fff  com.apple.SearchKit 1.3.0 (1.3.0) <3403E658-A54E-A79A-12EB-E090E8743984> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
        0x7fff833c6000 -     0x7fff833c7fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff833c8000 -     0x7fff833e1fff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff833e2000 -     0x7fff833e4fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff83423000 -     0x7fff834a2fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <1DD64A62-0DE4-223F-F781-B272FECF80F0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff834f6000 -     0x7fff835abfe7  com.apple.ink.framework 1.3.3 (107) <D76C7591-B060-E2DE-6634-968FDABD87EF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff835ac000 -     0x7fff835e5ff7  com.apple.MeshKit 1.1 (49.2) <2860E92F-5B68-E8DD-0E8F-BF3DD6ACF330> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff835e6000 -     0x7fff835f4ff7  libkxld.dylib ??? (???) <4016E9E6-0645-5384-A697-2775B5228113> /usr/lib/system/libkxld.dylib
        0x7fff8363f000 -     0x7fff836bdfff  com.apple.CoreText 3.5.0 (???) <4D5C7932-293B-17FF-7309-B580BB1953EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
        0x7fff83a02000 -     0x7fff83a43ff7  com.apple.CoreMedia 0.484.20 (484.20) <42F3B74A-F886-33A0-40EE-8399B12BD32A> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff83a44000 -     0x7fff83a58ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <63C87CF7-56B3-4038-8136-8C26E96AD42F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
        0x7fff83a62000 -     0x7fff83a69fff  com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff83a6a000 -     0x7fff83a6eff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff83a6f000 -     0x7fff83a78ff7  com.apple.DisplayServicesFW 2.3.0 (283) <3D05929C-AB17-B8A4-DC81-87C27C59E664> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
        0x7fff83a95000 -     0x7fff83af7fe7  com.apple.datadetectorscore 2.0 (80.7) <5F0F865C-A80F-FE7F-7DF8-894A4A99EACA> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
        0x7fff83afd000 -     0x7fff83b40ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <7E30B5F6-99FD-C716-8670-5DD4B4BAED72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff83b41000 -     0x7fff83b6cff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
        0x7fff8485e000 -     0x7fff848e0fff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
        0x7fff848e1000 -     0x7fff84907fe7  libJPEG.dylib ??? (???) <6690F15D-E970-2678-430E-590A94F5C8E9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
        0x7fff8492d000 -     0x7fff84979fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff8497a000 -     0x7fff849c9ff7  com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <17EFD646-6F53-36E9-56BF-5A339E83EFFC> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
        0x7fff849ca000 -     0x7fff849cfff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff849d0000 -     0x7fff84a0bfff  com.apple.AE 496.4 (496.4) <64C27EC8-FC7F-EA6B-9435-9A3452425915> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff84a0c000 -     0x7fff84a22fff  com.apple.ImageCapture 6.0.1 (6.0.1) <09ABF2E9-D110-71A9-4A6F-8A61B683E936> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff84a23000 -     0x7fff84a74fef  com.apple.HIServices 1.8.1 (???) <BE479ABF-3D27-A5C7-800E-3FFC1731767A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff84a75000 -     0x7fff84a86ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
        0x7fff84ac8000 -     0x7fff84ae5ff7  libPng.dylib ??? (???) <14043CBC-329F-4009-299E-DEE411E16134> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
        0x7fff84ae6000 -     0x7fff84aebfff  libGFXShared.dylib ??? (???) <A94DE483-A586-A172-104F-1CFC5F0BFD57> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff84aec000 -     0x7fff84aedfff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
        0x7fff84b61000 -     0x7fff84c46fef  com.apple.DesktopServices 1.5.9 (1.5.9) <27890B2C-0CD2-7C27-9D0C-D5952C5E8438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
        0x7fff84c47000 -     0x7fff84c68fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
        0x7fff84dca000 -     0x7fff84f8bfff  libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <71E6D4C9-F945-6EC2-998C-D61AD590DAB6> /usr/lib/libSystem.B.dylib
        0x7fff84f8c000 -     0x7fff84f8ffff  com.apple.help 1.3.1 (41) <E311A81E-9870-A430-1E16-AFF6C92CE6E5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
        0x7fff84f90000 -     0x7fff8528efe7  com.apple.HIToolbox 1.6.3 (???) <CF0C8524-FA82-3908-ACD0-A9176C704AED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
        0x7fff85291000 -     0x7fff8529cff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <60484D84-BA63-13DD-50E9-ABDA402C3C45> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff852fe000 -     0x7fff8539efff  com.apple.LaunchServices 362.1 (362.1) <4529EF9C-45C7-E2E3-6726-4A5AD382566D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff8539f000 -     0x7fff853c7fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff853c8000 -     0x7fff85537fe7  com.apple.QTKit 7.6.6 (1756) <250AB242-816D-9F5D-94FB-18BF2AE9AAE7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8563d000 -     0x7fff8563eff7  com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <14F14B5E-9287-BC36-0C3F-6592E6696CD4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8563f000 -     0x7fff8569ffe7  com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff856a0000 -     0x7fff85a3dfe7  com.apple.QuartzCore 1.6.3 (227.34) <215222AF-B30A-7CE5-C46C-1A766C1D1D2E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff85a7d000 -     0x7fff85ec1fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <E14EC4C6-B055-A4AC-B971-42AB644E4A7C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fff85ec2000 -     0x7fff868b8fff  com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff868b9000 -     0x7fff868befff  libGIF.dylib ??? (???) <9A2723D8-61F9-6D65-D254-4F9273CDA54A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
        0x7fff868bf000 -     0x7fff86b42ff7  com.apple.Foundation 6.6.4 (751.42) <9A99D378-E97A-8C0F-3857-D0FAA30FCDD5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff86b43000 -     0x7fff86b45fff  libRadiance.dylib ??? (???) <76438F90-DD4B-9941-9367-F2DFDF927876> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
        0x7fff86b46000 -     0x7fff86b46ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
        0x7fff86b47000 -     0x7fff86b8efff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff86b8f000 -     0x7fff86c0cfef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff86c0d000 -     0x7fff86c23fe7  com.apple.MultitouchSupport.framework 207.10 (207.10) <1828C264-A54A-7FDD-FE1B-49DDE3F50779> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff86c30000 -     0x7fff86c3ffff  com.apple.opengl 1.6.11 (1.6.11) <43D5BE71-E1F6-6974-210C-17C68919AE08> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff86c40000 -     0x7fff86c40ff7  com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff86c77000 -     0x7fff86d2cfe7  com.apple.ColorSync 4.6.3 (4.6.3) <AA93AD96-6974-9104-BF55-AF7A813C8A1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff86d2d000 -     0x7fff87231fe7  com.apple.VideoToolbox 0.484.20 (484.20) <8B6B82D2-350B-E9D3-5433-51453CDA65B4> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff87292000 -     0x7fff87292ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff87293000 -     0x7fff87293ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff876ba000 -     0x7fff87722fff  com.apple.MeshKitRuntime 1.1 (49.2) <C57FDCEE-CED0-06A8-2890-A3F6BB851998> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitRuntime. framework/Versions/A/MeshKitRuntime
        0x7fff87966000 -     0x7fff87977fff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCW

  • "Tab" as Keyboard Shortcut.

    I would like to assign "tab" as a keyboard shortcut in Flash CC, when I try to do it in the "Keyboard Shortcut Window" it tabs me out of that frame so I am unable to assign it. Please Help.
    I looked at the Keyboard Shortcut XML file in my preferences but I couldn't make sense of it.
    In Flash CS 6 you can just push tab during the "press keyboard shortcut" part of setting it up, painless.

    I have determined that "Tab" is key #9.
    However, in the Keyboard Shortcut file for Flash CC it does not seem to use this system but more so "spells out" the keys. I am trying to run a script command that is visible in the "Keyboard Shortcut" window but unable to find it in the keyboard shortcut file even if I set it to another key and look for it.

  • How to import keyboard shortcuts from CS6 to CC?

    Every time there's a new version I go through this trying to figure out where the keyboard shortcuts file lives and every time it's hell. This time I've been searching and searching and I can't find a way to do. Why is this so hard? Should this thing happen automacally or at least there could be an option for "import keyboard shortcuts." I can't really use the new Illustrator without my shortcuts. I've looked in the preferences in the Library and in the Applications folders. Any ideas?
    Thanks,
    ~peter

    Thanks, but I looked there and there's only the default .kys file, not the custom one I saved. I saved the custom keyboards shortcut file but I can't find it anywhere. I think the last time I had to do this it was in Library/Preferences/Application Shortcuts/Adobe or something like that but it's not anywhere it seesm.

  • German Keyboard shortcuts in Englisch AFX CS5?

    Hi there,
    I have updatet to the englisch Production Premium CS5 (I always use englisch software even though I live in germany).
    In CS4, I was able to replace the englisch keyboard shortcut file in AFX with german keyboard shortcuts. Everything worked wunderfully.
    So I tried the same thing with AFX CS5. Since I don't have a german text file for the shortcuts of CS5, I just gave it a try and copied the CS4 german one. They pretty much look the same. But after restarting AFX the shortcuts are still in english, and the german content of the file itsell turned into englisch again :-(  Since I followed the same procedure like I did with CS4 a couple of months ago, I don't really know where the error is.
    Maybe somebody could send me the original german Keyborad shortcut file for AFX CS5. In windows 7 64bit it is located here:
    C:\Users\YOU\AppData\Roaming\Adobe\After Effects\10.0\Adobe After Effects 10.0 Shortcuts
    I don't know if that would solve it. But I guess that for CS5 the language file of the shortcuts might be slightly different from CS4, and thats why AFX CS5 won't accept my old CS4 german language shortcut file.
    Hope somebody can help,
    Martin

    Works without issues for me, but you may try the attached file (download with right-click --> Save Link as..., rename from JPG to TXT).
    Mylenium

  • Keyboard Shortcuts only in one file type?

    I have assigned different keyboard shortcuts and they work fine in .cfm files, however, if I try to use them in any other file type (.html, .xml. etc.) they do not work? Any ideas?

    That's odd.  What keyboard shortcut did you define?  What OS?  What version of DW?

  • Keyboard shortcut to rename files in Finder

    Hi,
    How can I create a keyboard shortcut to rename files in Finder, preferrably "F2"?
    I know I can click on the filename twice in Finder with a short delay and then I can rename it - but that's a drag if you have to rename a lot of files....
    I'm also aware of the possibility to create shortcuts in
    System Preferences -> Keyboard & Mouse -> Keyboard Shortcuts
    ...just can't figure out how to create the shortcut I need
    Thanks,
    Koinseb

    Select a file and press return to edit the name without the delay.
    You might look at A Better Finder Rename if you have many files to rename:
    http://www.publicspace.net/ABetterFinderRename/
    hth,
    b.

  • [Keyboard Shortcuts] Editing the indk.-file

    Hi.
    I'm working in a newspaper and we have upgraded our advertisement software. With this software a plugin is installed to InDesign to save and export.
    On the last version you had the possibility to assign a keyboard shortcut in Edit > Keyboard Shortcuts to the feature AdPoint > Save and Export PDF.
    In the new version the menu is stil present and being used to "Save and Export" every advert produced. However, the menu does not appear in Edit > Keyboard Shortcuts.
    Ive been trying to edit the .indk-file, but with no luck.
    I copied the .indk-file from when the last version that was used. It didnt work, but this is the part in the .indk-file:
    <shortcut>
         <action-id value="0xe9600 + 5" name="KBSCE Other:0xe9600kAPP_ExportPDF_MenuItemKey"></action-id>
         <context>DefaultContext</context>
         <string>Shift+Ctrl+E</string>
    </shortcut>
    Anyone know how to make this work?
    Version: InDesign CS5
    OS: Windows 7

    The best way to add a +1 would be for everyone to file a feature request. Those are officially tracked by Adobe (unlike this user-to-user forum) and the more people that ask for something, the more likely it is to be implemented.

  • Keyboard shortcut for the Document Folder in file open/save dialog

    Does anyone know if there exists a keyboard shortcut for Document Folder in the File Save/Open Dialog? <command><shift>O works in the Finder. I tried variations of that in the dialog and didn't find any. <command>D takes you to the desktop. I tried other variations surrounding that to get to the Document Folder and didn't find any.
    Anyone? Bueller?

    There isn't.
    (56302)

  • Monitor Dead - Keyboard shortcuts to Share Files

    Hello,
    I'm a new member to the forums, but I have had my Ibook for almost 4 years now. 3 days ago the screen began flickering and finally is completely dead. I tried using an external monitor but that doesn't work either. I have a small network at home and I'd like to get my files off of the Ibook before taking it in for repairs but I didn't have the "Window Sharing" option turned on in System Prefferences. Does anyone know if there are keyboard shortcuts I could enter (since I can't see the screen) to get to system prefferences, select "sharing" and turn on the Windows file sharing or the remote login options?
    Any help would be greatly appreciated!
    Aside:
    I knew for a while that older Ibooks had these problems but mine performed well for the longest time. I guess it's just it's time to die, although 4 years seems awefully short to me. I only took it on trips, outside of the office very infrequently. (My old compaq laptop from 1996 still works well!)

    If you have access to another Mac with FireWire, you may be able to get the iBook to remain responsive in FireWire Target Disk Mode long enough to retrieve your data by this method:
    If the iBook is on, shut it down and wait 30 seconds (or longer). Pick it up in your left palm to the left of the trackpad and squeeze the case there between your palm and left thumb as you push the power button and key combination to start up in FireWire Target Disk Mode. Do not let up the pressure on the case. Continue applying this pressure as you save your data to the other Mac. If you let up and the iBook dies or freezes, you will have to start over, allowing it to rest several hours or overnight before beginning again.
    It took me three days of starts and stops to get my backup before sending my iBook in for its first logic board replacement.
    Good luck!
    (Did you ever think that maybe the Compaq still works because you haven't used it as much as the iBook? I know I don't use a Windows computer as often as a Mac. I have my son's hand-me-down Dell Inspiron 8200 laptop, and I've only turned it on about twice in nearly a year. In my opinion, NO Windows laptop "works well," no matter how "good" it is.)

  • I have a mac book pro with Windows for Mac, I have really been struggling to figure out a keyboard shortcut to switch between 2 excel files can someone suggest a solution please ?

    I have a mac book pro with Windows for Mac, I have really been struggling to figure out a keyboard shortcut to switch between 2 excel files can someone suggest a solution please ?

    someonehelpmaddy wrote:
    My Mac knows that it is connected to the montior...
    Open your Displays system preferences.  Is there an Arrangement tab and does it show two screens?  If no Arrangement tab then your mac does not know it has two screens.  Maybe smc and pram reset will shake it free and maybe not.  Maybe there's something wrong with the connection.  Thunderbolt plugs are similar to mini-displayport plugs so make sure the plug is pushed firmly in so that essentially all the metal part disappears inside the socket.  The plugs can be a little tricky in that you need to make sure the plug is fully seated in their socket.
    If you do see two screens in the Arrangement tab then click Detect Displays and Gather Windows to get the Displays preferences of the other monitor on to your main monitor.  Check the resolution and if there is a refresh rate check that as well.

  • What is the menu title to show original file to map to keyboard shortcut

    Does anyone know what "menu title" to use for File > Show in Finder for a keyboard shortcut?
    I just updated to itunes 10 and discovered my keyboard shortcut CMD-R to show the original file is broken and no longer works. Apparently Apple changed it to CMD-Shift-R. This is no longer consistent with the way CMD-R shows the original file in the Finder or in the search results and I want to set it back using the keyboard shortcut system preferences.
    When I select itunes and put in the menu title "Show in Finder" which is what it displays with CMD-Shift-R it changes in the menu, but it doesn't work and then neither does CMD-Shift-R. quiting and restarting itunes makes no difference.
    Does anyone know of a fix?
    Thanks.

    I tried to do something similar in Firefox for mapping copy to F3. I tried the methods you used even tried a keymapping plugin for Firefox as well as the suggestions below. None of them worked and I could only conclude that some applications have functions coded into them in some ways we cannot change.
    [09/2009 post on key binding|http://discussions.apple.com/message.jspa?messageID=10310796]
    [http://davespicks.com/writing/programming/mackeys.html]
    [Apple developer site key binding information|http://developer.apple.com/documentation/Cocoa/Conceptual/EventOver view/TextDefaultsBindings/chapter9_section2.html]
    [http://xlr8yourmac.com/tips/remapfunctionkeys.html]

Maybe you are looking for

  • Windows is freezing.

    Hi, Windows is freezing on my boot camp setup. It's not a blue screen, the screen just freezes and my only option is to hard reboot the machine. Upon reboot, Windows does not have any crash dumps to report. I already ran a RAM test using mdsched.exe

  • How to remove log file on maxdb

    Hi, I have installed IDES ECC 5.0 on MaxDB 7.5. I have 4 files size of 1 GB and I would like to remove it. Is it possible to remove log files without Complete Data Backup procedure in Database Manager? Is it helpfull to switch database in Overwrite L

  • Do I have to use same computer when I activate my Ipad?

    I'm just wondering that if I have to use same computer that I activated with. My partner's computer is apple and I want to activate my Ipad since it is here and to other stuff at home.... Sorry, I'm so new at this

  • Standard error  list

    Hi all Can you please  help me with  some information  on <b>standard errors list</b> that  occur in MAM, checked with the error handling of MAM 2.5 it only had 1error scenario regards sam

  • Problem with my query

    My relation is : (employee_id int, employee_name varchar(30), employee_job varchar(30), contact_no int, employee_hire_date date, employee_salary int, employee_com_no int, department_no int,primary key (employee_id)) I have to find jobs with highest a