Save and open with applet?

Hi,
This is a quite urgent problem....
I have uploaded an applet onto my web page. It takes an image as input, embosses it and displays it.
At the moment the input is a text field that takes a url.
I want to create an upload or open file button as well, so that it is possible to input an image that is stored on the users computer. In addition I need a save function to save the altered image. Can I use the JFileChooser???
Is this possible using an applet, and if it is - where can I find some more information about this?
Thanks in advance!!!

Hi, as dgriffiths-leics-gov-uk said, you have to sign your applet, check the Jar files, and signing applets tutorials at java's site, or else the following URL:
[http://forum.java.sun.com/thread.jsp?forum=54&thread=383859]
...there was a posted message which I replied with all the process condensed to sign and add permissions to an applet, including the use and creation of the Jar file, its way to be signed; and, the HTML code you shall use. That way you can use
JFileChooser class and its methods in your class; therefore, the File Choosing dialog will be shown and you'll be able to Open and Save user files.

Similar Messages

  • Mavericks wont save and open with my preferred desktop image

    After installing Mavericks my iMac opens with the "rolling surf" desktop. I can then start my preferred desktop from a saved 'photo but when I retsart the iMAc it reverts to "rolling surf". How can I get it to remeber to open with MY choice rather than Apple's?

    Hi, as dgriffiths-leics-gov-uk said, you have to sign your applet, check the Jar files, and signing applets tutorials at java's site, or else the following URL:
    [http://forum.java.sun.com/thread.jsp?forum=54&thread=383859]
    ...there was a posted message which I replied with all the process condensed to sign and add permissions to an applet, including the use and creation of the Jar file, its way to be signed; and, the HTML code you shall use. That way you can use
    JFileChooser class and its methods in your class; therefore, the File Choosing dialog will be shown and you'll be able to Open and Save user files.

  • Auto Save and Open

    I am using Windows 7 with Adobe Reader XI. I'm building a website that has help documents that I would like to Auto save and open with Adobe Reader XI. I am unsure if this is a user feature or a publisher feature. I want to have these documents auto open and run in Internet Explorer 11 specifically. I've tried to add the site as a trusted site and just about all the other steps.
    Thank you for your help!

    Depending on the IE configuration, clicking on a PDF link will either
    save the PDF to a temp folder, then open it in the Adobe Reader add-on
    save the PDF to a temp folder, then open it in the Adobe Reader application

  • Open report with "Save as" and "Open with" dialogue

    Hi,
    I'm using jasper reports within my application. I manage to open them in a new window but in that case the url containing JasperServer username and password is shown. I would like to open the report without showing the url.
    I tryed using a database procedure (http://sqlcur.blogspot.com/2009/02/jasperreports-in-apex.html) but all I get is a alert window saying "file does not begin with ' pdf-'". Couldn't see what is the problem (I used the same procedure as Ino has in his example) so I thought of another way. Is it possible, when someone clicks a button to open a report, to open that report with a "Save as" and "Open with" pop up window?
    The javascript function that I use:
    <script language="JavaScript" type="text/javascript">
    function openLAPopUpJasper(url){
    w = open(url,"winLov","toolbar=false,menubar=false,location=false,resizable=yes, //scrollbars=yes,status=yes,fullscreen=true");
    if (w.opener == null)
    w.opener = self;
    w.focus();
    </script>
    Thanks in advance!
    Edited by: Josip on Oct 29, 2009 2:55 AM

    Anyone?

  • How to pop up "save" and "open" window - Help with construct xml

    In my report there is a column link which is pointing to another HTML page that has xml data displayed in a textarea field. So when user clicks on the column link, he gets to directed to the page that have the xml data in text format.
    My question is, how can i make the xml data display as a file, so when the user clicks on the column link, a window with "save" and "open" will pop up so the user can save the xml data as a file?
    Has anyone done something similar like this? any help is appreciated!
    Regards,
    gina
    Message was edited by:
    gina

    Thank you Tine, I tried to use the 'Export XML' report template and tried to do the following query:
    SELECT XMLElement("oai_dc:dc",
    XMLAttributes('http://www.openarchives.org/OAI/2.0/oai_dc/' AS "xmlns:oai_dc",
                        'http://purl.org/dc/elements/1.1/' AS "xmlns:dc",
    'http://www.w3.org/2001/XMLSchema-instance' AS "xmlns:xsi",
    'http://www.loc.gov/mods/v3' AS "xmlns:mods"
    XMLForest(
    dctitle AS "dc:title",
    dccreator AS "dc:creator",
    dcsubject AS "dc:subject",
    dcdescription AS "dc:description",
    dccontributor AS "dc:contributor",
    dcdiscovery AS "dc:discovery",
    dctype AS "dc:type",
    dcformat AS "dc:format",
    LOWER('ksl:posters-' || dcidentifier) AS "dc:identifier",
    dcsource AS "dc:source",
    dclanguage AS "dc:language",
    dcrelation AS "dc:relation",
    dccoverage AS "dc:coverage",
    dcrights AS "dc:rights")) AS "RESULT"
    FROM table_name
    and here is what returned in the “save as" file:
    <?xml version="1.0" encoding="utf-8" ?>
    - <XMLREPORTREGION>
    - <ROW ROWNUM="1">
    <RESULT>[datatype]</RESULT>
    </ROW>
    </XMLREPORTREGION>
    How can i construct the query so that it returns the data in xml format like the following?:
    oai_dc:dc xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
    <dc:title>Rose</dc:title>
    <dc:creator>Smith Black</dc:creator>
    <dc:contributor>Smith Black</dc:contributor>
    <dc:type>Stencil</dc:type>
    <dc:format>image/tiff</dc:format>
    <dc:format>image/jp2</dc:format>
    <dc:description>13 3/4" X 9 1/2"</dc:description>
    <dc:relation>Some collection</dc:relation>
    <dc:date>1987</dc:date>
    <dc:subject type="LCSH">Art Project</dc:subject>
    <dc:subject type="LCSH">........</dc:subject>
    <dc:subject type="LCSH">.........</dc:subject>
    <dc:language>eng</dc:language>
    <dc:rights>......<dc:rights>
    <dc:identifier>.....</dc:identifier>
    </oai_dc:dc>
    I don't know much about xml, any help would be really appreciated.
    Thanks,
    gina
    Message was edited by:
    gina

  • Can I save and open an attachemnt at the same time?

    I want to be able to open an email with an attachement or attachments and click on the save button for the attachment(s), designate the location (folder) where they are to be saved - but also tell Mail to save the attachments then open them up on the desktop. Two operations in one. If you understand my request you understand what you have to do now - two separate steps. Save. Then find the saved files and open them.
    OR
    Open the attachment from the email which then downloads the file to your designated "all-purpose" location (not the ultimate location you'd want to save it). Then once you've seen it, you do the save thing with the original mail attachment and then have to go back and delete the file from the designated all-purpose download location.
    This latter problem of having to delete unedited downloads manually could be solved with an option in Mail preferences to automatically delete unedited downloads in the "all-purpose" location after that same attachment had been downloaded to another specific location on your hard drive. This option for deleting unedited downloads does not exist, however.
    But even if this step-saver option existed in the preferences, you still would not be able to tell your Mac to save a particular Mail email attachment to a particular folder AND open that attachment at the same time in one command.
    That's what I want.
    Maybe I want both. Save and open together plus the ability to automatically delete unedited attachment downloads in the "all-purpose" download file after the same attachment has been downloaded to another specific location on your hard drive.

    with IOS 6 yes you will be able to do that

  • PS CS 4 crashing on save and open.

    New company, new machine, new problems.
    IT says to open a ticket.
    Photoshop CS4 keeps crashing on save and open file.  I have reset the prefs.  Restarted, etc.
    Here's what I have:
    Mac Pro 3.2GHz Quad-Core Intel Xeon
    10 GB 1066 MHz DDR3
    OS X 10.6.8
    Here is my crash report:
    Process:         Adobe Photoshop CS4 [7605]
    Path:            /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    Identifier:      com.adobe.Photoshop
    Version:         11.0.2 (11.0.2x20100519 [20100519.r.592 2010/05/19:02:00:00 cutoff; r branch]) (11.0.2)
    Code Type:       X86 (Native)
    Parent Process:  launchd [116]
    Date/Time:       2011-11-09 12:00:34.668 -0600
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          251499 sec
    Crashes Since Last Report:           10
    Per-App Interval Since Last Report:  234192 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      0A17AC2E-36EB-4E6B-93D9-44826DC5C808
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000bca2e0a8
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   ???                                     0xe4e50973 0 + 3840215411
    1   com.apple.HIToolbox                     0x96cfa646 ThemeTextCreate(void const*, THIThemeTextInfo const*) + 33
    2   com.apple.HIToolbox                     0x96cfa23d DataEngine::GetTextDimensions(void const*, float, HIThemeTextInfo*, float*, float*, float*) + 279
    3   com.apple.HIToolbox                     0x96cfa0eb HIThemeGetTextDimensions + 188
    4   com.apple.HIToolbox                     0x96e2f6e8 HIPushButton::GetTextSize(__CFString const*, HIThemeTextInfo*) + 86
    5   com.apple.HIToolbox                     0x96e30ee1 HIPushButton::DrawButtonContents(CGRect const&, HIThemeTextInfo*, CGContext*, bool) + 1171
    6   com.apple.HIToolbox                     0x96e3118c HIPushButton::DrawSelf(short, __HIShape const*, CGContext*) + 556
    7   com.apple.HIToolbox                     0x96d1f0a8 HIView::DrawCacheOrSelf(short, __HIShape const*, CGContext*) + 348
    8   com.apple.HIToolbox                     0x96d1edb4 HIView::SendDraw(short, OpaqueGrafPtr*, __HIShape const*, CGContext*) + 106
    9   com.apple.HIToolbox                     0x96dd94c3 HIView::RecursiveDrawNonComposited(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned char, unsigned char, unsigned char) + 627
    10  com.apple.HIToolbox                     0x96dd9729 HIView::DrawNonComposited(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned long) + 293
    11  com.apple.HIToolbox                     0x96d1d52c HIView::Draw(short, OpaqueGrafPtr*, unsigned long) + 154
    12  com.apple.HIToolbox                     0x96dce411 Draw1Control + 80
    13  com.apple.HIToolbox                     0x96e97ee3 InitializeItem(_DialogRec*, short, DITLItem*, long) + 569
    14  com.apple.HIToolbox                     0x96e991fb ForEachDialogItem(_DialogRec*, unsigned char (*)(_DialogRec*, short, DITLItem*, long), long) + 63
    15  com.apple.HIToolbox                     0x96e9712d NewDialogCommon(_DialogRec*, char**) + 210
    16  com.apple.HIToolbox                     0x96e976a0 NewFeaturesDialog + 244
    17  com.apple.HIToolbox                     0x96e97835 CreateDialog(Rect const*, unsigned char const*, unsigned char, short, OpaqueWindowPtr*, unsigned char, long, char**, ColorTable**, char**, char**, unsigned long, unsigned char, AutoPositionInfo) + 167
    18  com.apple.HIToolbox                     0x96e97c89 GetNewDialog + 571
    19  com.adobe.Photoshop                     0x0007b042 0x1000 + 499778
    20  com.adobe.Photoshop                     0x0007b7ed 0x1000 + 501741
    21  com.adobe.Photoshop                     0x000dd405 0x1000 + 902149
    22  com.adobe.Photoshop                     0x000dd807 0x1000 + 903175
    23  com.adobe.Photoshop                     0x0007d8c7 0x1000 + 510151
    24  com.adobe.Photoshop                     0x00063d3e 0x1000 + 404798
    25  com.adobe.Photoshop                     0x00063dd3 0x1000 + 404947
    26  com.adobe.Photoshop                     0x0006212f 0x1000 + 397615
    27  com.adobe.Photoshop                     0x002205da 0x1000 + 2225626
    28  com.adobe.Photoshop                     0x00220666 0x1000 + 2225766
    29  com.adobe.Photoshop                     0x00003812 0x1000 + 10258
    30  com.adobe.Photoshop                     0x00003739 0x1000 + 10041
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x9538a382 kevent + 10
    1   libSystem.B.dylib                       0x9538aa9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x95389f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x95389cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x95389781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x953895c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x95363b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x953916f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x953da05f pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x0af20552 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services                  0x0af1b995 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 115
    5   com.adobe.amt.services                  0x0af205b0 AMTThread::Worker(void*) + 20
    6   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    7   libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x95363b4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x977f8942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support                  0x34faceff 0x34f7d000 + 196351
    3   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    5   libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x95363b4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x977f8942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support                  0x34faceff 0x34f7d000 + 196351
    3   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    5   libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x95363b4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x977f8942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support                  0x34faceff 0x34f7d000 + 196351
    3   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    5   libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x95363b4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x977f8942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support                  0x34faceff 0x34f7d000 + 196351
    3   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    5   libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x95363b4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x977f8942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support                  0x34faceff 0x34f7d000 + 196351
    3   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    5   libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x95363b4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x977f8942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support                  0x34faceff 0x34f7d000 + 196351
    3   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    5   libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x95363b4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x977f8942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support                  0x34faceff 0x34f7d000 + 196351
    3   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    5   libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x95391aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9539175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x953933f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x977fb21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x977e6b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x977e2533 MPWaitOnQueue + 250
    6   AdobeACE                                0x027c038d 0x278f000 + 201613
    7   AdobeACE                                0x027bfd85 0x278f000 + 200069
    8   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    10  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x95391aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9539175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x953933f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x977fb21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x977e6b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x977e2533 MPWaitOnQueue + 250
    6   AdobeACE                                0x027c038d 0x278f000 + 201613
    7   AdobeACE                                0x027bfd85 0x278f000 + 200069
    8   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    10  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x95391aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9539175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x953933f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x977fb21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x977e6b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x977e2533 MPWaitOnQueue + 250
    6   AdobeACE                                0x027c038d 0x278f000 + 201613
    7   AdobeACE                                0x027bfd85 0x278f000 + 200069
    8   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    10  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x95391aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9539175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x953933f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x977fb21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x977e6b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x977e2533 MPWaitOnQueue + 250
    6   AdobeACE                                0x027c038d 0x278f000 + 201613
    7   AdobeACE                                0x027bfd85 0x278f000 + 200069
    8   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    10  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x95391aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9539175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x953933f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x977fb21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x977e6b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x977e2533 MPWaitOnQueue + 250
    6   AdobeACE                                0x027c038d 0x278f000 + 201613
    7   AdobeACE                                0x027bfd85 0x278f000 + 200069
    8   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    10  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x95391aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9539175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x953933f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x977fb21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x977e6b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x977e2533 MPWaitOnQueue + 250
    6   AdobeACE                                0x027c038d 0x278f000 + 201613
    7   AdobeACE                                0x027bfd85 0x278f000 + 200069
    8   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    10  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x95391aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9539175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x953933f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x977fb21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x977e6b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x977e2533 MPWaitOnQueue + 250
    6   AdobeACE                                0x027c038d 0x278f000 + 201613
    7   AdobeACE                                0x027bfd85 0x278f000 + 200069
    8   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    10  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x95363c0e mach_wait_until + 10
    1   libSystem.B.dylib                       0x953eb429 nanosleep + 345
    2   com.adobe.PSAutomate                    0x390381b1 ScObjects::Thread::sleep(unsigned int) + 143
    3   com.adobe.PSAutomate                    0x39038211 ScObjects::Thread::wait(unsigned int) + 23
    4   com.adobe.PSAutomate                    0x39028dc6 ScObjects::BridgeTalkThread::run() + 332
    5   com.adobe.PSAutomate                    0x390384d3 ScObjects::Thread::go(void*) + 239
    6   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    7   libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 18:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x95382ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x9aa58c53 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    3   libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                       0x95391aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9539175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x953933f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x977fb21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x977e6b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x977e2533 MPWaitOnQueue + 250
    6   com.adobe.CameraRaw                     0x32cea8b8 0x32b00000 + 2009272
    7   com.adobe.CameraRaw                     0x32cea1b6 0x32b00000 + 2007478
    8   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    10  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x95391aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9539175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x953933f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x977fb21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x977e6b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x977e2533 MPWaitOnQueue + 250
    6   com.adobe.CameraRaw                     0x32cea8b8 0x32b00000 + 2009272
    7   com.adobe.CameraRaw                     0x32cea1b6 0x32b00000 + 2007478
    8   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    10  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                       0x95391aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9539175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x953933f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x977fb21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x977e6b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x977e2533 MPWaitOnQueue + 250
    6   com.adobe.CameraRaw                     0x32cea8b8 0x32b00000 + 2009272
    7   com.adobe.CameraRaw                     0x32cea1b6 0x32b00000 + 2007478
    8   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    10  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 22:
    0   libSystem.B.dylib                       0x95391aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9539175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x953933f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x977fb21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x977e6b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x977e2533 MPWaitOnQueue + 250
    6   com.adobe.CameraRaw                     0x32cea8b8 0x32b00000 + 2009272
    7   com.adobe.CameraRaw                     0x32cea1b6 0x32b00000 + 2007478
    8   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    10  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 23:
    0   libSystem.B.dylib                       0x95391aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9539175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x953933f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x977fb21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x977e6b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x977e2533 MPWaitOnQueue + 250
    6   com.adobe.CameraRaw                     0x32cea8b8 0x32b00000 + 2009272
    7   com.adobe.CameraRaw                     0x32cea1b6 0x32b00000 + 2007478
    8   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    10  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 24:
    0   libSystem.B.dylib                       0x95391aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9539175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x953933f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x977fb21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x977e6b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x977e2533 MPWaitOnQueue + 250
    6   com.adobe.CameraRaw                     0x32cea8b8 0x32b00000 + 2009272
    7   com.adobe.CameraRaw                     0x32cea1b6 0x32b00000 + 2007478
    8   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    10  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 25:
    0   libSystem.B.dylib                       0x95391aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9539175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x953933f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x977fb21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x977e6b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x977e2533 MPWaitOnQueue + 250
    6   com.adobe.CameraRaw                     0x32cea8b8 0x32b00000 + 2009272
    7   com.adobe.CameraRaw                     0x32cea1b6 0x32b00000 + 2007478
    8   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    10  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 26:
    0   libSystem.B.dylib                       0x95363b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x953916f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x953da05f pthread_cond_wait + 48
    3   com.adobe.CameraRaw                     0x32b45aea 0x32b00000 + 285418
    4   com.adobe.CameraRaw                     0x32e2d2f4 EntryFM + 836980
    5   com.adobe.CameraRaw                     0x32c024a6 0x32b00000 + 1057958
    6   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    7   libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 27:
    0   libSystem.B.dylib                       0x95363b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x953916f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x953da05f pthread_cond_wait + 48
    3   com.adobe.CameraRaw                     0x32b45aea 0x32b00000 + 285418
    4   com.adobe.CameraRaw                     0x32ebd118 EntryFM + 1426328
    5   com.adobe.CameraRaw                     0x32c024a6 0x32b00000 + 1057958
    6   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    7   libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 28:
    0   libSystem.B.dylib                       0x95363b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x953916f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x953da05f pthread_cond_wait + 48
    3   data_flow                               0x03b9f2b2 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   data_flow                               0x03b9265b void boost::condition::do_wait<boost::recursive_mutex>(boost::recursive_mutex&) + 51
    5   data_flow                               0x03b95061 boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks>::execute_task() volatile + 135
    6   data_flow                               0x03b95bba boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> >::run() + 232
    7   data_flow                               0x03b9290b boost::_bi::bind_t<void, boost::_mfi::mf0<void, boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > >, boost::_bi::list1<boost::_bi::value<boost::shared_ptr<boost::threadpool::detail::worker_t hread<boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > > > > >::operator()() + 43
    8   data_flow                               0x03b94fd1 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 79
    9   data_flow                               0x03ba0bc5 thread_proxy + 99
    10  libSystem.B.dylib                       0x95391259 _pthread_start + 345
    11  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 29:
    0   libSystem.B.dylib                       0x95363b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x953916f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x953da05f pthread_cond_wait + 48
    3   data_flow                               0x03b9f2b2 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   data_flow                               0x03b9265b void boost::condition::do_wait<boost::recursive_mutex>(boost::recursive_mutex&) + 51
    5   data_flow                               0x03b95061 boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks>::execute_task() volatile + 135
    6   data_flow                               0x03b95bba boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> >::run() + 232
    7   data_flow                               0x03b9290b boost::_bi::bind_t<void, boost::_mfi::mf0<void, boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > >, boost::_bi::list1<boost::_bi::value<boost::shared_ptr<boost::threadpool::detail::worker_t hread<boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > > > > >::operator()() + 43
    8   data_flow                               0x03b94fd1 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 79
    9   data_flow                               0x03ba0bc5 thread_proxy + 99
    10  libSystem.B.dylib                       0x95391259 _pthread_start + 345
    11  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 30:
    0   libSystem.B.dylib                       0x95363b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x953916f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x953da05f pthread_cond_wait + 48
    3   data_flow                               0x03b9f2b2 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   data_flow                               0x03b9265b void boost::condition::do_wait<boost::recursive_mutex>(boost::recursive_mutex&) + 51
    5   data_flow                               0x03b95061 boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks>::execute_task() volatile + 135
    6   data_flow                               0x03b95bba boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> >::run() + 232
    7   data_flow                               0x03b9290b boost::_bi::bind_t<void, boost::_mfi::mf0<void, boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > >, boost::_bi::list1<boost::_bi::value<boost::shared_ptr<boost::threadpool::detail::worker_t hread<boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > > > > >::operator()() + 43
    8   data_flow                               0x03b94fd1 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 79
    9   data_flow                               0x03ba0bc5 thread_proxy + 99
    10  libSystem.B.dylib                       0x95391259 _pthread_start + 345
    11  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 31:
    0   libSystem.B.dylib                       0x95363b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x953916f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x953da05f pthread_cond_wait + 48
    3   data_flow                               0x03b9f2b2 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   data_flow                               0x03b9265b void boost::condition::do_wait<boost::recursive_mutex>(boost::recursive_mutex&) + 51
    5   data_flow                               0x03b95061 boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks>::execute_task() volatile + 135
    6   data_flow                               0x03b95bba boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> >::run() + 232
    7   data_flow                               0x03b9290b boost::_bi::bind_t<void, boost::_mfi::mf0<void, boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > >, boost::_bi::list1<boost::_bi::value<boost::shared_ptr<boost::threadpool::detail::worker_t hread<boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > > > > >::operator()() + 43
    8   data_flow                               0x03b94fd1 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 79
    9   data_flow                               0x03ba0bc5 thread_proxy + 99
    10  libSystem.B.dylib                       0x95391259 _pthread_start + 345
    11  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 32:
    0   libSystem.B.dylib                       0x95363b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x953916f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x953da05f pthread_cond_wait + 48
    3   data_flow                               0x03b9f2b2 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   data_flow                               0x03b9265b void boost::condition::do_wait<boost::recursive_mutex>(boost::recursive_mutex&) + 51
    5   data_flow                               0x03b95061 boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks>::execute_task() volatile + 135
    6   data_flow                               0x03b95bba boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> >::run() + 232
    7   data_flow                               0x03b9290b boost::_bi::bind_t<void, boost::_mfi::mf0<void, boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > >, boost::_bi::list1<boost::_bi::value<boost::shared_ptr<boost::threadpool::detail::worker_t hread<boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > > > > >::operator()() + 43
    8   data_flow                               0x03b94fd1 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 79
    9   data_flow                               0x03ba0bc5 thread_proxy + 99
    10  libSystem.B.dylib                       0x95391259 _pthread_start + 345
    11  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 33:
    0   libSystem.B.dylib                       0x95363b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x953916f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x953da05f pthread_cond_wait + 48
    3   data_flow                               0x03b9f2b2 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   data_flow                               0x03b9265b void boost::condition::do_wait<boost::recursive_mutex>(boost::recursive_mutex&) + 51
    5   data_flow                               0x03b95061 boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks>::execute_task() volatile + 135
    6   data_flow                               0x03b95bba boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> >::run() + 232
    7   data_flow                               0x03b9290b boost::_bi::bind_t<void, boost::_mfi::mf0<void, boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > >, boost::_bi::list1<boost::_bi::value<boost::shared_ptr<boost::threadpool::detail::worker_t hread<boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > > > > >::operator()() + 43
    8   data_flow                               0x03b94fd1 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 79
    9   data_flow                               0x03ba0bc5 thread_proxy + 99
    10  libSystem.B.dylib                       0x95391259 _pthread_start + 345
    11  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 34:
    0   libSystem.B.dylib                       0x95363b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x953916f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x953da05f pthread_cond_wait + 48
    3   data_flow                               0x03b9f2b2 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   data_flow                               0x03b9265b void boost::condition::do_wait<boost::recursive_mutex>(boost::recursive_mutex&) + 51
    5   data_flow                               0x03b95061 boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks>::execute_task() volatile + 135
    6   data_flow                               0x03b95bba boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> >::run() + 232
    7   data_flow                               0x03b9290b boost::_bi::bind_t<void, boost::_mfi::mf0<void, boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > >, boost::_bi::list1<boost::_bi::value<boost::shared_ptr<boost::threadpool::detail::worker_t hread<boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > > > > >::operator()() + 43
    8   data_flow                               0x03b94fd1 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 79
    9   data_flow                               0x03ba0bc5 thread_proxy + 99
    10  libSystem.B.dylib                       0x95391259 _pthread_start + 345
    11  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 35:
    0   libSystem.B.dylib                       0x95363b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x953916f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x953da05f pthread_cond_wait + 48
    3   data_flow                               0x03b9f2b2 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   data_flow                               0x03b9265b void boost::condition::do_wait<boost::recursive_mutex>(boost::recursive_mutex&) + 51
    5   data_flow                               0x03b95061 boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks>::execute_task() volatile + 135
    6   data_flow                               0x03b95bba boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> >::run() + 232
    7   data_flow                               0x03b9290b boost::_bi::bind_t<void, boost::_mfi::mf0<void, boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > >, boost::_bi::list1<boost::_bi::value<boost::shared_ptr<boost::threadpool::detail::worker_t hread<boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > > > > >::operator()() + 43
    8   data_flow                               0x03b94fd1 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 79
    9   data_flow                               0x03ba0bc5 thread_proxy + 99
    10  libSystem.B.dylib                       0x95391259 _pthread_start + 345
    11  libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 36:
    0   libSystem.B.dylib                       0x95363afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x95364267 mach_msg + 68
    2   com.apple.CoreFoundation                0x9aa192df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x9aa183c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x9aa1e304 CFRunLoopRun + 84
    5   com.apple.DesktopServices               0x94875b3d TSystemNotificationTask::SystemNotificationTaskProc(void*) + 643
    6   ...ple.CoreServices.CarbonCore          0x977c654a PrivateMPEntryPoint + 68
    7   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    8   libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 37:  Dispatch queue: com.apple.quicklook.largeimage
    0   ???                                     0xdb85583a 0 + 3682949178
    1   ???                                     0xffffffff 0 + 4294967295
    2   com.apple.ImageIO.framework             0x99d96f95 ImageProviderCopyImageBlockSetCallback + 174
    3   com.apple.CoreGraphics                  0x97fb652b CGImageProviderCopyImageBlockSet + 228
    4   com.apple.CoreGraphics                  0x97fbad3c img_blocks_create + 348
    5   com.apple.CoreGraphics                  0x97fbabc1 img_blocks_extent + 85
    6   com.apple.CoreGraphics                  0x9801f921 img_interpolate_extent + 163
    7   com.apple.CoreGraphics                  0x97f53a4e img_data_lock + 8882
    8   com.apple.CoreGraphics                  0x97f50b4a CGSImageDataLock + 172
    9   libRIP.A.dylib                          0x96325751 ripc_AcquireImage + 2446
    10  libRIP.A.dylib                          0x963233c6 ripc_DrawImage + 1245
    11  com.apple.CoreGraphics                  0x97f507c4 CGContextDrawImage + 450
    12  com.apple.qldisplay.NSImage             0x2c33bd58 0x2c33a000 + 7512
    13  com.apple.QuickLookFramework            0x91e8bf4f QLCreateImageWithBlock + 80
    14  com.apple.qldisplay.NSImage             0x2c33cc8e 0x2c33a000 + 11406
    15  com.apple.qldisplay.NSImage             0x2c33bcc7 0x2c33a000 + 7367
    16  libSystem.B.dylib                       0x95397a24 _dispatch_call_block_and_release + 16
    17  libSystem.B.dylib                       0x9538a48c _dispatch_queue_drain + 249
    18  libSystem.B.dylib                       0x95389ee8 _dispatch_queue_invoke + 50
    19  libSystem.B.dylib                       0x95389cfe _dispatch_worker_thread2 + 240
    20  libSystem.B.dylib                       0x95389781 _pthread_wqthread + 390
    21  libSystem.B.dylib                       0x953895c6 start_wqthread + 30
    Thread 38:
    0   libSystem.B.dylib                       0x95363b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x953916e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x953c05a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x977e6b90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x977e68ce TSWaitOnSemaphoreCommon + 511
    5   ...ple.CoreServices.CarbonCore          0x977e6564 AsyncFileThread(void*) + 102
    6   libSystem.B.dylib                       0x95391259 _pthread_start + 345
    7   libSystem.B.dylib                       0x953910de thread_start + 34
    Thread 39:
    0   libSystem.B.dylib                       0x95389412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x953899a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x953895c6 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xd0d0d0cf  ebx: 0x96cfa6c4  ecx: 0x00000005  edx: 0x07018c60
      edi: 0x0701af80  esi: 0x74618ae4  ebp: 0xbfffd288  esp: 0xbfffadd0
       ss: 0x00000023  efl: 0x00010282  eip: 0xe4e50973   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xbca2e0a8
    Binary Images:
        0x1000 -  0x19aefdf +com.adobe.Photoshop 11.0.2 (11.0.2x20100519 [20100519.r.592 2010/05/19:02:00:00 cutoff; r branch]) (11.0.2) <40DBAC70-2688-44B1-A8CE-142BF8A18887> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    0x207f000 -  0x2085ff7  org.twain.dsm 1.9.4 (1.9.4) <1EF840DB-CB48-5207-7535-D82EBC0FCD5F> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x208c000 -  0x246601f +com.adobe.linguistic.LinguisticManager 4.0.0 (7863) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x251a000 -  0x2714fcf +AdobeOwl ??? (???) <4CCA2C7B-4896-4DDA-A14B-725FB0C202B5> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x278f000 -  0x289cfff +AdobeACE ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x28ba000 -  0x2c84fef +AdobeMPS ??? (???) <277E01A3-CAC3-4FA9-A591-4BC0A5BC125A> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x2d13000 -  0x2d73fc7 +AdobeXMP ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x2d82000 -  0x307dfff +AdobeAGM ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x313d000 -  0x33d0fe7 +AdobeCoolType ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x3454000 -  0x346dfff +AdobeBIB ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x3477000 -  0x3498ff7 +AdobeBIBUtils ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x34a5000 -  0x34c0ff9 +AdobePDFSettings ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x34da000 -  0x34fef

    Thanks for the reply. I tried each solution on the fonts troubleshooting page you sent.
    It seemed to correct the problem temporarily.
    But I still get crashes when I try to open and save.
    Seems photoshop only crashes when I open a file in column view and it tries to "preview" the file I want to open, if that makes sense.
    I might add, these are fairly large files, 3+GB each.
    I guess I could just take it off column view.
    Thanks.

  • I can't save and open .ai files.

    Hello.
    I can't save and open the file with special character in virtual drive(using communications). -> refer to this.. ( http://software.naver.com/software/summary.nhn?softwareId=MFS_105031 )
    *Special character I used is 黒(not 黑).
    If I rename the file name(黒.ai -> test.ai), the file is opend successfully.
    And when I save the file as "Illustrator ver.8 format", the file is saved well.
    This is the error message I have.
    - open : this file cannot be found.
    - save : The file may be read-only, or another user may have it open. Please save the document with a different name or in a different folder.
    Please answer me~.
    Version :     Illustrator CS5
    OS :            Windows 7 32bits

    Firefox now always stores the old session, and you can access it by going to the History menu and selecting "Restore Previous Session"
    If you want Firefox to display the message to save the session, it can be turned back on by changing some preferences.
    # Type '''about:config''' into the location bar and press enter
    # Accept the warning message that appears, you will be taken to a list of preferences
    # Locate the preference '''browser.tabs.warnOnClose''', if its value is set to '''false''', double-click on it to change its value to '''true'''
    # Repeat this for these 3 preferences '''browser.warnOnQuit''', '''browser.warnOnRestart''' and '''browser.showQuitWarning'''

  • HT4075 I don't have any problems merging the documents by dragging, but when I try to save and open afterwards, only the last shown doc was saved, not the combined files I wanted to merge. I tried save and export, how can I create the file after merging?

    Hi, I'm having trouble saving the documents when merging in Preview. I don't have any problems merging the pdf documents by dragging them in preview, but when I try to save and open afterwards, only the last shown doc was saved, not the combined files I wanted to merge. I've tried save and export, but none merge the documents after saving... how can I create the file (with all the pdf files) after merging?

    That's a comment in the file. It has no effect at all.

  • Is there a simple way to save and open attachments?

    When I save an attachment in mail, I have to hit save, navigate to the place to save, say OK, then to open it, I have to open a finder window, navigate (again) to the place, and open it. Because we have a very deep directory structure on our corporate drive, it takes like 20 seconds to do this every time I want to save an attachment. Isn't there an easier way to do this?
    SUGGESTION TO APPLE: why not put a button on the Save dialog that says "Save and Open".

    Just click on the attachment to open it, then if it's worth saving, press Save As...
    In the save window, you will see a list of recent places and if your lucky, one shows up that is on the mark and you can select it directly.

  • Image won't open after right click and "open with" command using Editor PSE 10

    Can't see image after right click and "open with" Windows XP command using Editor PSE 10. The editor opens but no image appears. I have to use the open command from within Editor

      Make sure you have chosen the application PhotoshopElementsEditor.exe and not a shortcut.
    To manually associate a file format with an application:
    In Windows Explorer, right-click a file whose file association you want to change. For example, if you want to change the file association for all jpeg files, click a jpeg file.
    Choose Open With > Choose Program from the pop-up menu.
    In the Open With dialog box, click Browse and then locate and select the exe application file.
    Checkmark "Always use the selected program to open this kind of file" and click OK.
    Note:If you choose a program from the Open With menu in step 2, instead of selecting the Choose Program option, this check box is not available, and the file association won't work.

  • My payslip gets emailed to me and opens with fire fox , i can not print it out have tried saving to doc but still opens will not print

    my payslip gets emailed to me and opens with firefox , i can not print it out have tried saving to doc, but still opens with firefox and will not print.
    The server i have to use for my pay is Explorer( i told them that this would have conflicting things on my computer, they said no i wont.( i can get it just can not print it?)

    Hi there morinallen,
    Try downloading and running the print and scan doctor located here to ensure there are no software conflicts:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03275041&cc=us&dlc=en&lc=en
    It can fix a lot on its own and if not give a better idea of what is going on.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • How to save and open Text/csv file over APS

    Hi,
    I want to save(and open later) data from database block in text/csv file format over Application server, I did a lot of search here on Forms but didn't found a reasonable solution, Some one plz help me.
    Thanks and Regards, Khawar.

    As long as you are using the Report Generation Toolkit, there is no need to use ActiveX for the purpose of saving the Excel file -- Save Report will do that for you.  You can then export (as text) all of the Excel data and use the Write Spreadsheet File to make the .CSV file.  Here is how I would rewrite the final bits of your code --
    I cleaned up the wires around Excel Easy Table a bit.  You'll see I made a VI Icon for Replace Filename, which does (I think) a nicer job of self-documenting than showing its Label.  To make the filename, add the correct extension (.xlsx for Excel, .csv for CSV), use Build Path to combine Folder and Filename, and wire to Save Report.
    The next two functions add the Extract Everything and Write to Spreadsheet, using a Comma as a separator, which makes a CSV copy for you.
    Bob Schor

  • Attempted to create a slideshow (version 9.3) and get the dreaded twiling ball that will not go away; iphoto locked up when open.  how do I get rid of the ball.  Have forced quit seveal times and opens with the ball p

    Attempted to create a slideshow (version 9.3) and get the dreaded spinning ball that will not go away; iphoto locked up when open.  how do I get rid of the ball.  Have forced quit seveal times and opens with the spinning ball.

    Make a temporary, backup copy if you don't have a backup copy of the library (select the library and type Command+D) and  apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with Option #1, followed by #3 and then #4
    Launch iPhoto and try again.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Safari preferences don't work and opens with tabs that were shut down

    safari preferences don't work and opens with tabs that were shut down.  what to do?

    Quit Safari.
      Hold the shift key down and relaunch Safari.
    Reset Safari.
    Launch Safari
    Click Safari in the menu bar.
    From the drop down select "Reset Safari".
    Uncheck the box beside "Remove stored name and passwords"
    Click "Reset".
    Empty Caches
    Safari > Preference > Advanced
    Checkmark the box for "Show Develop menu in menu bar".
    Develop menu will appear in the Safari menu bar.
    Click Develop and select "Empty Caches" from the dropdown.
    Turn off Extensions if any, and launch Safari.
    Safari > Preferences > Extensions
      Delete safari .plist file.
      Quit all applications.
      Option click the "Go" menu in the Finder menu bar.
      Select "Library" from the drop down.
      Library > Preferences >  com.apple.Safari.plist
      Right click it and select  "Move  to Trash".
      Restart.

Maybe you are looking for

  • Transfer purchase requsition from ecc to apo

    Hello, When creating purchase requirements in ECC, they are not transferred to APO although there is model integration. If I activate again the model, the pur req are trasnferred. In CCR It gives the error 181 in Schedule line does not exist in APO S

  • Looking for some advice regarding an image related program

    Hi fellas, Im looking for some guidance here. I want to write a program that will read an image (image will be an xray image of a square), convert the image to black and white, and measure the length and width of the square. Im looking for the best p

  • How to call in a loop AdfCustomEven.queue to send data in pieces

    Hi I need to call in a loop AdfCustomEven.queue to send data in pieces to a managed bean in the server

  • Patchy support for .srw files

    I haven't yet purchased Aperture 3 as the support for my Samsung EX1 raw files (.srw) seems limited. Although the intro screen says Aperture does support .srw files, the EX1 isn't in the list of supported cameras. Annoyingly Aperture manages to rende

  • Weblogic platform 8.1.4

    Where can I find installation for weblogic platform 8.1.4?