Photoshop CS5 Action Script

I have a script set up currently to convert Icons into different sizes, types, and it uses a 16 bit color pallate that I currently have.  When I automate my batch, say using PNG, the icons come out fine, because the PNG icons don't use the 16 colors.  But as soon as I Automate a batch using my 16 bit color pallate, or 15 +1 JPG/BMP the Icons come out horriable.  They size correctly, but the colors change say from light blue to a grey, or a red to an orange etc, and if the Icon has lettering it is impossible to make out what it says anymore. 
PNG set up is 200x200, 40x40, 30x30, 20x20
JPG/BMP set up is 32x32, 24x24, 16x16
Here's an example I just grabbed this and ran it through the script.  I started with the bottom image a 200x200 PNG, I went into Automate batch, and clicked on the 15+1 option JPG/BMP, and what I ended up with is the 32x32 below that you can't even make out.
Is there something I'm diong incorrectly or, does the problem lie in how many colors I have in my pallete 16 only.

Is there a way to automate the mode (RGB) and resolution of the entire folder?
Thanks for the quick response JJMack!
Currently, when I automate the folder it opens up each file and shows me the opening window options. However, they are all going to be opened at the same resolution and RGB mode. Can I include the opening process in the automated batch file? If so, how?

Similar Messages

  • Photoshop CS5 - Action is not running automatically  while I trying to save PDF to JPG

    My Problem in Photoshop CS5: Action is not running automatically while I trying to save PDF to JPG, in the batch process:
    Followed following steps:
    Opened PDF file
    Created new auction (F2)
    Flatten image
    Save as JPG
    Close file
    To Run Batch:
    Opened Batch dialogue box
    Selected set/action name
    Source: selected as “Folder”
    Directed location using “Choose” button
    And no selected any check boxes under the “Choose” button
    Clicked “OK”
      Now all the PDFs are opened one after another but not execute the selected action. Please help how to resolve for auto run.

    What is part of the Action?
    Could you please post a screenshot with the pertinent Panels visible?
    Have you tried using Image Processor or Image Processor Pro instead of Batch?

  • Edit multiple password-protected PDFs using Photoshop CS5 Javascript scripting.

    Good Evening,
    Situation: I have a huge stack of PDF files and I'm using Photoshop CS5 to slice out previews and other things automatically, using a self-built javascript. Some (100+) of these PDFs are password-protected. I have the password to these files.
    Problem: Every time the script tries to open one of the protected PDFs it will open a popup, stop the whole process and wait for the user to input the password.
    Question: Is there a way to add the password to the open command of the app.open(...) function? Or more simply put, can this be fully automated?
    What I looked at so far: "PDFOpenOptions", "app.open(...)", the javascript reference("photoshop_cs5_javascript_ref.pdf") in general.
    Basic Example code:
    var f = new File("path to some password protected PDF");
    var d = app.open(f); //this will trigger the password popup
    doSomethingWithMyDocument(d);
    d.close(SaveOptions.DONOTSAVECHANGES);
    Any help would be greatly appreciated. I have access to Photoshop CS6 as well, if that somehow solves the problem.
    If I'm looking at a dead-end, feel free to tell me too.

    It is possible to do that via Scripting.
    If you are unable to create such a Script maybe you should look up the chapter »Creating data-driven graphics« in the documentation.

  • Photoshop 6 Action Script

    Hello,
    I have an action script that produces an ebook cover. I used this action script a few months ago several times to create some covers, but recently when I use it on the same computer  it is not working anymore. The computer has adobe photoshop 6.0 software installed.  I get many different errors such as "The object previous document is not available", the command move is not available, the object layer front is not available etc...
    Is there some type of general setting that might have changed in my software that is preventing the action script from working now?  It was just working 3 months ago with no errors.
    Thank you.

    Thank you for your answer.  I realize it is difficult to diagnose without seeing exacts.  The script runs in two steps.  Step 1 it open the flat cover.  Then you edit the text.  Step 2 it then product the ebook cover. 
    This worked perfect just a few months ago.  Now the exact script I run from a few months ago no longer works.  Step 1 is fine, but step 2 gets a bunch of errors I mentioned.
    The mode is set to 8 bit channel. 
    Is there any other setting I could change to possible make this script work?  It just doesn't make sense why it worked a few months ago and now it is not working on the same computer. 
    I am wondering if I changes a setting in photoshop without know or something.
    Thank you.

  • Photoshop CS5 Action Manager Not Responding

    I've been trying to port CS4 panels to CS5. The code below compiles without an error. It runs without throwing a runtime error. However, every call to the action manager causes the code to stop. Comment out the action manager code and everything runs.
    I also notice that the mx.Alert does not open an alert dialog. It causes the same issue. The code stops.
    This code works flawlessly with CS4.
    Any suggestions would be very welcome!
    Mitch
    private function makeLuminosityEdgeMask(maskWidth:int):void { 
    try { 
    var docRef : Document = Photoshop.app.activeDocument;  
    var docRef2 : Document = docRef.duplicate( "Duplicate" ); 
    var docName : String = docRef.name; 
    docRef2.bitsPerChannel = BitsPerChannelType.EIGHT;
    docRef2.flatten();
    docRef2.changeMode(ChangeMode.GRAYSCALE);
    var myArtLayer: ArtLayer = ArtLayer(docRef2.activeLayer); 
    // Blur photo prior to mask generation for wide and medium width masks
    switch (maskWidth) { 
    case maskWidthMediumEdges: myArtLayer.applyGaussianBlur(1.0); break; 
    case maskWidthWideEdges: myArtLayer.applyGaussianBlur(3.0); break; 
    default: break;}
    // Run the Find Edges filter
    var idFndE:Number = Photoshop.app.charIDToTypeID( "FndE" );Photoshop.app.executeAction( idFndE,
    null, DialogModes.NO ); 
    // Invert result of Find Edges filter
    myArtLayer.invert();
    // Apply curves adjustment
    var curvesShape:Array = new Array(new Array(20,0), 
    new Array(60,120), 
    new Array(90,180), 
    new Array(145,225), 
    new Array(255,255));myArtLayer.adjustCurves(curvesShape);
    // Apply maximum filter
    switch (maskWidth) { 
    case maskWidthMediumEdges: myArtLayer.applyMaximum(1.0); break; 
    case maskWidthWideEdges: myArtLayer.applyMaximum(2.0); break; 
    default: break;}
    // Apply median filter
    switch (maskWidth) { 
    case maskWidthMediumEdges: myArtLayer.applyMedianNoise(1.0); break; 
    case maskWidthWideEdges: myArtLayer.applyMedianNoise(2.0); break; 
    default: break;}
    // Apply Gaussian Blur
    switch (maskWidth) { 
    case maskWidthExtraNarrowEdges: myArtLayer.applyGaussianBlur(0.1); break; 
    case maskWidthNarrowEdges: myArtLayer.applyGaussianBlur(0.5); break; 
    case maskWidthMediumEdges: myArtLayer.applyGaussianBlur(1.0); break; 
    case maskWidthWideEdges: myArtLayer.applyGaussianBlur(2.0); break; 
    default: break;}
    // Apply AutoLevels to Mask
    myArtLayer.autoLevels();
    // Duplicate channel and rename
    var channelName:String; 
    switch (maskWidth) { 
    case maskWidthExtraNarrowEdges: channelName = maskLuminosityEdgesExtraNarrow; break;  
    case maskWidthNarrowEdges: channelName = maskLuminosityEdgesNarrow; break; 
    case maskWidthMediumEdges: channelName = maskLuminosityEdgesMedium; break; 
    case maskWidthWideEdges: channelName = maskLuminosityEdgesWide; break;}
    // Duplicate channel to original document
    var idDplc:int = Photoshop.app.charIDToTypeID( "Dplc" ); 
    var desc2:ActionDescriptor = new ActionDescriptor(); 
    var idnull:int = Photoshop.app.charIDToTypeID( "null" ); 
    var ref1:ActionReference = new ActionReference(); 
    var idChnl:int = Photoshop.app.charIDToTypeID( "Chnl" ); 
    var idOrdn:int = Photoshop.app.charIDToTypeID( "Ordn" ); 
    var idTrgt:int = Photoshop.app.charIDToTypeID( "Trgt" );ref1.putEnumerated( idChnl, idOrdn, idTrgt );
    desc2.putReference( idnull, ref1 );
    var idT:int = Photoshop.app.charIDToTypeID( "T " ); 
    var ref2:ActionReference = new ActionReference(); 
    var idDcmn:int = Photoshop.app.charIDToTypeID( "Dcmn" );ref2.putName( idDcmn, docName );
    desc2.putReference( idT, ref2 );
    var idNm:int = Photoshop.app.charIDToTypeID( "Nm " );desc2.putString( idNm, channelName );
    Photoshop.app.executeAction( idDplc, desc2, DialogModes.NO );
    // Close duplicate
    docRef2.close(SaveOptions.DONOTSAVECHANGES);
    // Release RAM;Photoshop.app.purge(PurgeTarget.ALLCACHES);
    // Refresh appPhotoshop.app.refresh();
    // Restore Channels palettedocRef.activeChannels = docRef.componentChannels;
    catch(error:Error) {Alert.show(
    "Error in makeLuminosityEdgeMask(): " + error.message);}

    Here is the code causing a run-time problem: 
    // Run the Find Edges filter
    var idFndE:int = Photoshop.app.charIDToTypeID( "FndE" );Photoshop.app.executeAction( idFndE, undefined, DialogModes.NO );
    The error is "NULL pointer was encountered"
    This code was fine with PatchPanel and Photoshop CS4.
    The second and third parameters are declared in the interface as optional. The second paramter is an optional ActionDescriptor.
    Mitch

  • Photoshop CS5 Actions Error

    When running a favorite action of mine using CS5, I get the error "The Command Name Is Not Currently Available".  Exactly what is missing from CS5 that was there in previous versions?

    There's no way to tell without knowing the exact step in the action that gave you that message. Usually these messages are showing up because the action wasn't tested thoroughly enough with different types of images. For instance, running an action that invokes the Filter Gallery on a 16bits/channel image will give you that error because you cannot use the Filter Gallery in 16bits/channel.

  • Photoshop CS5 and script issue

    i finally found the script that allows u to export layers to file. i was so excited as in my business i have to do this a LOT!!! problem is it FULLY locks EVERY SINGLE layer. can't fix it with the old double click and give it a name. can't add a layer. can't do anything. the layer is now rendered USELESS! great if i'm sending all those layers to a client to look at i guess.
    how to i make it NOT lock or unlock it. i have a deadline tonight and now have 400 layers i have to created one by one before midnight because i thought i was done 2 days ago.
    and thanks for any help because adobe inc help sucks.
    jacque

    It sounds like your using png-8 which would give you files in the index color mode
    and that would be why you can't unlock the layers. You would need to choose
    Image>Mode>RGB to unlock the layers.
    If you want transparent pngs, use png-24. You can also use psd or tiff to maintain transparency.
    MTSTUNER

  • Problem with action script from Schewe and Frasier book.

    I am working on a Photoshop CS3 action script to
    open raw files, do a couple of modifications
    in Camera Raw, exit camera raw and save
    the file as a jpeg.
    I think this should work, because I am working
    on an example out of "Camera raw with Adobe
    Photoshop CS3" by Schewe and Frasier which
    shows the step recorded.
    See page 344 of Schewe and Frasier.
    In figure 9-11 you see, after the open
    statement, 10 lines of details like
    "As camera raw"
    "Model:Canon 350d" etc.
    I get the file path and name line, but
    none of the other details reflecting
    actions in Camera Raw.
    The problem is that in setting up the action, none
    of the steps done in camera raw after I do the
    open get recorded.
    And it works in my old CS version !
    Out of frustration I repeated the action
    script creation in my old CS version and
    it worked fine.
    Any idea where I am screwing up ?

    Crappy format justification:
    I sometimes have a day of family
    type pictures that are in raw format
    that I want to put up on the internet
    quickly. I would like to be able to
    apply the "Auto" feature, as in general
    it seems to be pretty good for something
    quick.
    OK, it sorta works in CS, go here
    http://www.angelplace.net/photos/sample.jpg
    It sets up all of the details and gets the
    "As camera raw" but opens the .dng file
    rather than the Camera raw window.
    The point is, these important settings
    seem to be saved, which does not happen
    in CS3.

  • Cs5 on a new pc transferring actions/scripts/pre-sets etc?

    I have just upgraded computers and re-installed CS5 on it.
    Is it possible to cut and paste actions/scripts/pre-sets etc from old pc to new one.
    If so how/where would I find them?
    Thank you
    Tim

    each program has its own location for its settings.  eg, ps:  http://helpx.adobe.com/photoshop/kb/preference-file-functions-names-locations.html

  • I am using Photoshop CS5 on a new iMac with a wireless keyboard.  I used to be able to hit F11 to perform a custom sharpening action but now the F11 key is the volume control key and I have tried everything to disable or switch the volume key. I have also

    I am using Photoshop CS5 on a new iMac with a wireless keyboard.  I used to be able to hit F11 to perform a custom sharpening action but now the F11 key is the volume control key and I have tried everything to disable or switch the volume key. I have also tried assigning other function keys to initiate the action. Is there a simple solution to this? What am I missing?

    Try unmounting the volume on your iMac using Disk Utility. Then mount it again. You may need to reboot the laptop or relaunch its Finder process (using the Force Quit window) after remounting the drive on your iMac. Remember that no process may be accessing any files on the drive you plan to unmount, or the unmount will fail. Unmounting and remounting an external drive on my iMac made it become visible on my MacBook Pro after it had disappeared.

  • Photoshop CS5.1 Actions Disappeared

    I am using Photoshop CS5.1 on a Mac. When launching Photoshop from Lightroom, I got an unexpected error (don't recall now what it said). Unfortunately, my custom workspace and all of my actions (default and user-defined) are gone. I utilize these actions heavily in my workflow and need them back ASAP. I have a good backup system, but when I click Load Actions from the Actions Palette, the default location [UserName]>Library>Application Support>Adobe>Adobe Photoshop CS5.1>Presets>Actions folder is empty (and backup files of this folder are empty long before I had this problem). Interestingly, my [UserName]>Library>Preferences>Adobe Photoshop CS5.1 Settings file still has an Actions Palette.psp file in it. I have shut down and rebooted many times without success. Any idea what I can do to get these actions back? I’m hoping it’s a matter of pointing Photoshop back to my preferences some how. Any assistance would be greatly appreciated as it would take days I don’t have to recreate all of my custom actions from scratch. Thanks!

    If you have the files on your system backed up you may be okay.  The actions you see in the panel are stored in a file called Actions panel.psp.  It's location is as listed here:
    http://helpx.adobe.com/photoshop/kb/preference-file-functions-names-locations.html
    If you quit Photoshop, recover the prior version of Actions panel.psp via TimeMachine or whatever, then relaunch Photoshop you should see your old actions.
    Good luck.
    -Noel

  • Photoshop CS5.1 crashes using cron script that open application

    Photoshop CS5.1 crashes when trying to launch the application using a cron script. This happens on two different machines running 10.7.3. Photoshop opens without crashing when manually running the bash script. The same script works both manually and as a cronjob on 10.6.8. The cron script:
    open -a "/Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app"
    Any help is appreciated.
    The crash report:
    Process:    
    Adobe Photoshop CS5.1 [1332]
    Path:       
    /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/MacOS/Adobe Photoshop CS5.1
    Identifier: 
    com.adobe.Photoshop
    Version:    
    12.1 (12.1x20110328.r.145] [12.1)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [801]
    Date/Time:  
    2012-02-21 15:04:07.739 -0800
    OS Version: 
    Mac OS X Server 10.7.3 (11D50b)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
    __TEXT            
    0000000100000000-00000001026fc000 [ 39.0M] r-x/rwx SM=COW  /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/MacOS/Adobe Photoshop CS5.1
    Application Specific Information:
    objc[1332]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation 
    0x00007fff919abc12 CFArrayGetCount + 18
    1   com.adobe.Photoshop      
    0x00000001012e11d2 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16797070
    2   com.adobe.Photoshop      
    0x00000001012e146b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16797735
    3   com.adobe.Photoshop      
    0x00000001012e17ec AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16798632
    4   com.apple.Foundation     
    0x00007fff8e59dd32 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 47
    5   com.apple.CoreFoundation 
    0x00007fff919e8aaa _CFXNotificationPost + 2634
    6   com.apple.Foundation     
    0x00007fff8e589fe7 -[NSNotificationCenter postNotificationName:object:userInfo:] + 65
    7   com.apple.AppKit         
    0x00007fff9599b757 -[NSApplication sendEvent:] + 3011
    8   com.adobe.Photoshop      
    0x00000001012e25ce AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16802186
    9   com.adobe.Photoshop      
    0x00000001012e1d81 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16800061
    10  com.apple.AppKit         
    0x00007fff959321f2 -[NSApplication run] + 555
    11  com.adobe.Photoshop      
    0x00000001012e0644 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16794112
    12  com.adobe.Photoshop      
    0x00000001012e10a1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16796765
    13  com.adobe.Photoshop      
    0x0000000100068286 0x100000000 + 426630
    14  com.adobe.Photoshop      
    0x0000000100237199 0x100000000 + 2322841
    15  com.adobe.Photoshop      
    0x0000000100237229 0x100000000 + 2322985
    16  com.adobe.Photoshop      
    0x0000000100002294 0x100000000 + 8852
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff92ce17e6 kevent + 10
    1   libdispatch.dylib        
    0x00007fff8bb835be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib        
    0x00007fff8bb8214e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib   
    0x00007fff92ce1192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff954d5594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff954d6b85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff92ce1192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff954d5594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff954d6b85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.adobe.amt.services   
    0x0000000108724247 C_AMTUISwitchSuppressUpdates + 16439
    3   com.adobe.amt.services   
    0x000000010871d39e C_EULA_SetState + 1742
    4   com.adobe.amt.services   
    0x00000001087242b2 C_AMTUISwitchSuppressUpdates + 16546
    5   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    6   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib   
    0x00007fff92ce1192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff954d5594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff954d6b85 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0e42 __semwait_signal + 10
    1   libsystem_c.dylib        
    0x00007fff95489dea nanosleep + 164
    2   com.adobe.PSAutomate     
    0x0000000113781fdb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate     
    0x0000000113763f13 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate     
    0x00000001137820d6 ScObjects::Thread::go(void*) + 166
    5   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    6   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x0000000114587ced APXGetHostAPI + 2467693
    3   com.adobe.adobeswfl      
    0x000000011433fd09 APXGetHostAPI + 75657
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x0000000114587ced APXGetHostAPI + 2467693
    3   com.adobe.adobeswfl      
    0x000000011433fd09 APXGetHostAPI + 75657
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x0000000114587ced APXGetHostAPI + 2467693
    3   com.adobe.adobeswfl      
    0x000000011433fd09 APXGetHostAPI + 75657
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x0000000114587ced APXGetHostAPI + 2467693
    3   com.adobe.adobeswfl      
    0x000000011433fd09 APXGetHostAPI + 75657
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf67a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff92cded71 mach_msg + 73
    2   com.apple.CoreFoundation 
    0x00007fff919cc6fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation 
    0x00007fff919d4e64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation 
    0x00007fff919d4676 CFRunLoopRunSpecific + 230
    5   com.apple.CoreMediaIO    
    0x00007fff8da78541 CMIO::DAL::RunLoop::OwnThread(void*) + 159
    6   com.apple.CoreMediaIO    
    0x00007fff8da6e6b2 CAPThread::Entry(CAPThread*) + 98
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d72a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x0000000114587cb9 APXGetHostAPI + 2467641
    3   com.adobe.adobeswfl      
    0x00000001145a406c APXGetHostAPI + 2583276
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d72a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x0000000114587cb9 APXGetHostAPI + 2467641
    3   com.adobe.adobeswfl      
    0x00000001147224ed APXGetHostAPI + 4149101
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0d7a __recvfrom + 10
    1   ServiceManager-Launcher.dylib
    0x0000000116caf562 Invoke + 54020
    2   ServiceManager-Launcher.dylib
    0x0000000116cae6bf Invoke + 50273
    3   ServiceManager-Launcher.dylib
    0x0000000116cad706 Invoke + 46248
    4   ServiceManager-Launcher.dylib
    0x0000000116cad761 Invoke + 46339
    5   ServiceManager-Launcher.dylib
    0x0000000116cad7e2 Invoke + 46468
    6   ServiceManager-Launcher.dylib
    0x0000000116ca7eed Invoke + 23695
    7   ServiceManager-Launcher.dylib
    0x0000000116ca8086 Invoke + 24104
    8   ServiceManager-Launcher.dylib
    0x0000000116ca8b0f Invoke + 26801
    9   ServiceManager-Launcher.dylib
    0x0000000116ca8bfd Invoke + 27039
    10  ServiceManager-Launcher.dylib
    0x0000000116cabeff Invoke + 40097
    11  ServiceManager-Launcher.dylib
    0x0000000116cac1a5 Invoke + 40775
    12  ServiceManager-Launcher.dylib
    0x0000000116cac764 Invoke + 42246
    13  ServiceManager-Launcher.dylib
    0x0000000116cac951 Invoke + 42739
    14  ServiceManager-Launcher.dylib
    0x0000000116c9e67f Login + 1773
    15  ServiceManager-Launcher.dylib
    0x0000000116c9fd01 Login + 7535
    16  ServiceManager-Launcher.dylib
    0x0000000116cace88 Invoke + 44074
    17  ServiceManager-Launcher.dylib
    0x0000000116caf2a1 Invoke + 53315
    18  libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    19  libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x00007fff92cdf67a  rdx: 0x0000000000000024
      rdi: 0x0000000000000000  rsi: 0x0000000000000003  rbp: 0x00007fff5fbff080  rsp: 0x00007fff5fbff070
       r8: 0x0000000000003103   r9: 0x0000000000000000  r10: 0x000000000000002c  r11: 0x0000000000000206
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x00007fff5fbff120
      rip: 0x00007fff919abc12  rfl: 0x0000000000010246  cr2: 0x0000000000000000
    Logical CPU: 0
    Binary Images:
    0x100000000 -   
    0x1026fbfff +com.adobe.Photoshop (12.1 - 12.1x20110328.r.145] [12.1) <568CD2C0-8B76-63A9-A42A-B3D943DD7362> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/MacOS/Adobe Photoshop CS5.1
    0x1032f4000 -   
    0x10336cfef +com.adobe.adobe_caps (adobe_caps 4.0.42.0 - 4.0.42.0) <7AAC7875-787B-A4BA-F319-2B4425511ED4> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x103378000 -   
    0x10337ffff  org.twain.dsm (1.9.4 - 1.9.4) <466A5B1D-F91A-30D7-93E0-B29B9B8F8F0E> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x103387000 -   
    0x103398ff8 +com.adobe.ahclientframework (1.6.0.20 - 1.6.0.20) <AD464E16-20D1-A4FC-878D-CF44322F72BC> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0x1033a5000 -   
    0x1033abfff  com.apple.agl (3.1.4 - AGL-3.1.4) <58F15993-D441-3146-9F3F-E03A061A54E3> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x1033b2000 -   
    0x1035b8fef +com.adobe.linguistic.LinguisticManager (5.0.0 - 11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x10364b000 -   
    0x1037f9fef +com.adobe.owl (AdobeOwl version 3.0.93 - 3.0.93) <74CF40F6-B216-DB73-5C8F-FC5533220CD9> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x10389b000 -   
    0x103ccbfef +AdobeMPS (??? - ???) <E541F5F1-21BB-D779-1475-B1553950E1B9> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x103e25000 -   
    0x104150ff7 +AdobeAGM (??? - ???) <8FE8A26F-F2C4-128B-ECF9-197279A31D70> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x10421d000 -   
    0x104545fe7 +AdobeCoolType (??? - ???) <D55BD5E5-B430-7701-A11E-0FF989536E57> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x1045dd000 -   
    0x1045feff7 +AdobeBIBUtils (??? - ???) <B37FD8D7-142F-EE1E-4C63-93C1C59B4318> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x10460b000 -   
    0x104636ff6 +AdobeAXE8SharedExpat (??? - ???) <C59B0A11-E89B-F50C-916C-D09F40C1BAA3> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedEx pat
    0x104648000 -   
    0x10478cfef +WRServices (??? - ???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x1047d3000 -   
    0x104838fff +aif_core (??? - ???) <0E7876E5-6465-676D-06DE-D8F44E3663EB> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x104854000 -   
    0x10486afff +data_flow (??? - ???) <A0C1FB2F-4EB4-7F3E-98E7-82BE18D631B6> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x104882000 -   
    0x104918fff +image_flow (??? - ???) <70C5AE43-18D4-7E41-0BB1-FE9EF1792E6C> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x10498f000 -   
    0x1049adfff +image_runtime (??? - ???) <140A4ED7-DAAA-2E4F-D211-7E2A491CFD5C> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x1049ca000 -   
    0x104bf9fff +aif_ogl (??? - ???) <4E5A4532-CED3-1A19-C852-1C5560F4017A> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x104cd8000 -   
    0x104d6bfff +AdobeOwlCanvas (??? - ???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x104d8b000 -   
    0x1050d4fef +com.adobe.dvaui.framework (dvaui version 5.0.0 - 5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x105264000 -   
    0x1053e6fe7 +com.adobe.dvacore.framework (dvacore version 5.0.0 - 5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x105488000 -   
    0x105800fff +com.adobe.dvaadameve.framework (dvaadameve version 5.0.0 - 5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x10594a000 -   
    0x105a5ffff +AdobeACE (??? - ???) <C544307E-C1E6-FCA8-4D32-2EC0D5820BBD> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x105a84000 -   
    0x105aa0fff +AdobeBIB (??? - ???) <C0E29690-D406-8834-CA1D-0A4252A0946E> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x105aaa000 -   
    0x105b1cff7 +com.adobe.amtlib (amtlib 4.0.0.21 - 4.0.0.21) <E604CBB8-A3F0-69D1-510B-3D8156D37D29> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x105b33000 -   
    0x105c06ffb +AdobeJP2K (??? - ???) <BF2DBEA4-E71A-7112-53CA-8E7D73B1EFE5> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x105c26000 -   
    0x105c2aff8 +com.adobe.ape.shim (adbeape version 3.1.74.12761 - 3.1.74.12761) <09559AEB-61DE-8DE8-4315-BFA0A7D6394B> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x105c2f000 -   
    0x105ca6fff +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5.0 -i 33 [debug] - 64.140949) <ED51DA76-662A-8156-3D42-2146684A60B6> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x105cc7000 -   
    0x105d25ffd +com.adobe.AdobeXMPCore (Adobe XMP Core 5.0 -c 61 - 64.140949) <D02D367B-FF1E-AD63-993C-5CD907CCFCCE> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x105d33000 -   
    0x1061cefff +com.nvidia.cg (2.2.0006 - ???) /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/Cg.framework/Cg
    0x106754000 -   
    0x1067aafeb +com.adobe.headlights.LogSessionFramework (??? - 2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x1067ef000 -   
    0x106814ffe +adobepdfsettings (??? - ???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
    0x10684e000 -   
    0x106853ffd +com.adobe.AdobeCrashReporter (3.0 - 5.5.20101001) <5625AF72-323C-27C5-0094-213D09698D11> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x106857000 -   
    0x1069f4fff +com.adobe.PlugPlug (2.5.0.232 - 2.5.0.232) <09F6FBA4-E768-BDFB-35AE-C7EB8EBA2D1A> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x106aa2000 -   
    0x106b85fff  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <358B5B40-43B2-3F92-9FD3-DAA68806E1FF> /usr/lib/libcrypto.0.9.7.dylib
    0x106bdb000 -   
    0x106bf4feb +libtbb.dylib (??? - ???) /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/libtbb.dylib
    0x106c05000 -   
    0x106c0bfeb +libtbbmalloc.dylib (??? - ???) /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/libtbbmalloc.dylib
    0x106c12000 -   
    0x106c12fff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <C23BF0A1-7E6D-35EF-85FE-651EE2C13D53> /usr/lib/libmx.A.dylib
    0x106c15000 -   
    0x106c1dff3 +com.adobe.boost_threads.framework (boost_threads version 5.0.0 - 5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x106fc9000 -   
    0x106fcbfff  com.apple.textencoding.unicode (2.4 - 2.4) <FD4695F4-6110-36C6-AC06-86453E30FF6E> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x1084ec000 -   
    0x1084fbff7  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <D30A4333-0953-394D-BB26-739937ED0BD8> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x108700000 -   
    0x108774ff3 +com.adobe.amt.services (AMTServices 4.0.0.21 [BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00] - 4.0.0.21) <1B6C37A0-570C-14D0-52A3-87C835F530BB> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
    0x108791000 -   
    0x1087acfff  libJapaneseConverter.dylib (54.0.0 - compatibility 1.0.0) <59FCE9C0-27E6-34CE-89E5-3A83B843B36C> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x1087b1000 -   
    0x1087d2fff  libKoreanConverter.dylib (54.0.0 - compatibility 1.0.0) <25FF31F5-9D1E-35EB-8085-F0AC25C38DAC> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x1087d6000 -   
    0x1087e8ff7  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <66A3625A-6918-3C14-8DF3-2F4924C389EA> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1087ec000 -   
    0x1087edff7  libCyrillicConverter.dylib (54.0.0 - compatibility 1.0.0) <C8D0607A-A668-36EE-AF03-866BD04B5611> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0x1087f1000 -   
    0x1087f9fff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
    0x10ba3b000 -   
    0x10ba42fff +Enable Async IO (??? - ???) <9AE049A5-F53E-657B-D0AE-01C42D817A19> /Applications/Adobe Photoshop CS5.1/*/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
    0x10bff0000 -   
    0x10bff8ffe +ScriptingListener (12.1 - 12.1) <CA77642E-943B-02F2-140E-DD95022E8C22> /Applications/Adobe Photoshop CS5.1/*/ScriptingListener.plugin/Contents/MacOS/ScriptingListener
    0x10d52d000 -   
    0x10d536fff +FastCore (??? - ???) <1565E455-4A86-A3BD-113F-CD828F2C5150> /Applications/Adobe Photoshop CS5.1/*/FastCore.plugin/Contents/MacOS/FastCore
    0x10ecc9000 -   
    0x10ed2cff3 +MMXCore (??? - ???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5.1/*/MMXCore.plugin/Contents/MacOS/MMXCore
    0x10edb4000 -   
    0x10ee1fff0 +MultiProcessor Support (??? - ???) <4FEA98F6-A072-F0BF-0E30-BEFDBD623611> /Applications/Adobe Photoshop CS5.1/*/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x1106f4000 -   
    0x1106f8fff  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <D4D40031-05D5-3D8B-A9A5-490D9483E188> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
    0x1108f5000 -   
    0x1108fbfff  com.apple.audio.AppleHDAHALPlugIn (2.1.7 - 2.1.7f9) <CA4B5CB4-6F02-396A-B7CA-C9DE876544CD> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x111b1b000 -   
    0x111b49ff7  GLRendererFloat (??? - ???) <0C213C61-C08C-3B5D-85A4-EB4660AF55BF> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x111bc8000 -   
    0x111be8ff7 +com.adobe.ape (adbeapecore version 3.1.74.12761 - 3.1.74.12761) <48D74CFC-E9C7-143A-F971-2C7F0ACF7602> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
    0x113369000 -   
    0x113385ff7 +MeasurementCore (??? - ???) <1BE124EE-A88B-8F47-B9E1-1E276FA54327> /Applications/Adobe Photoshop CS5.1/*/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
    0x113600000 -   
    0x11385cfef +com.adobe.PSAutomate (12.1 - 12.1) <951D5D57-776F-5A95-24A0-D70623A9902F> /Applications/Adobe Photoshop CS5.1/*/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
    0x113a7a000 -   
    0x113b1effb +com.adobe.AdobeExtendScript (ExtendScript 4.1.28 - 4.1.28.12764) <C53B3FBF-7530-1DAF-66E7-C2E50F25A6DE> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x113b83000 -   
    0x113c23fef +com.adobe.AdobeScCore (ScCore 4.1.28 - 4.1.28.12764) <2A61AEB9-8E9D-8136-9B6F-B4394D6AB7AE> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x114300000 -   
    0x11516aff3 +com.adobe.adobeswfl (??? - 2.0.0.11360) <39C5D47B-EB0F-9FE5-ABA7-7D925DB9C036> /Library/Application Support/Adobe/*/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/AdobeSWFL
    0x116c50000 -   
    0x116c8dfeb +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 2.0.0.15 - 2.0.0.15) <188E3565-26D6-6A54-01E2-1BBBF73AE24E> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/updaternotifications.framework/Versions/a/UpdaterNotificati ons
    0x116c9c000 -   
    0x116cc4fef +ServiceManager-Launcher.dylib (236.0.0 - compatibility 2.5.0) <DBEE8529-7074-635B-2CAD-DF7BA597D909> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
    0x117900000 -   
    0x117a99fff  GLEngine (??? - ???) <8BA26192-A4D7-362D-8B57-5FCF4B706A25> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x117acd000 -   
    0x117bc6fff  libGLProgrammability.dylib (??? - ???) <B7710703-8652-36B8-83DD-4F216FAF0730> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x117bec000 -   
    0x117ff7ff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (7.18.11 - 7.1.8) <B3612412-7530-3FB9-AF32-C9433755CC76> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/MacOS/AppleIn telHD3000GraphicsGLDriver
    0x7fff6171f000 -
    0x7fff61753baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
    0x7fff8b0a8000 -
    0x7fff8b0b2ff7  liblaunch.dylib (392.35.0 - compatibility 1.0.0) <8F8BB206-CECA-33A5-A105-4A01C3ED5D23> /usr/lib/system/liblaunch.dylib
    0x7fff8b0b3000 -
    0x7fff8b0dbff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8baef000 -
    0x7fff8baf4fff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8baf5000 -
    0x7fff8bb2afff  libTrueTypeScaler.dylib (??? - ???) <5AB9A51C-AD6B-3E02-B9A6-7B1447CF6134> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff8bb2b000 -
    0x7fff8bb7fff7  com.apple.ImageCaptureCore (3.0.2 - 3.0.2) <68147E63-C211-361E-8B24-B5E0675B4297> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff8bb80000 -
    0x7fff8bb8efff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    0x7fff8bb8f000 -
    0x7fff8bb95fff  IOSurface (??? - ???) <03F95CAC-569C-3573-B3D7-2D211B8BDC56> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8bc2f000 -
    0x7fff8bc4cff7  com.apple.openscripting (1.3.3 - ???) <4FACC89E-FDAA-3CA5-B5CD-1F4EEAEDF7CF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x7fff8bc4d000 -
    0x7fff8bce7ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x7fff8bf7e000 -
    0x7fff8bf7efff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8bf7f000 -
    0x7fff8bf95ff7  com.apple.ImageCapture (7.0 - 7.0) <F15FC6FB-9E88-3BE9-BABE-0454D3A502A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x7fff8bf96000 -
    0x7fff8bfd5ff7  libGLImage.dylib (??? - ???) <348729DC-BC44-3744-B249-9DFA6498344A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff8bfd6000 -
    0x7fff8bfd6fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/App

    Well, it's crashing in Apple code while trying to parse information returned from the OS.
    Looks like it's in response to an activation request, and we're trying to get a list of the active windows - but the OS can't parse the values it just returned without error. Nice.
    All I can do is try to add some safety around those calls in the next version of Photoshop.
    If we can get a reproduceable case, then we can write up a bug for Apple.

  • CS Extension, Script UI and events not firing in Photoshop CS5

    Hi!
    I'm a bit confused with two technologies dealing with SWF panels. There was a technique in the previous versions of Photoshop when SWF content has been loaded into a ScriptUI Window. Is it changed? Or does it still work together with CS Extension extensions?
    I have a script that creates ScriptUI Window and then loads an SWF into it. It has a custom 'mousemove' event listener that helped to move this window around the screen. Now - in the new Photoshop CS5 (I tried 12.0.1 as well) - it seems like the 'mousemove' event is not fired for ScriptUI windows containing SWFs.
    I'm not sure, maybe it has something to do with the new SWF treament in CS5?
    If I'm wrong, then I'm sorry, if this question doesn't fall into this forum's area of expertise.
    Thank you!

    10x,
    You saved my ***!
    It actually has to include both the PHSP "AND" the PHXS host names for it to work - this is stupid!
    If I only use PHXS the extension manager is not able to install the extension, saying it cannot find a host that matches the manifest (even though my photoshop IS the extended variation, so in a sense it's more acurate manifest-wise), and if I only use the PHSP, it IS loaded but doesn't appear in the application!
    AND THERE IS NO DOCUMENTATION ON THIS PHENOMENON ANYWHERE!
    THIS IS BEYOND IRRESPONSIBLE!
    Thank you very much david, but please, as you are an adobe employee, get this message to the right people, if you can.
    I know the corporate agenda would probabely be the incentivise people to register to the 1500$ program to get the extension-builder, by keeping the alternative inconvenient, but this issue is beyond inconvenient, it's border-line cruelty!

  • How can I extract cursor coordinate in Adobe Photoshop for use in Action script?

    What I want to do in Photoshop (version CC, but I think this applies to any version) is label a point using count tool under my mouse's current position, and label it multiple times (for different labels). I have an action that essentially does this:
    (1) Add to count (under one label) (2) Switch to second label (3) Add to count (under second label) (4) Switch to third label (5) Add to count (under third label)
    And the problem is that I need to be able to have a variable in the action script that uses the cursor's current position (X and Y numbers) on the canvas to set these three points when the macro is activated. Currently I am only able to record the script using constant X, Y values (the same point is labeled over and over when I play the recorded action). I am able to extract the code for the action for editing (via xbytor2's suggestion in this forum:https://forums.adobe.com/thread/696989) and I see where the variable can go, I just don't know what exactly to put in place of the constant X, Y values that will let Photoshop input the mouse's current coordinates...
    Any ideas? Much appreciated!!

    You could use the pen tool set to path and create a single dot, then run the script to get the cursor positions and use that in your script.
    var strtRulerUnits = app.preferences.rulerUnits;
    var strtTypeUnits = app.preferences.typeUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    app.preferences.typeUnits = TypeUnits.PIXELS;
    var doc = activeDocument;
    var workPath = doc.pathItems.getByName("Work Path");
    var pos = workPath.subPathItems[0].pathPoints[0].leftDirection;
    $.writeln("x = " + pos[0] + " y = " + pos[1]);
    doc.pathItems.getByName("Work Path").remove();
    app.preferences.rulerUnits = strtRulerUnits;
    app.preferences.typeUnits = strtTypeUnits;

  • Can you run Action Scripts with Adobe Photoshop Elements 8?

    I have Photoshop Elements 5 and i cant find the 'Action' tab. Im considering buying Elements 8 but ONLY if i know for sure if i can use action scripts with it.
    Message was edited by: Jochem van Dieten

    Elements does not include Photoshop's Actions Palette function.  You can get an add on for elements that will is able to Play some Photoshop Actions in Elements. Not all Photoshop Actions actions can be played for some action use Photoshop features that are not in Elements like Photoshop Scripting. http://help.adobe.com/en_US/PhotoshopElements/8.0/Win/Using/WS961FF412-5006-4364-B315-1576 62B1F7E9.html
    http://hiddenelements.com/
    http://www.photokaboom.com/photography/learn/Photoshop_Elements/actions/1_actions.htm

Maybe you are looking for