Problem with opening some of PDFs in Photoshop CS6.

Hi, I have a problem with opening some of PDFs in Photoshop CS6. It is said: it isn't possible to carry out an order since the module of the file format cannot analyse this file

Don’t know if Reader has this, too, but in Acrobat one can check under Document Properties.
I can convert and place the file in Photoshop CS6.
I would recommend trying the usual trouble-shooting routines and if nothing helps un-installing, running the Cleaner and re-installing Photoshop.  (After making sure all customized presets like Actions, Patterns, Brushes etc. have been saved to s secure location.)
http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

Similar Messages

  • Problem with saving TIFF from PDF in Photoshop and importing into Corel

    I work at a publishing company, and some of our designers use CorelDraw X14. We receive most of our advertising material in PDF format, which I then have to convert to TIFF in Photoshop (I use CS4). Most of the time this works fine, but lately, the TIFF files appear ragged and very low resolution (especially the text) once they are imported into Corel. When I re-open the TIFF files in Photoshop they seem fine, as well as viewing them with a picture manager program. Does anyone have any idea why this happens, and if the problem lies with the may I save the TIFF files or the way they are imported into Corel? TIFF files created from Corel don't have the same problem.

    I concur with Bart - they are using the preview because someoen ticked a wrong checkbox or enabled a fast preview mode... Should print and export without issues, though.
    Mylenium

  • Problem with Opening Attachments in PDFs

    I recently upgraded to Word 2007 and Adobe Acrobat Professional 9.3.2. When I attach Excel or Word files within a PDF file, I can no longer double click an attachment to open it. I receive an error message that states my administrative security settings don't allow me to open attachments. I can't change the security settings (they are grayed out). Does anyone have a solution? Thanks!

    You need to change the preferences in the Trust Manager.

  • I have started having problems with the png dialogue box in Photoshop cs6

    When I go to save the image I am working on, the PNG Dialogue box is black , I mean that the radial and submit buttons show up but the rest is just black so i cannot see exactly what I am doing. I cannot work out how to fix this and would really like to avoid a total reinstall of my CS6 package.
    This issue does not happen using the PSD or JPG save options either so i am baffled.
    Kind Regards
    William
    PS- Does anyone know if it is still possible to talk directly to Adobe via thier live chat option as I could not find it when I wanted to inform them of this directly

    I am using OS X Mountain Lion. I really dont want to have to reinstall anything. An OS Reinstall is really no less annoying than a Reinstall of the CS6 package. Sadly it looks like this may be the only way forward. Just hope I can do it without losing too much from the machine as it is my work machine.
    Thanks for your help and for the link. I just wish Adobe was more directly contactable about issues that come up when using their products.
    William

  • Problem with opening of PDF in my webmail application

    I have a problem with opening a pdf file in my webmail application of my internet provider in apple safari since yesterday. When I wanted to open up a pdf file I got a pop up message to allow a connection between adobe and the webmail application which I did. Since then I can not open up a pdf file. If I go to another browser or if I use email from another internet provider I use too it works and I can open up. It seems to be a blockage of the specific combination of this webmail application and safari.
    What can I do ?

    Hi,
    I have same requirement.
    I need to cnvert smartform->pdf->send mail.
    The mail is send but the attachment is corrupted.
    Can you tell me what code you have written so its working in developement?

  • Problems with opening Acrobat Pro 9 PDF files

    Hi. We use Acrobat Pro 9.0.0 to convert our product documentation Word files into PDFs. During the last weeks our customers report more and more problems with opening these files. We usually deliver those on a DVD with Acrobat Reader 5 or another older version. (Please don't ask me why we're still on these old versions!) Did anyone experience similar problems with Acrobat Pro 9 PDF files and older versions of the Acrobat Reader? Does Acrobat Pro 9.0.0 work smoothly with the newest Acrobat Reader 9.1 download?
    Please post your comments. Thx a lot - Kay

    I would recommend distributing higher version of Reader as version 5 is just too old but looks like you can't go there.
    Acrobat 9 PDFMaker and Adobe PDF printers by default create PDF 1.5 compaible files. PDF 1.5 compatible files can be opened only in Acrobat 6 and above. That's probably the reason why your customers can't see the contents.
    What you can do is to change your conversion settings to produce PDF 1.4 compatible files:
    - In Word, select Acrobat tab or Adobe PDF menu (depending on your version of Word), select Settings
    - Select "advanced settings" in the dialog that comes up
    - Choose compatibility as "Acrobat 5", PDF 1.4
    IF you print to Adobe PDF printer, you'll find a similar setting in the print dialog.

  • Problem with opening odf document

    Hello,
    I have some problem with opening pdf document (attached image). Any idea why ?
    Regards,

    Any idea why ?

  • Facing problem with logo in the PDF attachment when sending mail...

    hi friends,
    i'm facing problem with logo in the PDF attachment to the mail.
    my requirement:
    1. enter spool number and mail id in the selection screen.
    process:
    1. now the program will fetch the spool data and converts it to PDF.
    2. but when i'm trying to send mail with this PDF as attachment.
    when i open the PDF file from the mail, logo is not coming properly (looks disturbed).
    can anyone help me how to resolve this issue...
    thanks in advance, murashali.

    hi dinakar, thanks for your mail...
    logo looks good in spool/script/smartform.
    even it look good when i download this spool to pdf and to the presentation server as pdf file.
    i'm using CONVERT_OTFSPOOLJOB_2_PDF.
    when i used CONVERT_ABAPSPOOLJOB_2_PDF, is gives a msg - 'spool number not found'.
    here i'm using folloing code to pass pdf to the function module: SO_NEW_DOCUMENT_ATT_SEND_API1.
    code:
    Transfer the 132-long strings to 255-long strings
      lt_mtab_pdf[] = pdf[].
      LOOP AT lt_mtab_pdf INTO lwa_mtab_pdf.
        TRANSLATE lwa_mtab_pdf USING ' ~'.
        CONCATENATE lv_gd_buffer lwa_mtab_pdf INTO lv_gd_buffer.
        CLEAR lwa_mtab_pdf.
      ENDLOOP.
      TRANSLATE lv_gd_buffer USING '~ '.
      DO.
        lwa_mess_att = lv_gd_buffer.
        APPEND lwa_mess_att TO lt_mess_att.
        CLEAR lwa_mess_att.
        SHIFT lv_gd_buffer LEFT BY 255 PLACES.
        IF lv_gd_buffer IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
    NOTE: problem i believe is with ''.  i'm getting this tilt symbol () in my pdf internal table.  here in the above code the line   TRANSLATE lv_gd_buffer USING '~ ' is changing the existing tilt to space.  so my logo is getting disturbed.
    even i tried with REPLACE this tilt with other char, but it doent work.
    can you give any idea...

  • The last time you opened OpenOffice, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again? i have a problem with open office, if I press reopen, nothing happened  ans i see always this information on my mac? what ca

    The last time you opened OpenOffice, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again? i have a problem with open office, if I press reopen, nothing happened  ans i see always this information on my mac? what can I do?

    Please follow these directions to delete the Mail "sandbox" folders. In OS X 10.9 there are two sandboxes, while in 10.8 there is only one. If you're running a version older than 10.8, this comment isn't applicable.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Log out and log back in. Launch Mail and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Repeat with this line:
    ~/Library/Containers/com.apple.MailServiceAgent
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • I am using Adobe Suite CS4 and have had no problems with it until today. InDesign, Photoshop and Illustrator keep crashing!! I've uninstalled and reinstalled to no avail. I've also cleared the cache. Help!

    I am using Adobe Suite CS4 and have had no problems with it until today. InDesign, Photoshop and Illustrator keep crashing!! I've uninstalled and reinstalled to no avail. I've also cleared the cache. Help!

    Ok, thanks for your help. I believe I pasted all the info from your answer. Since Photoshop and inDesign are crashing as well, will you need that too?
    May  8 16:04:41 iMac com.apple.launchd.peruser.501[126] ([0x0-0x4d04d].com.adobe.illustrator[493]): Job appears to have crashed: Segmentation fault: 11
    May  8 16:04:42 iMac ReportCrash[496]: Saved crash report for Adobe Illustrator[493] version 367 (14.0.0) to /Users//Library/Logs/DiagnosticReports/Adobe Illustrator_2014-05-08-160442_-iMac.crash
    May  8 16:04:42 -iMac ReportCrash[496]: Removing excessive log: file://localhost/Users/xxxxxx/Library/Logs/DiagnosticReports/Adobe%20Illustrato r_2014-05-06-152657_-iMac.crash
    Process:         Adobe Illustrator [273]
    Path:            /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         367 (14.0.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [131]
    Date/Time:       2014-05-06 15:29:44.038 -0700
    OS Version:      Mac OS X 10.7.5 (11G63b)
    Report Version:  9
    Interval Since Last Report:          353 sec
    Crashes Since Last Report:           6
    Per-App Interval Since Last Report:  11182846 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                     
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000ffffff5a
    VM Regions Near 0xffffff5a:
    --> shared memory          00000000ffff0000-00000000ffff2000 [    8K] r-x/r-x SM=SHM 
    Application Specific Information:
    objc[273]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   AdobePDFL                               0x024104cd ASrealloc + 737
    1   AdobePDFL                               0x0236f588 CosDocEnumEOFs + 27326
    2   AdobePDFL                               0x0236d907 CosDocEnumEOFs + 20029
    3   AdobePDFL                               0x0236fd46 CosDocEnumEOFs + 29308
    4   AdobePDFL                               0x0227d782 ASTextIsEmpty + 1146
    5   AdobePDFL                               0x0212779f PDFontPSFlushIncrGlyphList + 65853
    6   AdobePDFL                               0x02127966 PDFontPSFlushIncrGlyphList + 66308
    7   AdobePDFL                               0x02129f93 PDFontPSFlushIncrGlyphList + 76081
    8   AdobePDFL                               0x0212cae6 PDFontPSFlushIncrGlyphList + 87172
    9   AdobePDFL                               0x02111b26 PDFLPrintDoc + 6322
    10  AdobePDFL                               0x021dccac PDSetHostEncoding + 2412
    11  AdobePDFL                               0x021dce02 PDSetHostEncoding + 2754
    12  AdobePDFL                               0x02114eba PDFLInitFriends + 2122
    13  AdobePDFL                               0x021149c8 PDFLInitFriends + 856
    14  com.adobe.illustrator.plugins.PDF Suite          0x16884096 PluginMain + 163654
    15  com.adobe.illustrator.plugins.PDF Suite          0x16883b61 PluginMain + 162321
    16  com.adobe.illustrator.plugins.PDF Suite          0x168840f2 PluginMain + 163746
    17  com.adobe.illustrator.plugins.PDF Suite          0x16862872 PluginMain + 26402
    18  com.adobe.illustrator.plugins.PDF Suite          0x16862c7b PluginMain + 27435
    19  com.adobe.illustrator.plugins.PDF Suite          0x1685c1f3 PluginMain + 163
    20  com.adobe.illustrator                   0x006a93ff 0x1000 + 6980607
    21  com.adobe.illustrator                   0x006a89c6 0x1000 + 6977990
    22  com.adobe.illustrator                   0x00586d75 0x1000 + 5791093
    23  com.adobe.illustrator                   0x00586e2d 0x1000 + 5791277
    24  com.adobe.illustrator                   0x0052f513 0x1000 + 5432595
    25  com.adobe.illustrator                   0x00539777 0x1000 + 5474167
    26  com.adobe.illustrator                   0x0053d599 0x1000 + 5490073
    27  com.adobe.illustrator                   0x00515187 0x1000 + 5325191
    28  com.adobe.illustrator                   0x00b0517a AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 524022
    29  com.adobe.illustrator                   0x00a181df AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 43387
    30  com.adobe.illustrator                   0x0004210a 0x1000 + 266506
    31  com.adobe.illustrator                   0x0053c893 0x1000 + 5486739
    32  com.adobe.illustrator                   0x0053a574 0x1000 + 5477748
    33  com.adobe.illustrator                   0x00b03d77 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 518899
    34  com.adobe.illustrator.plugins.PDF Format          0x10122118 0x1010f000 + 78104
    35  com.adobe.coretech.adm                  0x0dd83d85 0xdd7b000 + 36229
    36  com.adobe.coretech.adm                  0x0dd8c62f 0xdd7b000 + 71215
    37  com.adobe.coretech.adm                  0x0dd8d7fb 0xdd7b000 + 75771
    38  com.adobe.coretech.adm                  0x0ddd5871 0xdd7b000 + 370801
    39  com.adobe.coretech.adm                  0x0dd93c53 0xdd7b000 + 101459
    40  com.adobe.illustrator.plugins.PDF Format          0x101200bd 0x1010f000 + 69821
    41  com.adobe.illustrator.plugins.PDF Format          0x1011a56a 0x1010f000 + 46442
    42  com.adobe.illustrator.plugins.PDF Format          0x101442e7 PluginMain + 2927
    43  com.adobe.illustrator.plugins.PDF Format          0x1014391e PluginMain + 422
    44  com.adobe.illustrator                   0x006a93ff 0x1000 + 6980607
    45  com.adobe.illustrator                   0x006a89c6 0x1000 + 6977990
    46  com.adobe.illustrator                   0x00586d75 0x1000 + 5791093
    47  com.adobe.illustrator                   0x0047021d 0x1000 + 4649501
    48  com.adobe.illustrator                   0x00473190 0x1000 + 4661648
    49  com.adobe.illustrator                   0x0027b1dc 0x1000 + 2597340
    50  com.adobe.illustrator                   0x0027bb3b 0x1000 + 2599739
    51  com.adobe.illustrator                   0x0027bf0d 0x1000 + 2600717
    52  com.adobe.illustrator                   0x000a2ad9 0x1000 + 662233
    53  com.adobe.illustrator                   0x000a24ea 0x1000 + 660714
    54  com.adobe.illustrator                   0x000a263a 0x1000 + 661050
    55  com.apple.AE                            0x91fb8e0b InvokeAEEventHandlerUPP + 29
    56  com.adobe.illustrator.plugins.Scripting Support          0x0e3794e6 0xe359000 + 132326
    57  com.adobe.illustrator.plugins.Scripting Support          0x0e3f4dcb PluginMain + 605
    58  com.apple.AE                            0x91fa3045 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 202
    59  com.apple.AE                            0x91f8cb67 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 43
    60  com.apple.AE                            0x91f8ca54 aeProcessAppleEvent + 253
    61  com.apple.HIToolbox                     0x93410a86 AEProcessAppleEvent + 103
    62  com.apple.HIToolbox                     0x9359ead1 AEProcessEvent + 162
    63  com.apple.HIToolbox                     0x9349752f HIStdAppHandler::HandleEvent(OpaqueEventHandlerCallRef*, TCarbonEvent&) + 181
    64  com.apple.HIToolbox                     0x934984ce TEventHandler::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 58
    65  com.apple.HIToolbox                     0x9358bc0c _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    66  com.apple.HIToolbox                     0x93407313 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    67  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    68  com.apple.HIToolbox                     0x934065a8 SendEventToEventTargetWithOptions + 75
    69  com.apple.HIToolbox                     0x9341c1c6 _ZL29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRef Pv + 3152
    70  com.apple.HIToolbox                     0x934077ce _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 2813
    71  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    72  com.apple.HIToolbox                     0x9341b571 SendEventToEventTarget + 76
    73  com.adobe.illustrator                   0x00080d3e 0x1000 + 523582
    74  com.apple.HIToolbox                     0x9358bc0c _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    75  com.apple.HIToolbox                     0x93407313 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    76  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    77  com.apple.HIToolbox                     0x934065a8 SendEventToEventTargetWithOptions + 75
    78  com.apple.HIToolbox                     0x9341c1c6 _ZL29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRef Pv + 3152
    79  com.apple.HIToolbox                     0x934077ce _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 2813
    80  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    81  com.apple.HIToolbox                     0x9341b571 SendEventToEventTarget + 76
    82  com.apple.HIToolbox                     0x9358ba58 ToolboxEventDispatcher + 82
    83  com.apple.HIToolbox                     0x9358bb87 RunApplicationEventLoop + 236
    84  com.adobe.illustrator                   0x00080f83 0x1000 + 524163
    85  com.adobe.illustrator                   0x000d84ab 0x1000 + 881835
    86  com.adobe.illustrator                   0x000a2cd2 0x1000 + 662738
    87  com.adobe.illustrator                   0x00003672 0x1000 + 9842
    88  com.adobe.illustrator                   0x00003599 0x1000 + 9625
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x95f0a90a kevent + 10
    1   libdispatch.dylib                       0x96fb6e04 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x96fb5853 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x95f0a02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x95542ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x955446fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x95f0a02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x95542ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x955446fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x047c9552 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services                  0x047c4995 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 115
    5   com.adobe.amt.services                  0x047c95b0 AMTThread::Worker(void*) + 20
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x95544f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9ad0f3a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9ad0f11d TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9ad0ef2e TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x9ad84398 TimerThread + 292
    7   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x954f542c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9ad9de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ad0f37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9ad7167f MPWaitOnQueue + 200
    6   AdobeACE                                0x0130a38d 0x12d9000 + 201613
    7   AdobeACE                                0x01309d85 0x12d9000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x9ad725e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x954f542c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9ad9de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ad0f37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9ad7167f MPWaitOnQueue + 200
    6   AdobeACE                                0x0130a38d 0x12d9000 + 201613
    7   AdobeACE                                0x01309d85 0x12d9000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x9ad725e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x954f542c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9ad9de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ad0f37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9ad7167f MPWaitOnQueue + 200
    6   AdobeACE                                0x0130a38d 0x12d9000 + 201613
    7   AdobeACE                                0x01309d85 0x12d9000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x9ad725e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x95f07c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95f071f6 mach_msg + 70
    2   com.macromedia.Flash Player.authplaylib          0x1390763e ExternalPlayer_Initialize + 1865604
    3   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x95f07d36 mach_wait_until + 10
    1   libsystem_c.dylib                       0x954ee439 nanosleep + 388
    2   com.adobe.illustrator.plugins.Scripting Support          0x0e46489d PluginMain + 458031
    3   com.adobe.illustrator.plugins.Scripting Support          0x0e4648fd PluginMain + 458127
    4   com.adobe.illustrator.plugins.Scripting Support          0x0e468402 PluginMain + 473236
    5   com.adobe.illustrator.plugins.Scripting Support          0x0e464bbf PluginMain + 458833
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xffffff4a  ebx: 0x0236f46a  ecx: 0x0000000f  edx: 0xbfff75ae
      edi: 0xffffff4a  esi: 0x00000642  ebp: 0xbfff7558  esp: 0xbfff7540
       ss: 0x00000023  efl: 0x00010282  eip: 0x024104cd   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xffffff5a
    Logical CPU: 0
    Binary Images:
        0x1000 -   0xe8eff3 +com.adobe.illustrator (367 - 14.0.0) <F586A10F-F480-4783-A20B-C006B6321F47> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    0x1190000 -  0x11a0fff  com.apple.carbonframeworktemplate (1.0 - 1.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
    0x11a7000 -  0x11c2ff9 +AdobePDFSettings (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/Adobe PDFSettings
    0x11dc000 -  0x122cfff +com.adobe.illustrator.aiport (AIPort version 1.0 - 1.0) <F625B836-9616-46B7-B681-F9AC11D0DA71> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x12c5000 -  0x12c6027 +SPBasic (??? - ???) <B1DC5A08-15C4-49F9-9DF1-6A94E0AD3448> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x12ca000 -  0x12d0ff7 +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSp lashKit
    0x12d9000 -  0x13e6fff +AdobeACE (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1404000 -  0x191bfef +AdobeAGM (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1a94000 -  0x1ad4fef +AdobeARE (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x1ade000 -  0x1b02ff6 +AdobeAXE8SharedExpat (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/A dobeAXE8SharedExpat
    0x1b15000 -  0x1b2ffff +AdobeBIB (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1b3a000 -  0x1b5bff7 +AdobeBIBUtils (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIB Utils
    0x1b68000 -  0x1e04fef +AdobeCoolType (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoo lType
    0x1e8f000 -  0x1f5dfff +AdobeExtendScript (3.7.0 - compatibility 3.7.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/Adob eExtendScript
    0x1fd4000 -  0x20bcfdf +AdobePDFPort (??? - ???) <F54A25D1-5E7A-472E-83D1-10D187434C85> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFP ort
    0x2101000 -  0x26f9fdf +AdobePDFL (??? - ???) <8EC2ABBA-52D2-4230-B327-A6827FB2D33A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x283d000 -  0x28defd7 +AdobeScCore (3.7.0 - compatibility 3.7.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCor e
    0x293a000 -  0x29e8fd7 +AdobeSVGExport (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSV GExport
    0x2a1a000 -  0x2cc3fe2 +AdobeSVGRE (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
    0x2dad000 -  0x2e0dfc7 +AdobeXMP (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x2e1c000 -  0x2ef1fdd +FileInfo (??? - ???) <F0932F89-FC98-4BA9-B4F2-C58D0E71D3C1> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x2f22000 -  0x2fa4fd7 +AdobeXMPFiles (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMP Files
    0x2fbb000 -  0x308a23b +libicui18n.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/ 3.6/libicui18n.dylib.36.0
    0x3133000 -  0x3207db7 +libicuuc.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc. dylib.36.0
    0x3268000 -  0x3c1857f +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.d ylib.36.0
    0x3c1b000 -  0x3fe5fef +AdobeMPS (??? - ???) <277E01A3-CAC3-4FA9-A591-4BC0A5BC125A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x4074000 -  0x422aff4 +com.adobe.amtlib (amtlib 2.0.1.10077 - 2.0.1.10077) <CB2EC3BF-6771-4DAB-BF29-6775FB6F9608> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x4261000 -  0x42ee2cb +libicucnv.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicuc nv.dylib.36.0
    0x431b000 -  0x46f501f +com.adobe.linguistic.LinguisticManager (4.0.0 - 7863) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeL inguistic
    0x47a9000 -  0x484afc3 +com.adobe.amt.services (AMTServices 2.0.1.10077 [BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09] - 2 . 0) <31E82904-C3C2-424E-A1AE-A5EFADBB19B8> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservice s
    0x4928000 -  0x4e26fc3 +AdobeOwlCanvas (??? - ???) <DC1EE447-FCDB-43C8-B6D2-A5454291C85D> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOw lCanvas
    0x4f6f000 -  0x4ffffc3 +WRServices (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x5181000 -  0x5185ffc +com.adobe.AdobeCrashReporter (2.5 - 3.0.20080806) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/Ado beCrashReporter
    0x518b000 -  0x51a7fd7 +com.adobe.LogTransport (1.0 - 1.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransp ort
    0x51b2000 -  0x51e1ff7 +com.adobe.headlights.LogSessionFramework (??? - 2.0.0.06112008) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x5209000 -  0x521affb +LogTransport2 (??? - ???) <835B7B84-5A67-370B-AB39-8E448AA81FA0> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/LogTransport2.framework/Versions/A/LogTrans port2
    0x5224000 -  0x522afff +com.adobe.pip (??? - 1.0.0.220) <2CA89939-DFA7-4686-8536-8A1F1107CAF1> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
    0x5230000 -  0x525bfff  com.apple.GSS (2.2 - 2.0) <1CB56119-09C5-38FD-8FDC-064E3CC5068B> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x5271000 -  0x546bfcf +AdobeOwl (??? - ???) <F209A9B2-9606-4182-93D8-84B349CFBE48> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x54e6000 -  0x5523fff  com.apple.vmutils (4.2.1 - 107) <43B3BFA5-8362-3EBD-B44B-32DCE9885082> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x553d000 -  0x55eaff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x6794000 -  0x67dbfc7 +com.adobe.adobe_caps (adobe_caps 2.0.99.0 - 2.0.99.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x67eb000 -  0x67ebfff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <859B5BCC-B5D9-370F-8B6C-1E2B242D5DCD> /usr/lib/libmx.A.dylib
    0x7fa5000 -  0x7fb2ff7 +com.adobe.asneu.framework (asneu version 1.6.2f01 - 1.6.2) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0xbbe9000 -  0xbbfbfff  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <F7D2A96C-D03F-3C0B-83FC-1016BB787B59> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xcdf4000 -  0xce02ffb  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <4378B89F-0BDA-3072-9C67-DE1A371DD816> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0xce1d000 -  0xce1effc  ATSHI.dylib (??? - ???) <0B0F21B6-C254-34AE-8128-F3FBC80C68E6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0xce42000 -  0xce42fff +com.adobe.illustrator.plugins.PlugInRes (Localizer version 14.0.0 - 14.0.0) <CFE61490-698E-4FAE-988C-C238AC6CAAF8> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Resources/en_US/PluginRes.aip/Contents/MacOS/PlugInRes
    0xcf1b000 -  0xcf6afe6 +com.adobe.illustrator.plugins.Photoshop Adapter (Photoshop Adapter version 14.0.0 - 14.0.0) <897C80A3-5E5D-4156-8C80-38FE67F5F275> /Applications/Adobe Illustrator CS4/*/Photoshop Adapter
    0xcf91000 -  0xcf92fff +com.adobe.illustrator.plugins.ASLib (ASLib version 14.0.0 - 14.0.0) <F08F7B7D-86A2-462E-AB7B-B706FEE4B955> /Applications/Adobe Illustrator CS4/*/ASLib
    0xd0e4000 -  0xd0ebfff +com.adobe.illustrator.plugins.Action (Action version 14.0.0 - 14.0.0) <C884784D-9646-47C7-917D-2F6B65521B57> /Applications/Adobe Illustrator CS4/*/Action
    0xd0ef000 -  0xd0f8fff +com.adobe.illustrator.plugins.FrameworkServer (Framework Server version 14.0.0 - 14.0.0) <04B2DA5B-B84C-487C-A70E-76163D14D08F> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/FrameworkServer.aip/Contents/MacOS/FrameworkS erver
    0xd2d3000 -  0xd2ecfcb +com.adobe.illustrator.plugins.AssetMgmt (Asset Management version 14.0.0 - 14.0.0) <27CE4290-30DD-477C-9DD4-D46D6022D8D5> /Applications/Adobe Illustrator CS4/*/AssetMgmt
    0xd2f5000 -  0xd326fe3 +com.adobe.amt.registration (AMTRegistration 2.0.1.10077 [BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09] - 2 . 0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/registration.framework/Versions/A/registrat ion
    0xdd7b000 -  0xde4efef +com.adobe.coretech.adm (3.10x04 - 3.1) <369EAA04-C054-40EB-AC03-92CE99C7260C> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0xe0cf000 -  0xe0d5ff7 +com.adobe.illustrator.plugins.ArtConverters ( ArtConverters version 14.0.0 - 14.0.0) <0EA7F2D8-904D-4AFC-A177-8569F3E2286A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ArtConverters.aip/Contents/MacOS/ArtConverter s
    0xe0d9000 -  0xe102fff +com.adobe.illustrator.plugins.BRSPencilTool ( Pencil Tool version 14.0.0 - 14.0.0) <EF43DD3A-A797-450D-9FF7-4EFD246811A5> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/BRSPencilTool.aip/Contents/MacOS/BRSPencilToo l
    0xe108000 -  0xe117fd3 +com.adobe.illustrator.plugins.Flatten Transparency ( Flatten Transparency version 14.0.0 - 14.0.0) <66929E97-D63A-46F2-9ADC-F8C10995DFC3> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/Flatten Transparency.aip/Contents/MacOS/Flatten Transparency
    0xe11e000 -  0xe146fcb +com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 14.0.0 - 14.0.0) <D2E6328E-B072-4F58-A8F4-191C1E7A3111> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/FOConversionSuite.aip/Contents/MacOS/FOConver sionSuite
    0xe156000 -  0xe16bfef +com.adobe.illustrator.plugins.Rasterize (Rasterize version 14.0.0 - 14.0.0) <20A55512-33F0-4669-BE49-F3ED9E2C1CC5> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/Rasterize.aip/Contents/MacOS/Rasterize
    0xe16f000 -  0xe1a3fc3 +com.adobe.illustrator.plugins.BrushManager (Brush Manager version 14.0.0 - 14.0.0) <45B1E4C5-0AEC-4C31-BF6E-ECC0888F9386> /Applications/Adobe Illustrator CS4/*/BrushManager
    0xe1ac000 -  0xe25afc8 +com.adobe.illustrator.plugins.ColorHarmony (ColorHarmony version 14.0.0 - 14.0.0) <11C2EC2C-29D3-462D-B3A2-771D85D66917> /Applications/Adobe Illustrator CS4/*/ColorHarmony
    0xe278000 -  0xe28dff0 +com.adobe.illustrator.plugins.ControlPalette (ControlPalette version 14.0.0 - 14.0.0) <65ADF72A-2398-43F7-9B05-52D7D592BA0E> /Applications/Adobe Illustrator CS4/*/ControlPalette
    0xe299000 -  0xe2c4ff0 +com.adobe.illustrator.plugins.KinsokuDlg ( KinsokuDlg version 14.0.0 - 14.0.0) <0B0B227F-AA5B-46FB-A6B6-60AE2BFAD347> /Applications/Adobe Illustrator CS4/*/KinsokuDlg
    0xe2d5000 -  0xe34dfdb +com.adobe.illustrator.plugins.PaintStyle (Paint Style Palettes version 14.0.0 - 14.0.0) <FDFCF271-25E0-46B9-812C-EFB4E49B61A8> /Applications/Adobe Illustrator CS4/*/PaintStyle
    0xe359000 -  0xe607fe7 +com.adobe.illustrator.plugins.Scripting Support (Scripting Support version 14.0.0 - 14.0.0) <00ED474E-DA84-421D-A0BA-AC17357B1FED> /Applications/Adobe Illustrator CS4/*/Scripting Support
    0xe8c0000 -  0xe8c3ffb +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0xe9cd000 -  0xea48fde +com.adobe.illustrator.plugins.SwatchLibraries (Swatch Libraries version 14.0.0 - 14.0.0) <CB45F4C6-5333-417D-8997-C124973041FE> /Applications/Adobe Illustrator CS4/*/SwatchLibraries
    0xea59000 -  0xea87068 +com.adobe.illustrator.plugins.SymbolPalette (Symbol Palette version 14.0.0 - 14.0.0) <DD7DBC72-EF5E-4F52-A102-794BF21F2498> /Applications/Adobe Illustrator CS4/*/SymbolPalette
    0xea90000 -  0xea94feb +com.adobe.illustrator.plugins.ToolSelector (Tool Selector version 14.0.0 - 14.0.0) <72429655-649D-4EFF-A0AF-DE2BE54FFDC6> /Applications/Adobe Illustrator CS4/*/ToolSelector
    0xea98000 -  0xeab1fef +com.adobe.illustrator.plugins.Workspaces (Workspaces version 14.0.0 - 14.0.0) <E065EBE1-AEF1-47B8-9933-EEB543767C5C> /Applications/Adobe Illustrator CS4/*/Workspaces
    0xeab8000 -  0xeacb04f +com.adobe.illustrator.plugins.Mojikumi ( MojiKumiUI version 14.0.0 - 14.0.0) <E32A6710-064A-4731-8844-E63F5DC4094F> /Applications/Adobe Illustrator CS4/*/Mojikumi
    0xead2000 -  0xead5fff +com.adobe.illustrator.plugins.GeometryS ( Geometry Suite version 14.0.0 - 14.0.0) <B30D9BE4-9735-4704-AD8A-467E7C25B9A9> /Applications/Adobe Illustrator CS4/*/GeometryS
    0xead9000 -  0xeb00fe8 +com.adobe.illustrator.plugins.slicingAttributes (Slicing version 14.0.0 - 14.0.0) <3A3FCCB7-D888-4949-94FB-74EA1892F2DE> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/sliceAttributes.aip/Contents/MacOS/slicingAtt ributes
    0xeb08000 -  0xeb0dfef +com.adobe.illustrator.plugins.ShapeS (Shape Construction Suite version 14.0.0 - 14.0.0) <A8E06D3D-22EB-4391-A488-39435E80F204> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ShapeS.aip/Contents/MacOS/ShapeS
    0xeb11000 -  0xeb3dfff +com.adobe.illustrator.plugins.PathfinderS (Pathfinder Suite version 14.0.0 - 14.0.0) <D0D9CCD1-0AEC-4C46-9AA3-F7F97ACCDEF1> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/PathFinderS.aip/Contents/MacOS/PathfinderS
    0xeb46000 -  0xeb4dff3 +com.adobe.illustrator.plugins.ExpandS (Expand Suite version 14.0.0 - 14.0.0) <29196393-E41C-43EA-8C0C-6260FD7F61FC> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ExpandS.aip/Contents/MacOS/ExpandS
    0xeb51000 -  0xeb61fff +com.adobe.illustrator.plugins.DocInfo (Document Info version 14.0.0 - 14.0.0) <4314802B-CE2E-4AF5-9460-5809DEFF7360> /Applications/Adobe Illustrator CS4/*/DocInfo
    0xeb68000 -  0xeba0fef +com.adobe.illustrator.plugins.Snap (Snap version 14.0.0 - 14.0.0) <29FC35B5-A5D5-4F0C-B721-49E267315B13> /Applications/Adobe Illustrator CS4/*/Snap
    0xebb0000 -  0xebc0ff2 +com.adobe.illustrator.plugins.DropShadow (Drop Shadow version 14.0.0 - 14.0.0) <50DC2482-540D-4817-8D0E-158E626298DA> /Applications/Adobe Illustrator CS4/*/DropShadow
    0xebc6000 -  0xebcdfc0 +com.adobe.illustrator.plugins.ADMTP (Tool Palette version 14.0.0 - 14.0.0) <7E1766B5-2D51-4E83-B515-6F5149B134B2> /Applications/Adobe Illustrator CS4/*/ADMTP
    0xebd1000 -  0xebe0ff3 +com.adobe.illustrator.plugins.Segment Tools (Segment Tools version 14.0.0 - 14.0.0) <5ADD1377-AC2A-43E7-A418-FA83F4E7DF2F> /Applications/Adobe Illustrator CS4/*/Segment Tools
    0xebe5000 -  0xec02fda +com.adobe.illustrator.plugins.ScatterBrushTool (Adobe Scatter Brush Tool version 14.0.0 - 14.0.0) <8BEBD742-F42F-49C5-A3F0-FA1C5285A7DA> /Applications/Adobe Illustrator CS4/*/ScatterBrushTool
    0xec09000 -  0xec0dfef +com.adobe.illustrator.plugins.GlobalAdjust (Reshape Tool version 14.0.0 - 14.0.0) <D6B5A699-E443-4D3A-87AA-FC7D8E2CB319> /Applications/Adobe Illustrator CS4/*/GlobalAdjust
    0xec11000 -  0xec30fcb +com.adobe.illustrator.plugins.ParticlePaint (Symbolism version 14.0.0 - 14.0.0) <4A4D97AA-0B5C-4311-83FE-288839029DA7> /Applications/Adobe Illustrator CS4/*/ParticlePaint
    0xec39000 -  0xec42fe7 +com.adobe.illustrator.plugins.Magic Wand (Magic Wand version 14.0.0 - 14.0.0) <93E02FBC-89CC-4486-B643-7F7B01E3C149> /Applications/Adobe Illustrator CS4/*/Magic Wand
    0xec46000 -  0xec5dff3 +com.adobe.illustrator.plugins.Liquify (Liquify version 14.0.0 - 14.0.0) <C16C9B41-5869-4A14-A5B7-8AC978B5FDFD> /Applications/Adobe Illustrator CS4/*/Liquify
    0xec61000 -  0xec68feb +com.adobe.illustrator.plugins.Lasso (Lasso version 14.0.0 - 14.0.0) <7C893464-927E-4EFC-B6FB-2F3E10F9A199> /Applications/Adobe Illustrator CS4/*/Lasso
    0xec6d000 -  0xec70fef +com.adobe.illustrator.plugins.KnifeTool (Knife Tool version 14.0.0 - 14.0.0) <79C5F1A2-6CF0-4A1D-9B50-7BE467DD80A6> /Applications/Adobe Illustrator CS4/*/KnifeTool
    0xec74000 -  0xeca8fdf +com.adobe.illustrator.plugins.EraserTool (EraserTool version 14.0.0 - 14.0.0) <1744EECA-69F1-4C93-AA06-B89075F3EEBE> /Applications/Adobe Illustrator CS4/*/EraserTool
    0xecb0000 -  0xecd8fec +com.adobe.illustrator.plugins.CalligBrushTool (Calligraphic Brush Tool version 14.0.0 - 14.0.0) <FA25241B-421C-49D6-BE9D-8BC1430E9828> /Applications/Adobe Illustrator CS4/*/CalligBrushTool
    0xecdf000 -  0xecf2ff7 +com.adobe.illustrator.plugins.BoundingBox (BoundingBox version 14.0.0 - 14.0.0) <D05C0C30-D456-4E98-9BC4-92C2294FB49F> /Applications/Adobe Illustrator CS4/*/BoundingBox
    0xecf6000 -  0xed21fd6 +com.adobe.illustrator.plugins.ArtBrushTool (Art Brush Tool version 14.0.0 - 14.0.0) <89FE2B11-D5DD-4DEA-966C-E1A85FB4CBAC> /Applications/Adobe Illustrator CS4/*/ArtBrushTool
    0xed28000 -  0xed87fcf +com.adobe.illustrator.plugins.PhotoshopImport (Photoshop Import version 14.0.0 - 14.0.0) <861DD58E-6EA7-4715-B877-5C75B596C85A> /Applications/Adobe Illustrator CS4/*/PhotoshopImport
    0xed9e000 -  0xfad0fff +com.adobe.psl (AdobePSL 11.0.0.1724 - 11.0.0.1724) <6BE27A60-E0F9-4483-8E57-2A7A5227D878> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0xfe04000 -  0xfe05ff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xfe0a000 -  0xfe36fff +com.adobe.illustrator.plugins.ExpressView Support (OS Express Views version 14.0.0 - 14.0.0) <4D362918-5276-46B4-9825-5CAE899E9EE5> /Applications/Adobe Illustrator CS4/*/ExpressView Support
    0xfe41000 -  0xfe8aff4 +com.adobe.illustrator.plugins.MPSParser (MPSParser version 14.0.0 - 14.0.0) <67607461-914F-440E-8624-381CC2A0079E> /Applications/Adobe Illustrator CS4/*/MPSParser
    0xfea0000 -  0xfed0fcc +com.adobe.illustrator.plugins.MPSExport (MPSExport version 14.0.0 - 14.0.0) <DD69AB2F-78AB-4225-9DCE-2141648F6E1E> /Applications/Adobe Illustrator CS4/*/MPSExport
    0xfee0000 -  0xfee1fff +com.adobe.illustrator.plugins.MPSCommon (MPSCommon version 14.0.0 - 14.0.0) <4CBB7829-A13E-41B3-9273-2223506DE716> /Applications/Adobe Illustrator CS4/*/MPSCommon
    0xfee5000 -  0xff03ff4 +com.adobe.illustrator.plugins.Scribble (Scribble version 14.0.0 - 14.0.0) <66F69AF3-2A26-4B2A-88E8-64568F71EA80> /Applications/Adobe Illustrator CS4/*/Scribble
    0xff0a000 -  0xff16ff3 +com.adobe.illustrator.plugins.Pathfinder (Pathfinder Plugin version 14.0.0 - 14.0.0) <7288F843-177B-43CE-9876-AB66A84A2F69> /Applications/Adobe Illustrator CS4/*/Pathfinder
    0xff1a000 -  0xff2ffc4 +com.adobe.illustrator.plugins.WelcomeScreen (WelcomeScreenn version 14.0.0 - 14.0.0) <780173AB-6EAA-4EF6-9D79-99CE78F0BF06> /Applications/Adobe Illustrator CS4/*/WelcomeScreen
    0xff35000 -  0xff48fd7 +com.adobe.illustrator.plugins.TransparencyPalette (Transparency Palette version 14.0.0 - 14.0.0) <2FC5A6F7-E157-4BE3-9490-657B1198825D> /Applications/Adobe Illustrator CS4/*/TransparencyPalette
    0xff4c000 -  0xff5dff6 +com.adobe.illustrator.plugins.SeparationPreview (Separation Preview version 14.0.0 - 14.0.0) <F0B42349-86B6-489E-A1ED-62DAB50BB12F> /Applications/Adobe Illustrator CS4/*/SeparationPreview
    0xff64000 -  0xff69fff +com.adobe.illustrator.plugins.PathSuite (PathConstruction Suite version 14.0.0 - 14.0.0) <667209A1-821D-468E-B3F5-67ADCC0A5B59> /Applications/Adobe Illustrator CS4/*/PathSuite
    0xff6d000 -  0xff93fdf +com.adobe.illustrator.plugins.LiveBlends (Live Blends version 14.0.0 - 14.0.0) <5949CA4F-0265-4001-827A-FDF67CE6E1C4> /Applications/Adobe Illustrator CS4/*/LiveBlends
    0xff98000 -  0xffc6fcf +com.adobe.illustrator.plugins.Layers (Layers Palette version 14.0.0 - 14.0.0) <F13985B8-7110-4AC4-A93B-30A650274B81> /Applications/Adobe Illustrator CS4/*/Layers
    0xffce000 -  0xffe4fef +com.adobe.illustrator.plugins.KBSCPlugin (Keyboard Shortcuts version 14.0.0 - 14.0.0) <8BA6912E-AC74-4FCE-97FF-02BF2F81958D> /Applications/Adobe Illustrator CS4/*/KBSCPlugin
    0xffeb000 -  0xffecfff +com.adobe.illustrator.plugins.FlattenS (Flatten Suite version 14.0.0 - 14.0.0) <34B0A010-1099-474C-9B2B-4D923FB10287> /Applications/Adobe Illustrator CS4/*/FlattenS
    0xfff0000 -  0xfff6feb +com.adobe.illustrator.plugins.FileClipboardPref (FileClipboardPref version 14.0.0 - 14.0.0) <A968F7DC-F8B2-46A3-8C78-1D129B37588E> /Applications/Adobe Illustrator CS4/*/FileClipboardPref
    0xfffa000 - 0x10056fd2 +com.adobe.illustrator.plugins.ArtStyle (Art Style version 14.0.0 - 14.0.0) <DAA8C2E9-65A7-40ED-B8D5-FF78F297EDA6> /Applications/Adobe Illustrator CS4/*/ArtStyle
    0x10062000 - 0x10071ff3 +com.adobe.illustrator.plugins.AppBarControlsPlugin (NewPlugin version 14.0.0 - 14.0.0) <C50066DB-5E97-4C95-AECB-BD0A1BBD2769> /Applications/Adobe Illustrator CS4/*/AppBarControlsPlugin
    0x10077000 - 0x100a7ffb +com.adobe.illustrator.plugins.AltGlyphPal (AdobeAltGlyphPalette version 14.0.0 - 14.0.0) <FC1467B2-2A62-408E-A38D-A1F8EC209A52> /Applications/Adobe Illustrator CS4/*/AltGlyphPal
    0x100b8000 - 0x100c9ff6 +com.adobe.illustrator.plugins.Align (AdobeAlignObjects version 14.0.0 - 14.0.0) <1E8046C8-EAE8-445B-83F3-B2AF0F4D3452> /Applications/Adobe Illustrator CS4/*/Align
    0x100ce000 - 0x10105fff +com.adobe.illustrator.plugins.ActionPalette ( Action Palette version 14.0.0 - 14.0.0) <49FF537C-26F4-450A-B7DE-59859F5A6DC0> /Applications/Adobe Illustrator CS4/*/ActionPalette
    0x1010f000 - 0x101a4fc1 +com.adobe.illustrator.plugins.PDF Format (PDF Format version 14.0.0 - 14.0.0) <C88425A7-C3DA-493B-AC3E-48AB988A3CD4> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/PDF Format.aip/Contents/MacOS/PDF Format
    0x101c2000 - 0x10211ff3 +FilterPort (??? - ???) <7CF9F9BD-8C11-4F4C-A56F-D02923DA26C4> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/FilterPort.framework/Versions/A/FilterPort
    0x102b0000 - 0x102f3fef +ADMEveParserCarbon (??? - ???) <E2B97059-2ECE-46E3-B0FA-E99EA7035CEC> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ADMEveParserCarbon.bundle/Contents/MacOS/ADME veParserCarbon
    0x1030d000 - 0x10315feb +com.adobe.illustrator.plugins.TextWrapDlg (TextWrapDlg version 14.0.0 - 14.0.0) <98A0EA55-C4D8-4204-9573-61592D2660A1> /Applications/Adobe Illustrator CS4/*/TextWrapDlg
    0x10319000 - 0x10326fff +com.adobe.illustrator.plugins.Advanced Select (Advanced Select version 14.0.0 - 14.0.0) <C0673233-D6ED-4333-B8DC-1EDB6B9436B0> /Applications/Adobe Illustrator CS4/*/Advanced Select
    0x1033b000 - 0x1033ffff +com.adobe.illustrator.plugins.TypeCase (Change Case version 14.0.0 - 14.0.0) <7DF88FF2-4C03-499F-A390-0C4D9C17B27D> /Applications/Adobe Illustrator CS4/*/TypeCase
    0x1344c000 - 0x13aeefef +com.macromedia.Flash Player.authplaylib (10.0.2.31 - 1.0.1d333) <E0851D48-16C9-4BDC-B3A7-7BAC9E7638F5> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Resources/AuthPlayLib.bu ndle/Contents/MacOS/AuthPlayLib
    0x13c37000 - 0x13c63ff3  com.apple.audio.CoreAudioKit (1.6.3 - 1.6.3) <7D47B1D3-4410-3524-BC47-FCDF49E48DB5> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x14d0c000 - 0x14d64fff +com.DivXInc.DivXDecoder (6.8.4.3 - 6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x15c2e000 - 0x15c8aff2 +AdobeUpdater (??? - ???) <064CFAA4-1CAF-46E3-BEBF-04948641C927> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeUpdater.framework/Versions/A/AdobeUpda ter
    0x15f00000 - 0x16382fe3 +AdobeLM_libFNP.dylib (??? - ???) <02E9AC76-9CC6-4974-AF05-48E737C2CC20> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/AdobeLM_libFNP. dylib
    0x16600000 - 0x16707fcf +com.adobe.versioncue (??? - 4.0.1.095) /Library/Application Support/Adobe/*/VersionCue.framework/VersionCue
    0x16853000 - 0x168aefe7 +com.adobe.illustrator.plugins.PDF Suite (PDF Suite version 14.0.0 - 14.0.0) <586E2428-342D-4C78-89F0-56A0FD10246A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/PDF Suite.aip/Contents/MacOS/PDF Suite
    0x40000000 - 0x400ae030 +AdobeJP2K (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe8e000 - 0x8fec0aa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x90021ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9007e000 - 0x9014effb  com.apple.ImageIO.framework (3.1.2 - 588) <1AA18570-B5F8-3B1E-9D0A-0EDD866E5131> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90151000 - 0x9016efff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x9016f000 - 0x9019eff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x9019f000 - 0x90200ffb  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <7A14BE52-6789-3CE3-9AE9-B733F4903EB1> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90210000 - 0x90210fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90238000 - 0x902a7fff  com.apple.Heimdal (2.2 - 2.0) <8ACC5067-441D-31C2-ACBD-4527C1AD73EF> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x902a8000 - 0x902b1ff3  com.apple.CommonAuth (2.2 - 2.0) <6F207851-084B-3354-A1B2-63065BC584F6> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x90587000 - 0x90c13ff5  com.apple.CoreAUC (6.16.12 - 6.16.12) <9D51400F-B827-3BA7-87F5-954A1CDDAEA9> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x90c14000 - 0x90c1afff  libGFXShared.dylib (??? - ???) <9C9834EB-B794-38C8-9B90-31D8CB234F86> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x90c1b000 - 0x90c1bfff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90c1c000 - 0x90c39ff3  com.apple.openscripting (1.3.3 - ???) <0579A4CB-FD6F-3D7F-A17B-AC0F2CF11FC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x90c3a000 - 0x90c48ff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x90e4d000 - 0x90e51ff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x90ea5000 - 0x90eadfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90ef0000 - 0x90ef3ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <16DCE20A-9790-369A-94C1-B7954B418C77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90ef4000 - 0x90f81ff7  com.apple.CoreText (220.22.0 - ???) <EA7210A7-DECC-3F76-8A66-D4E41859B3C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90f82000 - 0x91a17ff6  com.apple.AppKit (6.7.5 - 1138.51) <B9D3DCA0-9765-354E-9730-75A45A97DDFD> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91a18000 - 0x91a80fff  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <B24814AB-CA77-3B9D-8FAB-58C9B4FD3A16> /usr/lib/libc++.1.dylib
    0x91c89000 - 0x91c94ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <D6E17FD4-ECA0-3EEE-BFC5-F6A42A21AB5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91c95000 - 0x91cbaff9  libJPEG.dylib (??? - ???) <0E0B7B77-582B-3D85-9CCA-ACFBCF196C98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91cbb000 - 0x91d5ffff  com.apple.QD (3.40.1 - ???) <B5650C5E-AB41-3758-84A1-5A97EDCD8EFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91d60000 - 0x91dfcfff  com.apple.ink.framework (10.7.5 - 113) <05CAFB64-D3B8-3973-87EA-CB8BBE580F6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x91f45000 - 0x91f47ff9  com.apple.securityhi (4.0 - 1) <39157216-5E43-392A-AE3F-716726D8C8BF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91f48000 - 0x91f49ff7  libsystem_sandbox.dylib (??? - ???) <036370E2-9D3E-38B8-B3A5-9056C57E780E> /usr/lib/system/libsystem_sandbox.dylib
    0x91f81000 - 0x91f81fff  libOpenScriptingUtil.dylib (??? - ???) <E4C22B65-9493-31D5-9D46-19BD70975587> /usr/lib/libOpenScriptingUtil.dylib
    0x91f82000 - 0x91f83ff7  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <46980EC2-149D-3CF7-B29A-401FB89C275D> /usr/lib/system/libquarantine.dylib
    0x91f84000 - 0x91f88ffd  IOSurface (??? - ???) <EDDBEE65-1EB8-33A7-9972-E361A3508234> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x91f89000 - 0x91fbfff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9232f000 - 0x92344ff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <E5FCA336-7E47-343E-A82D-CCCA5BCD5929> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92345000 - 0x923ccfff  com.apple.print.framework.PrintCore (7.1 - 366.3) <EEC03CAB-7F79-3931-87FE-4DF0B767BF47> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x923cd000 - 0x9245afe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9245d000 - 0x924c1fff  com.apple.framework.IOKit (2.0 - ???) <94827954-5906-36C4-819B-24CDAFD85C72> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x924c2000 - 0x924e4ff8  com.apple.PerformanceAnalysis (1.11 - 11) <453463FF-7C42-3526-8C96-A9971EE07154> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x924e5000 - 0x9250fff1  com.apple.CoreServicesInternal (113.20 - 113.20) <13FA1378-67CB-3579-BF83-D11E9425799F> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x9256d000 - 0x92765ff7  com.apple.CoreData (104.1 - 358.14) <C1730963-F75D-3338-B65F-D50235538B28> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x92766000 - 0x9276eff3  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <9E6135FF-C2B1-3BC9-A160-B32D71BFA77C> /usr/lib/system/liblaunch.dylib
    0x927a3000 - 0x927b1fff  com.apple.opengl (1.8.1 - 1.8.1) <766AFB12-A2CB-3A55-B662-FC9FFCAE0008> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x927b2000 - 0x927b6fff  libGIF.dylib (??? - ???) <2ADFED97-2228-343D-9A53-207CBFDE7984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x927b7000 - 0x927ccfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x927cd000 - 0x927cdff0  com.apple.ApplicationServices (41 - 41) <C48EF6B2-ABF9-35BD-A07A-A38EC0008294> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x927ce000 - 0x927e1ff8  com.apple.MultitouchSupport.framework (231.4 - 231.4) <083F7787-4C3B-31DA-B5BB-1993D9A9723D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x92b0f000 - 0x92b13ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <56256537-6538-3522-BCB6-2C79DA6AC8CD> /usr/lib/system/libcache.dylib
    0x92e5b000 - 0x92e5dffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92e5e000 - 0x92e68ff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92ee8000 - 0x92ee9ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <2F4B35B2-706C-3383-AA86-DABA409FAE45> /usr/lib/system/libunc.dylib
    0x92eea000 - 0x92eeafff  com.apple.vecLib (3.7 - vecLib 3.7) <8CC

  • Is anyone experiencing problems with opening mission control from the desktop.  Running mountain lion with parallels 7 and windows 7

    is anyone experiencing problems with opening mission control from the desktop.  Running mountain lion with parallels 7 and windows 7

    I had been having a similar problem on Lion with Safari pdf files despite downloading the latest Adobe Reader XI.
    I would constantly get the same messages - There was an error opening this document. The file is damaged and could not be repaired. And I would get a blank page when I tried to print the pdf if I tried printing from the Safari web page using File - Print from the top toolbar on my laptop.
    Then I came across the grey Safari lozenge with action icons.
    This allowed me, without downloading the pdf, to print the pdf file direct from the Safari page by using the Print icon on the grey lozenge that appears centrally three quarters down the screen.
    Then I discovered that if I save the pdf using the Save icon from this same grey lozenge on the Safari page I can open and print this pdf version from my desktop.
    I've tested it with a couple of different pdf files and these methods work using the grey lozenge icons but the same pdfs files don't work using File - Save As on the Tool Bar.

  • Problems with open an Indesign-Document over Network

    Hallo,
    we have a specialized problem with opening indesign-documents over network. Our users works with windows-pc (windows7) and adobe CS5 and CS6 and they will use there documents which are on our macserver 4.0 which works on OS X 10.10.2.
    Sometimes the usurers become this Message
    Wouldn't work indesign proberly on windows with documents which are on a macserver?
    Please help me.
    best regards
    chris mueller

    @Naga Sai J – you cannot open an InDesign CS4 file in the previous version.
    But you can export an exchange file format for InDesign CS3.
    Go to File/Export and chose INX for export: "InDesign CS3 Interchange-Format (INX)"
    That .inx file could be opened with InDesign CS3.
    After opening the .inx file, examine it well!
    Some things might have changed (things regarding to newer or changed features from InDesign CS4).
    Uwe

  • I recently upgraded to Lion, and immediately started having consistent problems with Open Office 12 (would hang, and need a Force quit to recover). Has anybody else seen these problems? Any solutions other than going back to Snow Leopard? (I did).

    I recently upgraded to Lion, and immediately started having consistent problems with Open Office 12 (would hang, and need a Force quit to recover). Has anybody else seen these problems? Any solutions other than going back to Snow Leopard? (I did). But I'd like to use iCloud with iPad.

    Hi Pete. The repair of disk permissions can help resolve  any application crashing or misbehaving.
    As for Lion and the two camps, I think that is a reasonable observation. In my office we have about a dozen Mac's and about one third of those Mac's had problems after updating from 10.6 to 10.7. The main problem for these Mac's was a loss of wifi stability. But for the other two-thirds, Lion was a smooth transition.
    Personally, my Lion experience was fine. But I did get a new i7 MacBook Pro with Lion already installed and only had to migrate my user data from a 10.6.8 TM backup.
    So I think that is a key for Lion's operational success. A clean install of Lion on a new Mac would not cause too many operational issues. But an installation, or more correctly, an update to Lion from SL increased the chances of failure for some users - especially when old software & plugins resided on the Mac. And I would say that they were the people that you saw at the Apple store.
    As for the "latest release of Lion fixed my problems" statement, my experience with these and other forums is that people mostly only go there to complain about the problems they are having. If they are having no problems then they either keep it to themselves or they try to help the users who are experiencing trouble...

  • Problem with opening a indd file in CC 2014.

    When I'm trying to open a 5.5 .indd-file in CC 2014 on my Windows computer, I get this error message: 'Either the file does not exist or you do not have permission to open it or the file is used by another program'. However my collague has no problem with opening the document on his Mac computer. I guess it has something to do with a kind of setting in my CC 2014. Can anyone help me?

    Nothing to do with ID. It really means what it says - your file permissions are hosed and it being an ID file this could include things like fonts or placed images referenced within it.
    Mylenium

Maybe you are looking for

  • TS3899 None of this works, now what?

    Tried all of Apples suggestions.  Still cannot send email from my Ipad.

  • How to prevent error message for material description in MDG material detail screen, when user click on check action

    Dear Experts, I have a requirement for making material description as non mandetory in change request view of mdg material screen. I have done that using field usage in get data method of feeder classes, but still message is displaying. This message

  • Get only one row for each kind of a column

    hi there! i have a little problem. I have a table with 10 columns. One of them has repeated values. My goal is to get all the rows with this column only one time for each values that it has. Ex: Col1 Col2 Col3 A A A B B B C A C D C D Column 2 has rep

  • Late 2007 iMac powering off randomly

    Ok, so I made a thread a year ago about this problem. Basically, my iMac about eight months after purchasing it (on the 13/10/07), started randomly shutting down and restarting. After a few months, it then couldn't be powered up at all. I sent it awa

  • Alerts arriving unwanted and irrelevant

    I see iCal Alerts for events on an accessed calendar (my wife's, and it's a 'CalDav' Google Calendar) appearing on my screen whether her calendar is selected for display on my screen or not. My iCal also mirrors my Google Calendar without this Alert