Link problem with Fireworks CS5 - net::ERR_FILE_NOT_FOUND

Hi,
I'm having trouble with the hotspot links in Fireworks CS5. When I've added the links I want and click F12 to preview in Chrome, it loads the page without problems. But when I click on one of the links I get the following message:
Webpage cannot be found
There was no webpage at the adress: file:///C:/Users/Margiiie/AppData/Local/Temp/FWTemp/LinkedPage.htm
Error 6 (net::ERR_FILE_NOT_FOUND): Could not find file or catalogue.
(translated by me from Swedish to English, so it might not be 100% correctly translated).
A few days ago I used Revo Uninstaller Pro to remove some files from my computer, and I remember clicking "Remove temporary Internet Files" on all of the web browsers. This might have something to do with the problem, but I can't seem to able to recover the files I removed..
So, I really need som help here! Do you think that the removal of the temp files is the problem? What can I do about it?
Regards,
Margiiie

If you tried a) refreshing/reloading the page within the browser and b) emptying the contents of the FWTemp folder, and neither of those worked, then I'd take another look at the link itself. Assuming there are other links on the page you've created, compare the links within Fireworks: Are there any differences between them? Would it be possible to re-enter or re-establish the problem link's URL?
One thing I notice in your intial post is that "LinkedPage.htm" seems all by itself within the FWTemp folder, instead of being placed in a subfolder. When I generate a preview in FW, it places the contents in a folder (named with a random number), like this:
file:///Users/doug/Library/Application%20Support/Macromedia/Fireworks%208/FWTemp/24327926/ 00000002.htm
Generally, a website observes a folder hierarchy. I'd kind of expect "LinkedPage.htm" to be in the same folder as the "index.htm" or whatever your problem page is called.
I have to admit, I don't use Fireworks to create and preview web pages, so I'm not completely versed in how it works for a full website. I'm not 100% certain that previewing an individual page should result in a functional preview of an entire site. In other words, I'm not certain that links are supposed to work if they lead to another page within the same site (assuming you're previewing one page at a time). If this remains a problem, I'd suggest letting it go for now. Try File > Export instead, and make sure you're exporting all the pages in the site. If that works, then you're in good shape.

Similar Messages

  • Problems with premiere Cs5.5

    I am having more and more problems with premiere CS5.5... I am running it on a windows base system. It freezes all the time and now I am not able to render... can someone, please, enlight me why? I am not using creative cloud, just the old set up... thank

    More information needed for someone to help... please click below and provide the requested information
    -Premiere Pro Video Editing Information FAQ http://forums.adobe.com/message/4200840
    •What is your exact brand/model graphics adapter (ATI or nVidia or ???)
    •What is your exact graphics adapter driver version?
    •Have you gone to the vendor web site to check for a newer driver?
    •For Windows, do NOT rely on Windows Update to have current driver information
    •-you need to go direct to the vendor web site and check updates for yourself
    •nVidia Driver Downloads http://www.nvidia.com/Download/index.aspx?lang=en-us
    •ATI Driver Autodetect http://support.amd.com/en-us/download/auto-detect-tool
    Exactly what is INSIDE the video you are editing?
    Codec & Format information, with 2 links inside for you to read http://forums.adobe.com/thread/1270588
    Report back with the codec details of your file, use the programs below... A screen shot works well to SHOW people what you are doing
    https://forums.adobe.com/thread/1070933 for screen shot instructions
    Free programs to get file information for PC/Mac http://mediaarea.net/en/MediaInfo/Download

  • Problem with ID CS5 to epub

    Dear Adobe
    I have the following problem with Indesign CS5.
    After placing correctly my pdf doc into ID CS5 and exporting it for epub, the exported epub file is generated with only small size. I mean when i opened the epub file with Adobe digital edition, i can not maximums the size of the doc. I think the problem is that ID CS5 is added a page number for only the first page in the right bottom of the first page only. This will makes the doc to be displayed with maximum only by adding an extra blank page to the right of each generated page which contains only a page number, so that I can not change the display size in Adobe digital edition. However, Adobe digital edition is working well for other e-books.
    How can I remove the page number on the first page and make the epub file to be displayed with normal size.
    best regards
    thaar al_taiey

    The InDesign forum is here:
    http://forums.adobe.com/community/indesign/indesign_general
    This forum is for problems with the forum itself.
    Good luck.

  • Problem with ID CS5 to epub - Please Help

    Dear Adobe
    I have the following problem with Indesign CS5.
    After placing correctly my pdf doc into ID CS5 and everything is OK, I exported it for epub, the exported epub file is generated with only small page size. I mean when i opened the epub file with Adobe digital edition, i can not maximums the size of the doc. I think the problem is the ID CS5 is added a blank page in the right of each page. The blank page contains only a page number for only the first page in the right bottom of the first page only. This will makes two pages to be displayed and tends to reduce the size of original page and the epub-doc to be displayed with maximum size only by adding an extra blank page to the right of each generated page which contains only a page number.
    How can I remove the page number on the first added page and make the epub file to be displayed with normal size.
    best regards
    thaar al_taiey
    Message was edited by: thaar_altaiey

    can anyone help

  • Re: Fwd: Link Problems With Borland C++ 4.52

    I have seen this problem before in another context, and I'll offer the
    cause and solution in the hope that they will apply to the Crystal problem.
    Many Windows based applications rely on PASCAL calling conventions, which
    change the way parameters are handled in function/method calls. They
    indicate this by placing one of the following immediately before the
    function name in the prototype declarations:
    - pascal_far (or something like that)
    - WINAPI
    - some other typedef of either of the above
    For example:
    int WINAPI AddTotal(int valueA, int valueB);
    Unfortunately, v2.0 of Forte does not provide any mechanisms for changing
    the calling conventions of the prototypes in the generated C++ wrapper
    library, so when you compile that code, the linker fails. I think that the
    compiler may generate different symbols depending on calling conventions,
    so that's why it fails.
    To fix this, don't autocompile your code, but generate the distribution, go
    into the generated C++ files and look for the function prototypes (I think
    you can search for FORTE_NO_PROTOTYPES), add WINAPI to the appropriate
    places in the prototype definitions (see above) and use fcompile to build
    the library. Instructions for fcompile are in the Interfacing With
    External Systems manual.
    Hope this helps,
    James
    At 11:05 AM 5/29/97 PDT, you wrote:
    >
    We are trying to wrapper Crystal Reports from Forte. I know that there
    are a number of other people in this same boat, as I've seen messages
    posted here at various points during the past few weeks. We are having
    a particular problem with getting the compile to go through, which we
    have sent in to Forte Tech Support. I'm forwarding the message I sent
    Tech Support to this group in the hopes that someone here may have
    already seen and resolved a similar problem.
    Thanks in advance for any help you can offer!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    >
    Date: Wed, 28 May 97 13:47:20 PDT
    From: dg7077a
    To: Forte Technical Support
    Cc: Gardner, Steve
    Subject: Link Problems With Borland C++ 4.52
    Name of requestor: [Dale V. Georg / Alaiah Chandrashekar]
    Company: [Indus Consultancy Services]
    Phone for callback: [(610) 709-3956]
    Customer Site: [Mack Trucks, Inc.]
    Product: [Forte]
    Version of Forte: [2.0.H.1]
    Server OS: [SunOS 5.5.1]
    Client OS: [Windows 3.1]
    DBMS: [Oracle 7.2.3]
    Reproducible?: [Yes]
    Brief description: [Link Problems With Borland C++ 4.52]
    Complete description of problem or question:
    We are attempting to write a C-wrapper interface from Forte to Crystal
    Reports' Report Engine. We are using Borland C++ version 4.52.
    Unfortunately, we have been unable to get a clean compile after a day
    and half of effort. We get as far as the link stage of the
    compilation, and
    the compiler aborts with an "Unknown symbol" error message for each
    of the functions we are trying to wrapper. We have tried a number of
    ideas to fix this problem, and are continuing to try to solve it on
    our own,
    but any help would be greatly appreciated. Please have someone call
    Alaiah Chandrashekar at the number above as soon as possible.
    Thanks!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    James Urquhart [email protected]
    Product Manager phone: (510) 986-3513
    Forte Software, Inc. fax: (510) 869-2092

    James,
    Thanks for your quick response. Yesterday we had been running down
    the path of examining the calling conventions and trying to change them
    to PASCAL, but without much success. After receiving your note, we
    went back over it again, and this time we were able to finally to piece it
    together. In addition to editing the Forte-generated .cc file to declare
    the functions as PASCAL, we also had to turn off the compiler's case
    sensitivity. (The Crystal .lib file had the function names in mixed case,
    but the Borland compiler was generating all uppercase for the names.)
    Now I had actually tried this yesterday and it didn't work (in fact it
    generated a whole bunch of new errors) - because until we took a
    second look at it today, I didn't realize that Borland's linker actually has
    TWO flags that control case sensitivity. If you only turn one or the
    other off, things can get pretty ugly looking. As soon as we turned
    both of them off, the compile and link went beautifully. Again, thanks
    for your help; hopefully we are over the worst of it now!
    Dale
    I have seen this problem before in another context, and I'll offer the
    cause and solution in the hope that they will apply to the Crystalproblem.
    >
    Many Windows based applications rely on PASCAL callingconventions, which
    change the way parameters are handled in function/method calls.They
    indicate this by placing one of the following immediately before the
    function name in the prototype declarations:
    - pascal_far (or something like that)
    - WINAPI
    - some other typedef of either of the above
    For example:
    int WINAPI AddTotal(int valueA, int valueB);
    Unfortunately, v2.0 of Forte does not provide any mechanisms forchanging
    the calling conventions of the prototypes in the generated C++wrapper
    library, so when you compile that code, the linker fails. I think thatthe
    compiler may generate different symbols depending on callingconventions,
    so that's why it fails.
    To fix this, don't autocompile your code, but generate thedistribution, go
    into the generated C++ files and look for the function prototypes (I think
    you can search for FORTE_NO_PROTOTYPES), add WINAPI tothe appropriate
    places in the prototype definitions (see above) and use fcompile tobuild
    the library. Instructions for fcompile are in the Interfacing With
    External Systems manual.
    Hope this helps,
    James
    At 11:05 AM 5/29/97 PDT, you wrote:
    We are trying to wrapper Crystal Reports from Forte. I know that
    there
    are a number of other people in this same boat, as I've seenmessages
    posted here at various points during the past few weeks. We arehaving
    a particular problem with getting the compile to go through, whichwe
    have sent in to Forte Tech Support. I'm forwarding the message Isent
    Tech Support to this group in the hopes that someone here mayhave
    already seen and resolved a similar problem.
    Thanks in advance for any help you can offer!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc.
    [email protected]
    >
    >>
    Date: Wed, 28 May 97 13:47:20 PDT
    From: dg7077a
    To: Forte Technical Support
    Cc: Gardner, Steve
    Subject: Link Problems With Borland C++ 4.52
    Name of requestor: [Dale V. Georg / AlaiahChandrashekar
    Company: [Indus Consultancy Services]
    Phone for callback: [(610) 709-3956]
    Customer Site: [Mack Trucks, Inc.]
    Product: [Forte]
    Version of Forte: [2.0.H.1]
    Server OS: [SunOS 5.5.1]
    Client OS: [Windows 3.1]
    DBMS: [Oracle 7.2.3]
    Reproducible?: [Yes]
    Brief description: [Link Problems With Borland C++ 4.52]
    Complete description of problem or question:
    We are attempting to write a C-wrapper interface from Forte to
    Crystal
    >>
    Reports' Report Engine. We are using Borland C++ version 4.52.
    Unfortunately, we have been unable to get a clean compile after aday
    and half of effort. We get as far as the link stage of the
    compilation, and
    the compiler aborts with an "Unknown symbol" error message foreach
    of the functions we are trying to wrapper. We have tried a numberof
    ideas to fix this problem, and are continuing to try to solve it on
    our own,
    but any help would be greatly appreciated. Please have someonecall
    Alaiah Chandrashekar at the number above as soon as possible.
    Thanks!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, [email protected]
    James Urquhart [email protected]
    Product Manager phone: (510) 986-3513
    Forte Software, Inc. fax: (510) 869-2092-----------------------------------------------------------------------------------
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    [email protected]------------------

  • Any problems with Adobe CS5.5 and the Maverick system?

    Has anyone had any problems with Adobe CS5.5 and the new Maverick OS? I don't want to install if there are issues. Thanks!

    First thing I would suggest is to upgrade your server OS to a newer version if possible. Secondly try removing the apps out of the allowable apps list and instead change it so that you allow the apps that are within the specific application folder, ex: Applications/Adobe Photoshop CS5
    I had similar problems with CS5 apps and by adding the apps by allowable folder instead it corrected my problem. Granted, if you have savvy users, there is the potential to open a can of worms here but it was the only way I could get it to work for "standard" non-admin user types.

  • Problem with illustrator cs5.1

    Hello I have a problem with illustrator CS5.1. I have a presentation with 17 artboards. Suddenly, when I openned it, the next picture appeared:
    So, when I open the file, there is nothing in it.
    ¿Could anyone help me, please?

    This might help , :- http://forums.adobe.com/thread/320876

  • Problems with the CS5.5 Design Premium Suite on OSX Lion?

    Hi, did anybody had already problems with the CS5.5 Design Premium Suite on OSX Lion? I purchased the software as a Volume licenced product recently and everything was working fine, until since few days my Indesign and Illustrator keep crashing on launch. I de-installed and re-installed the entire CS5 Suite on my iMac, but Indesign and Illustrator still keep on crashing while launching. I already rang the Adobe tech support but they are not very helpful at all... Its quite frustrating.

    Pat76 wrote:
    Hi, did anybody had already problems with the CS5.5 Design Premium Suite on OSX Lion? I purchased the software as a Volume licenced product recently and everything was working fine, until since few days my Indesign and Illustrator keep crashing on launch. I de-installed and re-installed the entire CS5 Suite on my iMac, but Indesign and Illustrator still keep on crashing while launching. I already rang the Adobe tech support but they are not very helpful at all... Its quite frustrating.
    No problems here with CS5. After I upgraded to Lion I did update to 5.5 and still did not experience any problems. There are some handy articlles on Adobe's web site relating to compatability with Lion, but I have experienced none. Have you checked the third party plug-ins in Illustrator and InDesign for compatability if you have any installed?
    Pete

  • I have problems with photoshop CS5, it is not executed, it remains looking for plugi

    I have problems with photoshop CS5, it is not executed, it remains looking for plugin

    Please read these and proceed accordingly (restoring Preferences after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved might be of special interest):
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    http://forums.adobe.com/docs/DOC-2325

  • Fwd: Link Problems With Borland C++ 4.52

    We are trying to wrapper Crystal Reports from Forte. I know that there
    are a number of other people in this same boat, as I've seen messages
    posted here at various points during the past few weeks. We are having
    a particular problem with getting the compile to go through, which we
    have sent in to Forte Tech Support. I'm forwarding the message I sent
    Tech Support to this group in the hopes that someone here may have
    already seen and resolved a similar problem.
    Thanks in advance for any help you can offer!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    Date: Wed, 28 May 97 13:47:20 PDT
    From: dg7077a
    To: Forte Technical Support
    Cc: Gardner, Steve
    Subject: Link Problems With Borland C++ 4.52
    Name of requestor: [Dale V. Georg / Alaiah Chandrashekar]
    Company: [Indus Consultancy Services]
    Phone for callback: [(610) 709-3956]
    Customer Site: [Mack Trucks, Inc.]
    Product: [Forte]
    Version of Forte: [2.0.H.1]
    Server OS: [SunOS 5.5.1]
    Client OS: [Windows 3.1]
    DBMS: [Oracle 7.2.3]
    Reproducible?: [Yes]
    Brief description: [Link Problems With Borland C++ 4.52]
    Complete description of problem or question:
    We are attempting to write a C-wrapper interface from Forte to Crystal
    Reports' Report Engine. We are using Borland C++ version 4.52.
    Unfortunately, we have been unable to get a clean compile after a day
    and half of effort. We get as far as the link stage of the
    compilation, and
    the compiler aborts with an "Unknown symbol" error message for each
    of the functions we are trying to wrapper. We have tried a number of
    ideas to fix this problem, and are continuing to try to solve it on
    our own,
    but any help would be greatly appreciated. Please have someone call
    Alaiah Chandrashekar at the number above as soon as possible.
    Thanks!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    -------------

    We are trying to wrapper Crystal Reports from Forte. I know that there
    are a number of other people in this same boat, as I've seen messages
    posted here at various points during the past few weeks. We are having
    a particular problem with getting the compile to go through, which we
    have sent in to Forte Tech Support. I'm forwarding the message I sent
    Tech Support to this group in the hopes that someone here may have
    already seen and resolved a similar problem.
    Thanks in advance for any help you can offer!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    Date: Wed, 28 May 97 13:47:20 PDT
    From: dg7077a
    To: Forte Technical Support
    Cc: Gardner, Steve
    Subject: Link Problems With Borland C++ 4.52
    Name of requestor: [Dale V. Georg / Alaiah Chandrashekar]
    Company: [Indus Consultancy Services]
    Phone for callback: [(610) 709-3956]
    Customer Site: [Mack Trucks, Inc.]
    Product: [Forte]
    Version of Forte: [2.0.H.1]
    Server OS: [SunOS 5.5.1]
    Client OS: [Windows 3.1]
    DBMS: [Oracle 7.2.3]
    Reproducible?: [Yes]
    Brief description: [Link Problems With Borland C++ 4.52]
    Complete description of problem or question:
    We are attempting to write a C-wrapper interface from Forte to Crystal
    Reports' Report Engine. We are using Borland C++ version 4.52.
    Unfortunately, we have been unable to get a clean compile after a day
    and half of effort. We get as far as the link stage of the
    compilation, and
    the compiler aborts with an "Unknown symbol" error message for each
    of the functions we are trying to wrapper. We have tried a number of
    ideas to fix this problem, and are continuing to try to solve it on
    our own,
    but any help would be greatly appreciated. Please have someone call
    Alaiah Chandrashekar at the number above as soon as possible.
    Thanks!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    -------------

  • Problems with Fireworks CS3 in Windows 7 Pro 64 bit

    I have recently upgraded to Windows 7 Pro from Windows XP Pro. My Fireworks CS3 is having a problem. I cannot select items in the left side menu bar if I minimize or move the Fireworks CS3 window. If I have just opened the window it works, but minimize the window or move it and the toolbar stops working.
    This problem is not unique to my machine. 2 other people are having the exact same problem. Here is the link to the Windows 7 forum:
    http://www.sevenforums.com/software/26957-adobe-fireworks-cs3-issue.html
    We sure could use some help. This is one of my bread and butter programs.

    I'm happy to hear you have other work-around alternatives!
    Businesses with mission-critical software usually are very careful to research that their software will run on any proposed new system or that alternative software is available. This is the main reason that Microsoft had to continue supporting XP longer than they intended. Too much business-critical software ran on XP but did not run under Vista and would take some time before it would be upgraded to do so...if at all.
    If you have "bread and butter" apps, then it was your responsibility to make sure that you could run them once you upgraded. Adobe's software worked more or less as advertised for the operating systems that were available at the time the versions were released. That's reasonable. Expecting indefinite support into the future is not.
    Fireworks isn't a $2000 product. Adobe continues product development, yes. They've moved on to CS4 and its patches. You can upgrade to FW CS4 for about $150. The system requirements for FW CS4 do not include Windows 7; note that Fireworks is only certified for 32-bit operating systems:
    http://store.adobe.com/store/en_us/popup/software/fireworks4/systemreqs.html
    However, there's a statement about CS4 applications (in general) working with Windows 7:
    http://www.adobe.com/products/fireworks/faq/?anonymous_element_1=4
    And you'd want to get the recent updater:
    http://www.adobe.com/support/fireworks/downloads_updaters.html
    speedtigger wrote:
    ... It is probably not a huge problem to fix for an Adobe engineer.
    If the feature worked under Vista but does not work under Windows 7, then that means that the problem probably lies somewhere in how the program communicates with the OS. The problem is not isolated to the tens - possibly hundreds - of thousands of lines of Fireworks code, but in how that code interacts with the Windows 7 APIs. To solve this problem is not the work of "an Adobe engineer." It's the work of a project team. It's the work of a project team which would have to be pulled off development of Fireworks CS5 for a few months to resurrect the old CS3 code, get familiar with it, and try to track down and solve the problem, then package up, test, and release a patch . By pulling resources off CS5 development, CS5 would be delayed or quality inversely impacted. Since CS3 is not a current product for sale, I can't see Adobe making this investment. There's no return on it, where there would be a return on getting a quality FW CS5 out the door on time.

  • Issue with Fireworks CS5 on Mac OSX 10.9 Mavircks - worked before?

    Tried to launch my copy of Fireworks CS5 today and it kept crashing? It had worked before, but now.. no.  I deleted the app and tried to reinstal.  Recently migrated from MacBook Pro running Mavricks and had this installed prior.  Migrated to iMac with Mavricks.. now wont launch.  Thought it was a serial number issue.  Clearly not.
    Any thoughts?

    Hi,
    Please try to change "everyone" user permissions on a share folder to modify to see if the issue still exists.
    For more detailed information, please refer to the thread below:
    Problems with permissions when copying a files and folder on Windows remote share
    https://discussions.apple.com/thread/4902764?tstart=0
    Please Note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Is anyone else having problems with Illustrator CS5 character drop down menu?

    I recently upgraded my 07 macbook pro to a 2012 macbook pro with retina display running 2.6 GHz Intel Core i7 with 16 GB 1600 MHz DDR3 memory. I had no issues with my old mac the entire adobe ran perfect now I am having issues with Illustrator CS5. Each time I navigate the character drop down menu Illustrator crashes on me. I get this page:
    Process:         Adobe Illustrator [797]
    Path:            /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         39 (15.1.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [126]
    User ID:         501
    Date/Time:       2012-12-14 12:17:36.218 -0700
    OS Version:      Mac OS X 10.8.2 (12C2034)
    Report Version:  10
    Interval Since Last Report:          71621 sec
    Crashes Since Last Report:           7
    Per-App Interval Since Last Report:  52693 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                      F6A6FD93-F75A-394C-B86B-49FE750BF130
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000001a9d2000
    VM Regions Near 0x1a9d2000:
        MALLOC_LARGE           000000001a8c5000-000000001a9d2000 [ 1076K] rw-/rwx SM=PRV 
    -->
        mapped file            000000001a9fd000-000000001aa28000 [  172K] r--/rwx SM=COW  /Library/Fonts/Lao MN.ttc
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.HIToolbox                     0x956edbf8 HIStandardMenuView::DrawItem(unsigned char, CGContext*, unsigned char) + 2616
    1   com.apple.HIToolbox                     0x956ecf06 HIStandardMenuView::DrawSelf(short, __HIShape const*, CGContext*) + 492
    2   com.apple.HIToolbox                     0x95723eac HIView::DrawCacheOrSelf(short, __HIShape const*, CGContext*) + 364
    3   com.apple.HIToolbox                     0x95723ba9 HIView::SendDraw(short, OpaqueGrafPtr*, __HIShape const*, CGContext*) + 125
    4   com.apple.HIToolbox                     0x957b09d5 HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned long, HIView*, CGContext*, unsigned char, float) + 759
    5   com.apple.HIToolbox                     0x957b0d5c HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned long, HIView*, CGContext*, unsigned char, float) + 1662
    6   com.apple.HIToolbox                     0x957b0d5c HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned long, HIView*, CGContext*, unsigned char, float) + 1662
    7   com.apple.HIToolbox                     0x957afdf0 HIView::DrawComposited(short, OpaqueGrafPtr*, __HIShape const*, unsigned long, HIView*, CGContext*) + 802
    8   com.apple.HIToolbox                     0x957afa82 HIView::Draw(short, OpaqueGrafPtr*, unsigned long) + 82
    9   com.apple.HIToolbox                     0x957afa29 HIView::Render(unsigned long, CGContext*) + 45
    10  com.apple.HIToolbox                     0x9572c460 FlushWindowObject(WindowData*, void**, unsigned char) + 812
    11  com.apple.HIToolbox                     0x95734fb1 FlushAllBuffers(__CFRunLoopObserver*, unsigned long, void*) + 245
    12  com.apple.CoreFoundation                0x929aadfe __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 30
    13  com.apple.CoreFoundation                0x929aad3d __CFRunLoopDoObservers + 381
    14  com.apple.CoreFoundation                0x92984623 CFRunLoopRunSpecific + 355
    15  com.apple.CoreFoundation                0x929844ab CFRunLoopRunInMode + 123
    16  com.apple.HIToolbox                     0x9572e15a RunCurrentEventLoopInMode + 242
    17  com.apple.HIToolbox                     0x9572ddf5 ReceiveNextEventCommon + 162
    18  com.apple.HIToolbox                     0x956f29e6 AcquireNextEventInMode + 68
    19  com.apple.HIToolbox                     0x956eff7d IsUserStillTracking(MenuSelectData*, unsigned char*) + 372
    20  com.apple.HIToolbox                     0x956dd6ae TrackMenuCommon(MenuSelectData&, unsigned char*) + 1724
    21  com.apple.HIToolbox                     0x958cfabd PopUpMenuSelectCore(MenuData*, Point, double, Point, unsigned short, unsigned int, Rect const*, unsigned short, unsigned long, Rect const*, Rect const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 1733
    22  com.apple.HIToolbox                     0x958d029c PopUpMenuSelect + 252
    23  com.adobe.illustrator                   0x005e4e7d AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 2707053
    24  com.adobe.illustrator                   0x0041a471 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 828513
    25  com.adobe.coretech.adm                  0x1090b74d 0x10900000 + 46925
    26  com.adobe.coretech.adm                  0x1093a8f1 0x10900000 + 239857
    27  com.adobe.coretech.adm                  0x1095e0f9 0x10900000 + 385273
    28  com.adobe.coretech.adm                  0x10985139 0x10900000 + 545081
    29  com.adobe.coretech.adm                  0x109857f3 0x10900000 + 546803
    30  com.adobe.coretech.adm                  0x1096cf75 0x10900000 + 446325
    31  com.adobe.coretech.adm                  0x1096d48f 0x10900000 + 447631
    32  com.apple.HIToolbox                     0x95882b6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    33  com.apple.HIToolbox                     0x9570a594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    34  com.apple.HIToolbox                     0x95709980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    35  com.apple.HIToolbox                     0x9571d855 SendEventToEventTarget + 88
    36  com.apple.HIToolbox                     0x9588dad2 SendEventFromMouseDown(OpaqueWindowPtr*, unsigned long, OpaqueEventRef*) + 167
    37  com.apple.HIToolbox                     0x9588de74 HandleWindowClick(OpaqueWindowPtr*, Point, short, unsigned long, OpaqueEventRef*) + 540
    38  com.apple.HIToolbox                     0x9588d4a3 HandleMouseEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 826
    39  com.apple.HIToolbox                     0x956f5a38 StandardWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 85
    40  com.apple.HIToolbox                     0x95882b6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    41  com.apple.HIToolbox                     0x9570a594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    42  com.apple.HIToolbox                     0x95709980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    43  com.apple.HIToolbox                     0x956f4fda CallNextEventHandler + 84
    44  com.adobe.owl                           0x06fe211d OWLControlBarCreateNonComposite + 1763
    45  com.adobe.owl                           0x06f4b2f4 OWLThemeAddBrush + 1428
    46  com.apple.HIToolbox                     0x95882b6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    47  com.apple.HIToolbox                     0x9570a594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    48  com.apple.HIToolbox                     0x95709980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    49  com.apple.HIToolbox                     0x956f4fda CallNextEventHandler + 84
    50  com.adobe.coretech.adm                  0x1096daf1 0x10900000 + 449265
    51  com.apple.HIToolbox                     0x95882b6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    52  com.apple.HIToolbox                     0x9570a594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    53  com.apple.HIToolbox                     0x95709980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    54  com.apple.HIToolbox                     0x9571d855 SendEventToEventTarget + 88
    55  com.apple.HIToolbox                     0x9573d7b7 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2141
    56  com.apple.HIToolbox                     0x9570aa3f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    57  com.apple.HIToolbox                     0x95709980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    58  com.apple.HIToolbox                     0x9571d855 SendEventToEventTarget + 88
    59  com.adobe.illustrator                   0x000aaca0 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 580772
    60  com.apple.HIToolbox                     0x95882b6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    61  com.apple.HIToolbox                     0x9570a594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    62  com.apple.HIToolbox                     0x95709980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    63  com.apple.HIToolbox                     0x957097ca SendEventToEventTargetWithOptions + 94
    64  com.apple.HIToolbox                     0x9573db7e ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 3108
    65  com.apple.HIToolbox                     0x9570aa3f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    66  com.apple.HIToolbox                     0x95709980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    67  com.apple.HIToolbox                     0x9571d855 SendEventToEventTarget + 88
    68  com.apple.HIToolbox                     0x95882267 ToolboxEventDispatcher + 82
    69  com.apple.HIToolbox                     0x95882129 RunApplicationEventLoop + 240
    70  com.adobe.illustrator                   0x000aafa1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 581541
    71  com.adobe.illustrator                   0x00112f9c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1007520
    72  com.adobe.illustrator                   0x000d412a AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 749870
    73  com.adobe.illustrator                   0x00003316 0x1000 + 8982
    Thread 1:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x935829ae kevent + 10
    1   libdispatch.dylib                       0x96c8ac71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x96c8a7a9 _dispatch_mgr_thread + 53
    Thread 3:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96769afc pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x046ea274 C_AMTUISwitchSuppressUpdates + 16864
    4   com.adobe.amt.services                  0x046e3074 C_EULA_SetState + 2166
    5   com.adobe.amt.services                  0x046ea2da C_AMTUISwitchSuppressUpdates + 16966
    6   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    7   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x966dc512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x92d6b6ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x92d6b184 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x92d6b40d TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x92d511a3 TimerThread + 324
    7   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    8   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x967620a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92d6b492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92d6b68e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92cb7b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x01681579 0x1647000 + 238969
    7   AdobeACE                                0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x967620a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92d6b492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92d6b68e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92cb7b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x01681579 0x1647000 + 238969
    7   AdobeACE                                0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x967620a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92d6b492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92d6b68e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92cb7b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x01681579 0x1647000 + 238969
    7   AdobeACE                                0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x967620a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92d6b492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92d6b68e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92cb7b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x01681579 0x1647000 + 238969
    7   AdobeACE                                0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x967620a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92d6b492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92d6b68e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92cb7b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x01681579 0x1647000 + 238969
    7   AdobeACE                                0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x967620a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92d6b492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92d6b68e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92cb7b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x01681579 0x1647000 + 238969
    7   AdobeACE                                0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x967620a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92d6b492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92d6b68e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92cb7b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x01681579 0x1647000 + 238969
    7   AdobeACE                                0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96769afc pthread_cond_wait + 48
    3   AdobeAGM                                0x01abe59d AGMInitialize + 3243373
    4   AdobeAGM                                0x01abf1ed AGMInitialize + 3246525
    5   AdobeAGM                                0x01ac4de0 AGMInitialize + 3270064
    6   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    7   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96769afc pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x17dab42f APXGetHostAPI + 2599903
    4   com.adobe.adobeswfl                     0x17b4453f APXGetHostAPI + 81135
    5   com.adobe.adobeswfl                     0x17dab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x17dab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x17dab6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    9   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96769afc pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x17dab42f APXGetHostAPI + 2599903
    4   com.adobe.adobeswfl                     0x17b4453f APXGetHostAPI + 81135
    5   com.adobe.adobeswfl                     0x17dab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x17dab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x17dab6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    9   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96769afc pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x17dab42f APXGetHostAPI + 2599903
    4   com.adobe.adobeswfl                     0x17b4453f APXGetHostAPI + 81135
    5   com.adobe.adobeswfl                     0x17dab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x17dab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x17dab6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    9   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96769afc pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x17dab42f APXGetHostAPI + 2599903
    4   com.adobe.adobeswfl                     0x17b4453f APXGetHostAPI + 81135
    5   com.adobe.adobeswfl                     0x17dab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x17dab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x17dab6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    9   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib                  0x93581c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x96761a61 nanosleep$UNIX2003 + 189
    2   com.adobe.illustrator.plugins.Scripting Support          0x1222994b PluginMain + 447467
    3   com.adobe.illustrator.plugins.Scripting Support          0x1220bb23 PluginMain + 325059
    4   com.adobe.illustrator.plugins.Scripting Support          0x12229a58 PluginMain + 447736
    5   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    6   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib                  0x9357f80e semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x00677ef4 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3309284
    2   com.adobe.illustrator                   0x006790d9 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3313865
    3   com.adobe.illustrator                   0x006792a9 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3314329
    4   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    5   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    6   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib                  0x9357f80e semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x00677ef4 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3309284
    2   com.adobe.illustrator                   0x006790d9 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3313865
    3   com.adobe.illustrator                   0x006792a9 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3314329
    4   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    5   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    6   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib                  0x93581b3e __recvfrom + 10
    1   libsystem_c.dylib                       0x96761bcb recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib           0x1b59c2d7 Invoke + 54887
    3   ServiceManager-Launcher.dylib           0x1b59b376 Invoke + 50950
    4   ServiceManager-Launcher.dylib           0x1b59a227 Invoke + 46519
    5   ServiceManager-Launcher.dylib           0x1b59a279 Invoke + 46601
    6   ServiceManager-Launcher.dylib           0x1b59a303 Invoke + 46739
    7   ServiceManager-Launcher.dylib           0x1b594706 Invoke + 23190
    8   ServiceManager-Launcher.dylib           0x1b5948ef Invoke + 23679
    9   ServiceManager-Launcher.dylib           0x1b5954cf Invoke + 26719
    10  ServiceManager-Launcher.dylib           0x1b5955cd Invoke + 26973
    11  ServiceManager-Launcher.dylib           0x1b5989b8 Invoke + 40264
    12  ServiceManager-Launcher.dylib           0x1b598c61 Invoke + 40945
    13  ServiceManager-Launcher.dylib           0x1b59928f Invoke + 42527
    14  ServiceManager-Launcher.dylib           0x1b59948c Invoke + 43036
    15  ServiceManager-Launcher.dylib           0x1b58b11a Login + 1654
    16  ServiceManager-Launcher.dylib           0x1b58c6f7 Login + 7251
    17  ServiceManager-Launcher.dylib           0x1b5999fb Invoke + 44427
    18  ServiceManager-Launcher.dylib           0x1b59bf49 Invoke + 53977
    19  libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    20  libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x966dc512 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x17dab3f7 APXGetHostAPI + 2599847
    4   com.adobe.adobeswfl                     0x17dc5e4e APXGetHostAPI + 2708990
    5   com.adobe.adobeswfl                     0x17dab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x17dab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x17dab6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    9   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x966dc512 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x17dab3f7 APXGetHostAPI + 2599847
    4   com.adobe.adobeswfl                     0x17f22348 APXGetHostAPI + 4135672
    5   com.adobe.adobeswfl                     0x17dab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x17dab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x17dab6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    9   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 26:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 27:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 28:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 29:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 30:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x000024ec  ebx: 0x00103c50  ecx: 0x8010c5ff  edx: 0x000000ff
      edi: 0x1a9c8c50  esi: 0x000025f8  ebp: 0xbfffc4d8  esp: 0xbfffc3b0
       ss: 0x00000023  efl: 0x00010283  eip: 0x956edbf8   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x1a9d2000
    Logical CPU: 0
    Binary Images:
        0x1000 -  0x10ddfe7 +com.adobe.illustrator (39 - 15.1.0) <A59087EC-3C72-CC25-4C18-47FAB3D91DFE> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    0x13fe000 -  0x14cbfe7 +AdobeAXEDOMCore (0) <F76D74DC-FD5A-9783-C447-2E58773DA7E1> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x153d000 -  0x154dfff  com.apple.carbonframeworktemplate (1.0 - 1.0) <02AB017F-BF6A-B96F-9D39-5F23B36EF2E5> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
    0x1554000 -  0x156fff9 +AdobePDFSettings (1) /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSetting s
    0x158a000 -  0x15cefff +com.adobe.illustrator.aiport (AIPort version 1.0 - 1.0) <65C09343-06AC-9256-3260-70AFDEA99C82> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x1633000 -  0x1633fff +SPBasic (0) <00D26E34-33A4-31BF-3516-87513A07D019> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x1638000 -  0x163effb +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) <5B4C881B-6885-96F2-BD05-BE9C44A7546C> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
    0x1647000 -  0x175cfff +AdobeACE (1) <BFF50B9A-8BCA-08D1-0260-FF251DA05EC7> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1782000 -  0x1ca8fff +AdobeAGM (1) <72363979-F9A0-0EA2-3E16-AB8D6EA0F12E> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1df2000 -  0x1e2efff +AdobeARE (1) <B2DBDCF9-944F-7C5A-43CF-A5E207BEE94B> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x1e38000 -  0x1e5eff6 +AdobeAXE8SharedExpat (0) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8Sh aredExpat
    0x1e71000 -  0x1e8cfff +AdobeBIB (1) <5AA925B7-D30E-B230-1B81-7CB6E3B4F2DB> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1e97000 -  0x1eb8ff7 +AdobeBIBUtils (1) <1B33B3A5-2460-EDE8-C54F-16C0335C613D> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x1ec5000 -  0x21b7ff7 +AdobeCoolType (1) <90757246-5467-2606-4095-19B63B255F2F> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x2244000 -  0x22dcfff +com.adobe.AdobeExtendScript (ExtendScript 4.1.28 - 4.1.28.13048) <A9394CC7-8E48-FE0F-FDB5-37D0FE77435B> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScr ipt
    0x233d000 -  0x2420fef +AdobePDFPort (1) <26DE29E1-7799-DBE8-47AE-A95FEA7DE1EB> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x2458000 -  0x2a8dfeb +AdobePDFL (1) <B295BDBD-65E8-CE6D-865B-79276D0507B2> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x2bc3000 -  0x2c50ff7 +com.adobe.AdobeScCore (ScCore 4.1.28 - 4.1.28.13048) <68FB7168-645E-BD55-5EAA-007315B53997> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x2c97000 -  0x2d37fef +AdobeSVGExport (0) <9B8AE7D4-C7C8-B594-9E31-BEDC07A98A56> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
    0x2d63000 -  0x3001ff2 +AdobeSVGRE (0) <95F2CE86-4B2D-C3DE-A783-8E0A0B24F74C> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
    0x30df000 -  0x3137ff7 +AdobeXMP (0) <73329999-C364-2451-6574-4D0277057D19> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x3147000 -  0x31d3fef +AdobeXMPFiles (0) <A72BD678-CAD0-0C2A-0989-11E87B154AB5> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
    0x320c000 -  0x32d9ff3 +libicui18n.dylib.36.0 (36) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/libicu i18n.dylib.36.0
    0x333c000 -  0x3416fef +libicuuc.dylib.36.0 (36) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36.0
    0x3456000 -  0x3e06fff +libicudata.dylib.36.0 (36) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x3e09000 -  0x41e1ff7 +AdobeMPS (1) <272DAEDE-FC7E-B412-7C97-CF47FF6BF242> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x4318000 -  0x4386ffb +com.adobe.amtlib (amtlib 4.0.0.21 - 4.0.0.21) <3090D254-587A-A820-DBCD-729C27532FC8> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x439d000 -  0x442eff7 +libicucnv.dylib.36.0 (36) <581475CC-C039-1B42-49BA-71811D8B4E15> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicucnv.dylib.3 6.0
    0x444d000 -  0x4633ff7 +com.adobe.linguistic.LinguisticManager (5.0.0 - 11696) <AF804353-8B13-7180-F2C8-832361EB2D5A> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x46c5000 -  0x4730fe7 +com.adobe.amt.services (AMTServices 4.0.0.21 [BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00] - 4.0.0.21) <018F21DE-7E2E-C850-4C32-D4A2131ABF74> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0x474c000 -  0x47c9fff +AdobeOwlCanvas (1) <6718BCAA-AAF5-07C2-B2F5-D7CD3BF5B924> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x47e7000 -  0x491ffe7 +WRServices (0) <87183F9D-17F4-6BDC-66A9-8FD34F320118> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x4964000 -  0x4968ffc +com.adobe.AdobeCrashReporter (3.0 - 5.5.20101001) <EA9B7B55-7FE5-14D2-FBAE-817121F94086> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashRep orter
    0x496f000 -  0x49c5ffb +com.adobe.headlights.LogSessionFramework (2.1.2.1263) <5B594BC9-5222-651B-6B70-7AD067035B1A> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x4a0e000 -  0x4a43fef +com.adobe.pip (5.5.0.1272) <4AD1ED99-8BB9-B49E-16E5-B7E7A97AAA99> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
    0x4a4e000 -  0x57a0feb +com.adobe.psl (AdobePSL 12.0.0.11086 - 12.0.0.11086) <ED38DE4D-2205-917F-EACE-6421DDE56A5B> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x5af7000 -  0x5c74fef +com.adobe.dvacore.framework (dvacore version 5.0.0 - 5.0.0.0) <49B04BBB-7249-AF03-A7B2-770443BA4AFB> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x5df1000 -  0x60e1fef +com.adobe.dvaui.framework (dvaui version 5.0.0 - 5.0.0.0) <DDA3FFE0-C30C-9863-BD85-114636A448CE> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x640e000 -  0x6754ff3 +com.adobe.dvaadameve.framework (dvaadameve version 5.0.0 - 5.0.0.0) <B7CF0778-96A1-0864-1BBA-63622803E3A3> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x6c68000 -  0x6c7afef +com.adobe.dvaai.framework (dvaai version 5.0.0 - 5.0.0.0) <A25DFA28-3208-0C10-BDC4-F164755BCDC6> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
    0x6c9e000 -  0x6ca4fef +com.adobe.boost_date_time.framework (boost_date_time version 5.0.0 - 5.0.0.0) <2CFE7AA3-09A8-EB42-AFEA-F7FB4D7DBC6F> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
    0x6cb6000 -  0x6cc1ff3 +com.adobe.boost_filesystem.framework (boost_filesystem version 5.0.0 - 5.0.0.0) <90073BD0-99ED-2715-64B8-2BB79D6F619F> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesyste m
    0x6cd6000 -  0x6d54fe2 +com.adobe.boost_regex.framework (boost_regex version 5.0.0 - 5.0.0.0) <BCC13CF6-F0A5-1C84-422B-7B11E5BB061A> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
    0x6dba000 -  0x6dc4fff +com.adobe.boost_signals.framework (boost_signals version 5.0.0 - 5.0.0.0) <88FE6D06-B15C-787D-C69C-F522CD8D3F3E> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
    0x6dd8000 -  0x6ddaffb +com.adobe.boost_system.framework (boost_system version 5.0.0 - 5.0.0.0) <4E80B05E-DF55-2776-C886-02DFE2F104CD> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
    0x6de3000 -  0x6deaff2 +com.adobe.boost_threads.framework (boost_threads version 5.0.0 - 5.0.0.0) <79C1A64C-42C7-26D1-E005-D6CB753F9B2B> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x6dfb000 -  0x6e59fe2 +com.adobe.boost_serialization.framework (boost_serialization version 5.0.0 - 5.0.0.0) <8CAB6FC6-5F13-A5C5-DF9C-41EE813A0833> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/boost_serial ization
    0x6f31000 -  0x70d0fe7 +com.adobe.owl (AdobeOwl version 3.0.89 - 3.0.89) <04CA525C-D4E0-DE62-BF07-D9EF6386AA58> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x713d000 -  0x71aafef +FileInfo (0) <4A4C74F9-CA83-B174-F56D-F7671DC61389> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x71c7000 -  0x7272fff  libcrypto.0.9.7.dylib (106) <B96063DD-DBFC-320E-97C7-9ED5099051AC> /usr/lib/libcrypto.0.9.7.dylib
    0x72b6000 -  0x72f2ff7  com.apple.vmutils (4.2.1 - 108) <7BAEDD02-19EB-33A3-85C0-9D5F8EA2F9B4> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x730c000 -  0x730fffc +com.adobe.ape.shim (adbeape version 3.1.74.12761 - 3.1.74.12761) <FE2ABE8A-1D3F-7AF5-297C-D22FC3E0FBDA> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x73ba000 -  0x73bbffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x77ea000 -  0x77f2fff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0x871c000 -  0x878cfeb +com.adobe.adobe_caps (adobe_caps 4.0.42.0 - 4.0.42.0) <55D7D2EA-D21E-98B1-77C6-58C0A0E07051> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x87bb000 -  0x87c8ff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0xb2df000 -  0xb2e0ffd  com.apple.ironwoodcore (1.1.1 - 1.1.1) <098CE576-3239-3B41-9141-A5BE6E476C84> /System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/Frameworks/Dictation ServicesCore.framework/DictationServicesCore
    0xb400000 -  0xb4beff3  ColorSyncDeprecated.dylib (400) <A959DD25-E448-3563-B74E-E58C69961C76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0xb506000 -  0xb506fff +com.adobe.illustrator.plugins.PlugInRes (Localizer version 15.1.0 - 15.1.0) <F9296CCC-1877-5C99-BD0D-98FF353B385B> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Resources/en_US/PluginRes.aip/Contents/MacOS/PlugInRes
    0xb7f3000 -  0xb7faffe +com.adobe.illustrator.plugins.Action (Action version 15.1.0 - 15.1.0) <6B497277-940C-153D-D16C-A903B81D811A> /Applications/Adobe Illustrator CS5.1/*/Action
    0xf7c8000 -  0xf7d1fff +com.adobe.illustrator.plugins.FrameworkServer (Framework Server version 15.1.0 - 15.1.0) <DD79D8B9-BF28-BAFC-422F-320B82CCDEBE> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/FrameworkServer.aip/Contents/MacOS/FrameworkServer
    0xf7d6000 -  0xf7dcff7 +com.adobe.illustrator.plugins.ArtConverters ( ArtConverters version 15.1.0 - 15.1.0) <B5D9F227-8EE9-5776-7473-A89363657087> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/ArtConverters.aip/Contents/MacOS/ArtConverters
    0xf7e1000 -  0xf7f1fff +com.adobe.illustrator.plugins.Flatten Transparency ( Flatten Transparency version 15.1.0 - 15.1.0) <4ACF5555-4B25-ED68-8AA4-30C73D06ABD2> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/Flatten Transparency.aip/Contents/MacOS/Flatten Transparency
    0xf7f9000 -  0xf7fafff +com.adobe.illustrator.plugins.ASLib (ASLib version 15.1.0 - 15.1.0) <C3CCAF66-C271-E38C-E728-8D0C3B130B64> /Applications/Adobe Illustrator CS5.1/*/ASLib
    0x101f8000 - 0x101fbfff +com.adobe.illustrator.plugins.GeometryS ( Geometry Suite version 15.1.0 - 15.1.0) <446F7740-8D38-8FFB-5C46-3D81EC06A7AA> /Applications/Adobe Illustrator CS5.1/*/GeometryS
    0x1030e000 - 0x10310fff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x10331000 - 0x10339ffc  libcldcpuengine.dylib (2.1.19) <17C33F7F-C359-313B-8044-F0E9CAC750FB> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x10356000 - 0x103b6ff6 +com.adobe.illustrator.plugins.CharParaStyles (CharParaStyles version 15.1.0 - 15.1.0) <1F6B5D01-3C30-25EF-1983-F886C4525C72> /Applications/Adobe Illustrator CS5.1/*/CharParaStyles
    0x103cc000 - 0x103d8ffb +com.adobe.illustrator.plugins.Navigator (Adobe Navigator Plugin version 15.1.0 - 15.1.0) <B72460C1-5CDB-0C66-9081-338F77FDFB51> /Applications/Adobe Illustrator CS5.1/*/Navigator
    0x103e2000 - 0x103f7fef +com.adobe.illustrator.plugins.AssetMgmt (Asset Management version 15.1.0 - 15.1.0) <55369131-910C-3CB2-854C-51DA390475B7> /Applications/Adobe Illustrator CS5.1/*/AssetMgmt
    0x10400000 - 0x1044dfff +com.adobe.illustrator.plugins.PDF Suite (PDF Suite version 15.1.0 - 15.1.0) <913AD40A-14F4-52E7-2255-45F3A676AB40> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/PDF Suite.aip/Contents/MacOS/PDF Suite
    0x10474000 - 0x10474ffd +cl_kernels (???) <0C9BDF67-97CD-48C6-8A11-95C10907B887> cl_kernels
    0x10735000 - 0x1078aff0 +com.adobe.illustrator.plugins.Photoshop Adapter (Photoshop Adapter version 15.1.0 - 15.1.0) <1D5AF9B6-DC0A-B806-97F9-44990D2F8623> /Applications/Adobe Illustrator CS5.1/*/Photoshop Adapter
    0x1079c000 - 0x107c5fef +com.adobe.ape (adbeapecore version 3.1.74.12761 - 3.1.74.12761) <21548488-E9C3-4638-D7FC-895EE0F8EE30> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
    0x107d7000 - 0x107ecfef +com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 15.1.0 - 15.1.0) <3D465C24-5F12-ACCC-147B-5E26E38EE191> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/FOConversionSuite.aip/Contents/MacOS/FOConversionSuite
    0x107f7000 - 0x107fbffb +com.adobe.illustrator.plugins.ToolSelector (Tool Selector version 15.1.0 - 15.1.0) <0465CDD6-6A03-97E4-34F5-D0438FF07B74> /Applications/Adobe Illustrator CS5.1/*/ToolSelector
    0x10900000 - 0x109d8fff +com.adobe.coretech.adm (3.10x04 - 3.1) <E520855A-838A-D4F1-D01F-8B606649C4A2> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x10a32000 - 0x10a5cfff +com.adobe.illustrator.plugins.BRSPencilTool ( Pencil Tool version 15.1.0 - 15.1.0) <32526909-0C5A-CC37-F770-6C1E522FCA81> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/BRSPencilTool.aip/Contents/MacOS/BRSPencilTool
    0x10a65000 - 0x10a85fe2 +com.adobe.illustrator.plugins.Rasterize (Rasterize version 15.1.0 - 15.1.0) <C8CDF1D0-7A90-7B0D-7D7F-12AEC5D0E7B6> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/Rasterize.aip/Contents/MacOS/Rasterize
    0x10a8c000 - 0x10ac4fff +com.adobe.illustrator.plugins.BrushManager (Brush Manager version 15.1.0 - 15.1.0) <88C037AF-3B5A-73B3-70AE-B40F44DA92CA> /Applications/Adobe Illustrator CS5.1/*/BrushManager
    0x10ace000 - 0x10b7afea +com.adobe.illustrator.plugins.ColorHarmony (ColorHarmony version 15.1.0 - 15.1.0) <92A8DDDA-69D1-FEF2-6B8A-EBA76536B1D5> /Applications/Adobe Illustrator CS5.1/*/ColorHarmony
    0x10b98000 - 0x10baeffb +com.adobe.illustrator.plugins.ControlPalette (ControlPalette version 15.1.0 - 15.1.0) <DF11A043-A25B-3DC3-725C-FB308BB20F9A> /Applications/Adobe Illustrator CS5.1/*/ControlPalette
    0x10bb5000 - 0x10bcffe2 +com.adobe.illustrator.plugins.KinsokuDlg ( KinsokuDlg version 15.1.0 - 15.1.0) <B2A3F75F-6594-D7D7-100C-76F71926535B> /Applications/Adobe Illustrator CS5.1/*/KinsokuDlg
    0x10bdb000 - 0x10c6bfeb +com.adobe.illustrator.plugins.PaintStyle (Paint Style Palettes version 15.1.0 - 15.1.0) <4BAAEDDF-AE49-3E27-028D-2B817EDA4CC1> /Applications/Adobe Illustrator CS5.1/*/PaintStyle
    0x10f27000 - 0x10fa5fe2 +com.adobe.illustrator.plugins.SwatchLibraries (Swatch Libraries version 15.1.0 - 15.1.0) <4109E4C1-17DD-905D-7EDE-7A8C702230A7> /Applications/Adobe Illustrator CS5.1/*/SwatchLibraries
    0x10fb8000 - 0x10fe8ffc +com.adobe.illustrator.plugins.SymbolPalette (Symbol Palette version 15.1.0 - 15.1.0) <27FF4833-28D4-5E93-E861-18DBB0B7C436> /Applications/Adobe Illustrator CS5.1/*/SymbolPalette
    0x10ff3000 - 0x10ff7fff +com.adobe.illustrator.plugins.ShapeS (Shape Construction Suite version 15.1.0 - 15.1.0) <537CBBB0-D112-12E3-7213-09DB911E667A> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/ShapeS.aip/Contents/MacOS/ShapeS
    0x120f2000 - 0x12373fef +com.adobe.illustrator.plugins.Scr

    HI! I'm having the same problem! Only its happing both when I use the charater pallet and when I try to print! I tried to remove the font under "Library/Fonts/AmericanTypewriter.ttc, because I think its saying that that is the problem, however, when I drag it to the trash it says its still in use and wont let me delete it! Any suggestions?
    here is what it keeps giving me:
    Process:         Adobe Illustrator [15814]
    Path:            /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         13.0.0 (13.0.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [142]
    User ID:         502
    Date/Time:       2013-01-09 14:32:48.544 -0800
    OS Version:      Mac OS X 10.8.2 (12C3012)
    Report Version:  10
    Interval Since Last Report:          129934 sec
    Crashes Since Last Report:           5
    Per-App Interval Since Last Report:  115455 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      2DED6BCA-7994-CA68-85AE-239BF3A79E52
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000002cf1e000
    VM Regions Near 0x2cf1e000:
        MALLOC_LARGE           000000002cd90000-000000002cf1e000 [ 1592K] rw-/rwx SM=PRV 
    -->
        mapped file            000000002cf95000-000000002d08a000 [  980K] rw-/rwx SM=COW  /Library/Fonts/AmericanTypewriter.ttc
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.HIToolbox                     0x94335bf8 HIStandardMenuView::DrawItem(unsigned char, CGContext*, unsigned char) + 2616
    1   com.apple.HIToolbox                     0x94334f06 HIStandardMenuView::DrawSelf(short, __HIShape const*, CGContext*) + 492
    2   com.apple.HIToolbox                     0x9436beac HIView::DrawCacheOrSelf(short, __HIShape const*, CGContext*) + 364
    3   com.apple.HIToolbox                     0x9436bba9 HIView::SendDraw(short, OpaqueGrafPtr*, __HIShape const*, CGContext*) + 125
    4   com.apple.HIToolbox                     0x943f89d5 HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned long, HIView*, CGContext*, unsigned char, float) + 759
    5   com.apple.HIToolbox                     0x943f8d5c HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned long, HIView*, CGContext*, unsigned char, float) + 1662
    6   com.apple.HIToolbox                     0x943f8d5c HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned long, HIView*, CGContext*, unsigned char, float) + 1662
    7   com.apple.HIToolbox                     0x943f7df0 HIView::DrawComposited(short, OpaqueGrafPtr*, __HIShape const*, unsigned long, HIView*, CGContext*) + 802
    8   com.apple.HIToolbox                     0x943f7a82 HIView::Draw(short, OpaqueGrafPtr*, unsigned long) + 82
    9   com.apple.HIToolbox                     0x943f7a29 HIView::Render(unsigned long, CGContext*) + 45
    10  com.apple.HIToolbox                     0x94374460 FlushWindowObject(WindowData*, void**, unsigned char) + 812
    11  com.apple.HIToolbox                     0x9437cfb1 FlushAllBuffers(__CFRunLoopObserver*, unsigned long, void*) + 245
    12  com.apple.CoreFoundation                0x95a68dfe __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 30
    13  com.apple.CoreFoundation                0x95a68d3d __CFRunLoopDoObservers + 381
    14  com.apple.CoreFoundation                0x95a42623 CFRunLoopRunSpecific + 355
    15  com.apple.CoreFoundation                0x95a424ab CFRunLoopRunInMode + 123
    16  com.apple.HIToolbox                     0x9437615a RunCurrentEventLoopInMode + 242
    17  com.apple.HIToolbox                     0x94375df5 ReceiveNextEventCommon + 162
    18  com.apple.HIToolbox                     0x9433a9e6 AcquireNextEventInMode + 68
    19  com.apple.HIToolbox                     0x94337f7d IsUserStillTracking(MenuSelectData*, unsigned char*) + 372
    20  com.apple.HIToolbox                     0x943256ae TrackMenuCommon(MenuSelectData&, unsigned char*) + 1724
    21  com.apple.HIToolbox                     0x94517abd PopUpMenuSelectCore(MenuData*, Point, double, Point, unsigned short, unsigned int, Rect const*, unsigned short, unsigned long, Rect const*, Rect const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 1733
    22  com.apple.HIToolbox                     0x9451829c PopUpMenuSelect + 252
    23  com.adobe.illustrator                   0x0049af6b 0x1000 + 4824939
    24  com.adobe.illustrator                   0x003246e8 0x1000 + 3290856
    25  com.adobe.coretech.adm                  0x2032212f 0x20319000 + 37167
    26  com.adobe.coretech.adm                  0x20347642 0x20319000 + 190018
    27  com.adobe.coretech.adm                  0x2036706b 0x20319000 + 319595
    28  com.adobe.coretech.adm                  0x2038d0ba 0x20319000 + 475322
    29  com.adobe.coretech.adm                  0x2038d77b 0x20319000 + 477051
    30  com.adobe.coretech.adm                  0x203737de 0x20319000 + 370654
    31  com.adobe.coretech.adm                  0x203741e6 0x20319000 + 373222
    32  com.apple.HIToolbox                     0x944cab6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    33  com.apple.HIToolbox                     0x94352594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    34  com.apple.HIToolbox                     0x94351980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    35  com.apple.HIToolbox                     0x94365855 SendEventToEventTarget + 88
    36  com.apple.HIToolbox                     0x944d5ad2 SendEventFromMouseDown(OpaqueWindowPtr*, unsigned long, OpaqueEventRef*) + 167
    37  com.apple.HIToolbox                     0x944d5e74 HandleWindowClick(OpaqueWindowPtr*, Point, short, unsigned long, OpaqueEventRef*) + 540
    38  com.apple.HIToolbox                     0x944d54a3 HandleMouseEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 826
    39  com.apple.HIToolbox                     0x9433da38 StandardWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 85
    40  com.apple.HIToolbox                     0x944cab6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    41  com.apple.HIToolbox                     0x94352594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    42  com.apple.HIToolbox                     0x94351980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    43  com.apple.HIToolbox                     0x9433cfda CallNextEventHandler + 84
    44  com.adobe.coretech.adm                  0x203741bb 0x20319000 + 373179
    45  com.apple.HIToolbox                     0x944cab6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    46  com.apple.HIToolbox                     0x94352594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    47  com.apple.HIToolbox                     0x94351980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    48  com.apple.HIToolbox                     0x94365855 SendEventToEventTarget + 88
    49  com.apple.HIToolbox                     0x943857b7 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2141
    50  com.apple.HIToolbox                     0x94352a3f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    51  com.apple.HIToolbox                     0x94351980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    52  com.apple.HIToolbox                     0x94365855 SendEventToEventTarget + 88
    53  com.adobe.illustrator                   0x0007c742 0x1000 + 505666
    54  com.apple.HIToolbox                     0x944cab6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    55  com.apple.HIToolbox                     0x94352594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    56  com.apple.HIToolbox                     0x94351980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    57  com.apple.HIToolbox                     0x943517ca SendEventToEventTargetWithOptions + 94
    58  com.apple.HIToolbox                     0x94385b7e ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 3108
    59  com.apple.HIToolbox                     0x94352a3f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    60  com.apple.HIToolbox                     0x94351980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    61  com.apple.HIToolbox                     0x94365855 SendEventToEventTarget + 88
    62  com.apple.HIToolbox                     0x944ca267 ToolboxEventDispatcher + 82
    63  com.apple.HIToolbox                     0x944ca129 RunApplicationEventLoop + 240
    64  com.adobe.illustrator                   0x0007c987 0x1000 + 506247
    65  com.adobe.illustrator                   0x000d2537 0x1000 + 857399
    66  com.adobe.illustrator                   0x0009dfb2 0x1000 + 642994
    67  com.adobe.illustrator                   0x00003902 0x1000 + 10498
    68  com.adobe.illustrator                   0x00003829 0x1000 + 10281
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x983a79ae kevent + 10
    1   libdispatch.dylib                       0x96652c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x966527a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x983a47d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x983a3cb0 mach_msg + 68
    2   com.apple.CoreServices.CarbonCore          0x92e4535b TS_exception_listener_thread + 89
    3   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    4   libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x983a68e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x949cc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x949cc512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x922163c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x922161ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9221b740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.adobe.illustrator                   0x00906805 0x1000 + 9459717
    7   com.adobe.illustrator                   0x008b6409 0x1000 + 9131017
    8   com.adobe.illustrator                   0x00906260 0x1000 + 9458272
    9   com.apple.Foundation                    0x921e81d8 -[NSThread main] + 45
    10  com.apple.Foundation                    0x921e815b __NSThread__main__ + 1396
    11  libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    12  libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x983a68e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x949cc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94a520a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92e48492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92e4868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92d94b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x0134c8e3 0x131c000 + 198883
    7   AdobeACE                                0x0134c111 0x131c000 + 196881
    8   com.apple.CoreServices.CarbonCore          0x92e1ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x983a68e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x949cc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94a520a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92e48492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92e4868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92d94b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x0134c8e3 0x131c000 + 198883
    7   AdobeACE                                0x0134c111 0x131c000 + 196881
    8   com.apple.CoreServices.CarbonCore          0x92e1ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x983a68e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x949cc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94a520a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92e48492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92e4868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92d94b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x0134c8e3 0x131c000 + 198883
    7   AdobeACE                                0x0134c111 0x131c000 + 196881
    8   com.apple.CoreServices.CarbonCore          0x92e1ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x983a48e6 mach_wait_until + 10
    1   libsystem_c.dylib                       0x94a58c1c nanosleep + 375
    2   com.adobe.illustrator.plugins.Save For Web(AI)          0x22e452a3 PowerPlug::Initializer::ReloadInitializers() + 141067
    3   com.adobe.illustrator.plugins.Save For Web(AI)          0x22e356b5 PowerPlug::Initializer::ReloadInitializers() + 76573
    4   com.adobe.illustrator.plugins.Save For Web(AI)          0x22e4538d PowerPlug::Initializer::ReloadInitializers() + 141301
    5   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    6   libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x983a47d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x983a3cb0 mach_msg + 68
    2   com.macromedia.Flash Player.authplaylib          0x2610be83 ExternalPlayer_Initialize + 292947
    3   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    4   libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x983a48e6 mach_wait_until + 10
    1   libsystem_c.dylib                       0x94a58c1c nanosleep + 375
    2   com.adobe.illustrator.plugins.Scripting Support          0x20a99db7 PluginMain + 377533
    3   com.adobe.illustrator.plugins.Scripting Support          0x20a9cb81 PluginMain + 389255
    4   com.adobe.illustrator.plugins.Scripting Support          0x20a99ea1 PluginMain + 377767
    5   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    6   libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x983a480e semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x00b2ba4e AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 432762
    2   com.adobe.illustrator                   0x004f83f9 0x1000 + 5207033
    3   com.adobe.illustrator                   0x004f8673 0x1000 + 5207667
    4   com.apple.CoreServices.CarbonCore          0x92e1ba7b PrivateMPEntryPoint + 68
    5   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    6   libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x983a480e semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x00b2ba4e AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 432762
    2   com.adobe.illustrator                   0x004f83f9 0x1000 + 5207033
    3   com.adobe.illustrator                   0x004f8673 0x1000 + 5207667
    4   com.apple.CoreServices.CarbonCore          0x92e1ba7b PrivateMPEntryPoint + 68
    5   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    6   libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x983a70ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x949ca04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x949c9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x949b1cca start_wqthread + 30
    Thread 13:
    0   libsystem_kernel.dylib                  0x983a70ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x949ca04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x949c9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x949b1cca start_wqthread + 30
    Thread 14:
    0   libsystem_kernel.dylib                  0x983a70ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x949ca04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x949c9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x949b1cca start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00002f00  ebx: 0x00182400  ecx: 0x8018d8ff  edx: 0x00000000
      edi: 0x2cf12400  esi: 0x00003a20  ebp: 0xbfffcb88  esp: 0xbfffca60
       ss: 0x00000023  efl: 0x00010283  eip: 0x94335bf8   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x2cf1e000
    Logical CPU: 2
    Binary Images:
        0x1000 -   0xeadffa +com.adobe.illustrator (13.0.0 - 13.0.0) <C84D4611-B74B-452A-BA0C-E186A7070438> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    0x1198000 -  0x11dffc7 +com.adobe.adobe_caps (adobe_caps 0.0.120.0 - 0.0.120.0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x11ef000 -  0x120aff9 +AdobePDFSettings (1) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSetting s
    0x1223000 -  0x1272fff +com.adobe.illustrator.aiport (AIPort version 1.0 - 1.0) <2FC98FF8-FF21-4169-B712-073D05875AE0> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x1308000 -  0x1309027 +SPBasic (0) <96841877-B752-4649-AFB7-B22A39526A19> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x130d000 -  0x1313fe7 +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
    0x131c000 -  0x141cff7 +AdobeACE (1) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x143b000 -  0x18cdfff +AdobeAGM (1) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1a32000 -  0x1a71fef +AdobeARE (1) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x1a7b000 -  0x1a9eff6 +AdobeAXE8SharedExpat (0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8Sh aredExpat
    0x1ab0000 -  0x1acafff +AdobeBIB (1) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1ad5000 -  0x1af6ff7 +AdobeBIBUtils (1) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x1b03000 -  0x1d6ffc7 +AdobeCoolType (1) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x1df2000 -  0x1e77fff +AdobeExtendScript (3.7) <EF6B3A34-C43A-45D3-BCD3-D7D450B5C6CD> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScr ipt
    0x1ed9000 -  0x21f6fef +AdobeMPS (1) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x226d000 -  0x234efdf +AdobePDFPort (1) <1BD25A6B-E2A1-4EC1-8292-B9A378590EF7> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x2392000 -  0x287b053 +AdobePDFL (1) <E38E0313-B32B-4E1B-8698-73B902B95CDF> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x298b000 -  0x2a07fef +AdobeScCore (3.7) <17A0DA14-E4D4-42B0-81B4-B75E4CB2DD8C> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x2a5d000 -  0x2b0cfd7 +AdobeSVGExport (0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
    0x2b3f000 -  0x2de7fe2 +AdobeSVGRE (0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
    0x2ed1000 -  0x2f26ffd +AdobeXMP (0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x2f34000 -  0x36fc067 +libagldata.dylib.28.0 (28) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AGLData.framework/Versions/2.8/libagldata.dylib.28.0
    0x3710000 -  0x37c4feb +libagli18n.dylib.28.0 (28) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AGLInternationalization.framework/Versions/2.8/libagl i18n.dylib.28.0
    0x384e000 -  0x38d7fef +libagluc.dylib.28.0 (28) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AGLUnicode.framework/Versions/2.8/libagluc.dylib.28.0
    0x392d000 -  0x39e3fcc +FileInfo (0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x3d8c000 -  0x3dd6fef +AdobeXMPFiles (0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
    0x3de6000 -  0x3decfff +com.adobe.AdobeCrashReporter (2.5 - 2.5.03072007) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashRep orter
    0x3df3000 -  0x3e0ffd7 +com.adobe.LogTransport (1.0 - 1.0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransport
    0x3e1a000 -  0x416ffc7 +com.adobe.linguistic.LinguisticManager (3.1.0 - 3.1RC) <8111F571-D718-411E-9624-6FB83187D84A> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x4308000 -  0x436bfff +AdobeAXEParser (0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEParser.framework/Versions/A/AdobeAXEParser
    0x43d7000 -  0x4413ff7  com.apple.vmutils (4.2.1 - 108) <6918860D-B24F-356C-9374-025BFFEA66A3> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x44b5000 -  0x44b5ffd +cl_kernels (???) <7751748D-A7D8-43F3-BC83-56779CB55F61> cl_kernels
    0x44bb000 -  0x44bcffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x44c4000 -  0x44d2fff  libSimplifiedChineseConverter.dylib (61) <60899F9C-A79F-3BC2-855E-DC5C78B98FEB> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x57f6000 -  0x57f7ffd  com.apple.ironwoodcore (1.1.1 - 1.1.1) <098CE576-3239-3B41-9141-A5BE6E476C84> /System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/Frameworks/Dictation ServicesCore.framework/DictationServicesCore
    0x9b00000 -  0x9bbeff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9f67000 -  0x9f6dfc3 +CSLinguist.dylib (1) /Library/Application Support/Adobe/*/WRLiloPlugin1.0.bundle/Contents/SharedSupport/CSLinguist.dylib
    0x9f72000 -  0x9f81fe7 +PACLib.dylib (1) <282B0EF8-6943-426B-BC69-0153E0E7E13D> /Library/Application Support/Adobe/*/WRLiloPlugin1.0.bundle/Contents/SharedSupport/PACLib.dylib
    0x9f85000 -  0x9f8cfff +com.adobe.illustrator.plugins.Action (Action version 13.0.0 - 13.0.0) <311929C0-D530-4C36-8F55-3B185EEF4183> /Applications/Adobe Illustrator CS3/*/Action
    0x9f90000 -  0x9f98ffc +com.adobe.illustrator.plugins.FrameworkServer (Framework Server version 13.0.0 - 13.0.0) <63866FAA-4F0C-4E2D-BAEF-E88787FAF95E> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/FrameworkServer.aip/Contents/MacOS/FrameworkServer
    0x9f9c000 -  0x9fa2fef +com.adobe.illustrator.plugins.ArtConverters ( ArtConverters version 13.0.0 - 13.0.0) <9D1F1116-3277-4307-9A45-F42520E07D75> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/ArtConverters.aip/Contents/MacOS/ArtConverters
    0x9fdb000 -  0x9fedffd  libTraditionalChineseConverter.dylib (61) <519CAA3F-715E-3CAE-B158-57EC95D916B1> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x9ff1000 -  0x9ff2fff +com.adobe.illustrator.plugins.ASLib (ASLib version 13.0.0 - 13.0.0) <8CFB81A2-F098-4F73-9E77-D091C27A6B0E> /Applications/Adobe Illustrator CS3/*/ASLib
    0x9ff6000 -  0x9ffafef +com.adobe.illustrator.plugins.ToolSelector (Tool Selector version 13.0.0 - 13.0.0) <940B0DFC-7F3D-4213-8E07-641E82F7BCC7> /Applications/Adobe Illustrator CS3/*/ToolSelector
    0xdf9d000 -  0xdfa5ffc  libcldcpuengine.dylib (2.1.19) <E5429AB3-FE28-3C0C-8942-686BB4191A9E> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0xdfc8000 -  0xdfcafff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0xdfd7000 -  0xdfe6fd3 +com.adobe.illustrator.plugins.Flatten Transparency ( Flatten Transparency version 13.0.0 - 13.0.0) <CAA23368-A524-40C6-8B4A-0A1454B45925> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/Flatten Transparency.aip/Contents/MacOS/Flatten Transparency
    0xdfec000 -  0xdff2ffc +com.adobe.illustrator.plugins.TextWrapDlg (TextWrapDlg version 13.0.0 - 13.0.0) <04CB69E2-4F10-4C5A-B4D8-CE972A7D21E5> /Applications/Adobe Illustrator CS3/*/TextWrapDlg
    0xdff6000 -  0xdff9fff +com.adobe.illustrator.plugins.GeometryS ( Geometry Suite version 13.0.0 - 13.0.0) <E1925377-7FF2-47C4-827D-7F2BB9E95DE4> /Applications/Adobe Illustrator CS3/*/GeometryS
    0x1e87c000 - 0x1e888fe3 +com.adobe.epic (adobe_eula 2.0.1.1082 - 2.0.1.1082) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/adobe_eula.framework/adobe_eula
    0x1e93e000 - 0x1e94cfc5 +com.adobe.epic (adobe_personalization 2.0.1.1082 - 2.0.1.1082) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/adobe_personalization.framework/adobe_personalization
    0x1e955000 - 0x1e962ff7 +com.adobe.asneu.framework (asneu version 1.6.2f01 - 1.6.2) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/asneu.framework/asneu
    0x1e973000 - 0x1e982ffe +CNSLib.dylib (1) /Library/Application Support/Adobe/*/WRLiloPlugin1.0.bundle/Contents/SharedSupport/CNSLib.dylib
    0x1e9bc000 - 0x1e9dffd3 +MORPHLibs.dylib (1) <98B00167-ADA9-4864-B80E-1F48A0519C68> /Library/Application Support/Adobe/*/WRLiloPlugin1.0.bundle/Contents/SharedSupport/MORPHLibs.dylib
    0x1e9e7000 - 0x1e9fbfef +com.adobe.illustrator.plugins.Rasterize (Rasterize version 13.0.0 - 13.0.0) <5480C033-5198-446C-88F1-900A9B397C8F> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/Rasterize.aip/Contents/MacOS/Rasterize
    0x1f3f2000 - 0x1f41fffa +com.winsoft.wrliloplugin (1.0rc7 - 1.0rc7) <396F5FC6-A698-4EC8-9581-F41119129A5B> /Library/Application Support/Adobe/*/WRLiloPlugin1.0.bundle/Contents/MacOS/WRLiloPlugin1.0
    0x1f56e000 - 0x1f595fc3 +HSNFT.dylib (1) <8C6B1963-5120-4802-88B5-446461BAD6A3> /Library/Application Support/Adobe/*/WRLiloPlugin1.0.bundle/Contents/SharedSupport/HSNFT.dylib
    0x1fb5d000 - 0x1fbabff8 +com.adobe.illustrator.plugins.Photoshop Adapter (Photoshop Adapter version 13.0.0 - 13.0.0) <BC03C9ED-EEC2-4BD4-93E9-608C2A1A92FF> /Applications/Adobe Illustrator CS3/*/Photoshop Adapter
    0x1fbbb000 - 0x1fbddffe  libssl.0.9.7.dylib (106) <FC1F6C04-EAD3-39D1-8E25-B1192E89D98B> /usr/lib/libssl.0.9.7.dylib
    0x1fbeb000 - 0x1fbf3fef +com.adobe.illustrator.plugins.DiffusionRaster (DiffusionRaster version 13.0.0 - 13.0.0) <AEAE0310-CA8D-49BB-AEB7-B489759E7DFD> /Applications/Adobe Illustrator CS3/*/DiffusionRaster
    0x1fbf7000 - 0x1fbfcfff +com.adobe.illustrator.plugins.ShapeS (Shape Construction Suite version 13.0.0 - 13.0.0) <BFF9EA6B-237C-4466-99A0-A233D13E230C> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/ShapeS.aip/Contents/MacOS/ShapeS
    0x1fd00000 - 0x20139ff7 +com.adobe.versioncue (3.1.0.0 - 3.1.0.0) /Library/Application Support/Adobe/*/VersionCue.framework/VersionCue
    0x2022a000 - 0x202d5fff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0x20319000 - 0x203e1fef +com.adobe.coretech.adm (3.10x04 - 3.1) <60FE4C91-19AF-4EA5-A497-CE4D23EBD639> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x20438000 - 0x205a3ff7 +AdobeOwl (1) <C917D2C5-55F5-4B51-ABCA-5AC6BBE781D8> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x205fc000 - 0x20624fff +com.adobe.illustrator.plugins.BRSPencilTool ( Pencil Tool version 13.0.0 - 13.0.0) <78D07C4D-D0E1-4BC2-9FB7-D8AFD44B5FE3> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/BRSPencilTool.aip/Contents/MacOS/BRSPencilTool
    0x2062a000 - 0x20651ffc +com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 13.0.0 - 13.0.0) <BB120316-6B28-4CB7-B10A-0445CC1585B2> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/FOConversionSuite.aip/Contents/MacOS/FOConversionSuite
    0x20661000 - 0x206b7fef +com.adobe.illustrator.plugins.PDF Suite (PDF Suite version 13.0.0 - 13.0.0) <89C93D81-8635-46C7-A23D-9412501ADF00> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/PDF Suite.aip/Contents/MacOS/PDF Suite
    0x206d3000 - 0x20721053 +FilterPort (0) <DC409E7E-F41E-43E8-AB82-B262818F750B> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/FilterPort.framework/Versions/A/FilterPort
    0x207be000 - 0x207f0fff +com.adobe.illustrator.plugins.BrushManager (Brush Manager version 13.0.0 - 13.0.0) <8DF92ECB-A263-48AE-B646-B95F6839022E> /Applications/Adobe Illustrator CS3/*/BrushManager
    0x207f9000 - 0x2080bfff +com.adobe.illustrator.plugins.ControlPalette (ControlPalette version 13.0.0 - 13.0.0) <D44C98A1-1763-4805-8B3C-02E8FF634C91> /Applications/Adobe Illustrator CS3/*/ControlPalette
    0x20811000 - 0x2083bffc +com.adobe.illustrator.plugins.KinsokuDlg ( KinsokuDlg version 13.0.0 - 13.0.0) <9FCEDFB4-0E1D-41A4-A6B8-FAD2C0802065> /Applications/Adobe Illustrator CS3/*/KinsokuDlg
    0x2084a000 - 0x20924fce +com.adobe.illustrator.plugins.PlanetX (Live Paint version 13.0.0 - 13.0.0) <8CC60325-34AD-44A6-90E7-DD59D4987B70> /Applications/Adobe Illustrator CS3/*/PlanetX
    0x20940000 - 0x2099cfc5 +com.adobe.illustrator.plugins.PaintStyle (Paint Style Palettes version 13.0.0 - 13.0.0) <1FE42DDE-1094-4B3E-A954-23BE2E0F0A52> /Applications/Adobe Illustrator CS3/*/PaintStyle
    0x209a6000 - 0x20bb9fe7 +com.adobe.illustrator.plugins.Scripting Support (Scripting Support version 13.0.0 - 13.0.0) <06BE5318-3778-42F3-930E-139B31CC1356> /Applications/Adobe Illustrator CS3/*/Scripting Support
    0x20d47000 - 0x20d74ff3  com.apple.audio.CoreAudioKit (1.6.4 - 1.6.4) <5F0E55AF-BDA6-36B3-86F2-8A84A8F5D089> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x20f59000 - 0x20fd0ffe +com.adobe.illustrator.plugins.SwatchLibraries (Swatch Libraries version 13.0.0 - 13.0.0) <9898DD56-4D02-4D11-AB55-7F859607EE79> /Applications/Adobe Illustrator CS3/*/SwatchLibraries
    0x20fe1000 - 0x20ff3ff2 +com.adobe.illustrator.plugins.Mojikumi ( MojiKumiUI version 13.0.0 - 13.0.0) <12478E76-78BA-45D9-B40B-37B90B4E0940> /Applications/Adobe Illustrator CS3/*/Mojikumi
    0x20ffa000 - 0x20ffbfff +com.adobe.illustrator.plugins.MPSCommon (MPSCommon version 13.0.0 - 13.0.0) <937C6C99-8543-410B-B227-F85BC263D731> /Applications/Adobe Illustrator CS3/*/MPSCommon
    0x21100000 - 0x2112dff8 +com.adobe.illustrator.plugins.SymbolPalette (Symbol Palette version 13.0.0 - 13.0.0) <EC374655-5A06-4916-9D74-E8BD7506B19A> /Applications/Adobe Illustrator CS3/*/SymbolPalette
    0x21136000 - 0x211bffe4 +com.adobe.illustrator.plugins.TracingSuite (TracingSuite version 13.0.0 - 13.0.0) <08B8133D-4AA8-4842-85FD-12FFF1673982> /Applications/Adobe Illustrator CS3/*/TracingSuite
    0x212aa000 - 0x212dbfc3 +com.adobe.illustrator.plugins.VariablesPalette (Variables Palette version 13.0.0 - 13.0.0) <CBEA146C-66B0-41C0-9A4F-CCC9FFC138C2> /Applications/Adobe Illustrator CS3/*/VariablesPalette
    0x212e7000 - 0x213c5ff7 +com.adobe.illustrator.plugins.SVG Format ( SVG Format version 13.0.0 - 13.0.0) <B6BD30EA-2734-4228-B649-151E71ED4ED3> /Applications/Adobe Illustrator CS3/*/SVG Format
    0x21402000 - 0x21453fcc +com.adobe.illustrator.plugins.Deform (Envelope and Warp version 13.0.0 - 13.0.0) <CBC9D52F-4C4F-40E0-9D7A-736B76E859DD> /Applications/Adobe Illustrator CS3/*/Deform
    0x21464000 - 0x2148afe8 +com.adobe.illustrator.plugins.slicingAttributes (Slicing version 13.0.0 - 13.0.0) <154871A4-4551-4C1E-8CF8-577F19A305D2> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/sliceAttributes.aip/Contents/MacOS/slicingAttributes
    0x21491000 - 0x214bcfff +com.adobe.illustrator.plugins.PathfinderS (Pathfinder Suite version 13.0.0 - 13.0.0) <CE94DF1C-00DD-4ABC-BC1A-3CB141A26179> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/PathFinderS.aip/Contents/MacOS/PathfinderS
    0x214c5000 - 0x214cbff7 +com.adobe.illustrator.plugins.ExpandS (Expand Suite version 13.0.0 - 13.0.0) <A48266FF-5E48-45FA-9435-00433002689A> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/ExpandS.aip/Contents/MacOS/ExpandS
    0x214cf000 - 0x214e5fff +com.adobe.illustrator.plugins.AssetMgmt (Asset Management version 13.0.0 - 13.0.0) <6A939CE3-A62D-4B9A-99DC-3943815E1667> /Applications/Adobe Illustrator CS3/*/AssetMgmt
    0x214ed000 - 0x214fefff +com.adobe.illustrator.plugins.DocInfo (Document Info version 13.0.0 - 13.0.0) <EF7AE7A1-958A-4E8C-A4A8-0923F9E401BA> /Applications/Adobe Illustrator CS3/*/DocInfo
    0x21505000 - 0x21518ffe +com.adobe.illustrator.plugins.Penguin (Eureka version 13.0.0 - 13.0.0) <46FB1816-0FFD-4AFF-A654-CDEC10AB5C2B> /Applications/Adobe Illustrator CS3/*/Penguin
    0x21521000 - 0x2154ffdd +com.adobe.illustrator.plugins.kuler (kuler version 13 . 0 . 0 . 0 - 13 . 0 . 0 . 0) <B8C0EA2A-8DF5-4DD7-9388-CE3F51B56B08> /Applications/Adobe Illustrator CS3/*/kuler
    0x21564000 - 0x2158bfff +com.adobe.illustrator.plugins.LinkPalette (Links Palette version 13.0.0 - 13.0.0) <127D9B3C-5A55-4351-9FC5-1A44537ACFF4> /Applications/Adobe Illustrator CS3/*/LinkPalette
    0x21596000 - 0x215bdfef +com.adobe.illustrator.plugins.Snap (Snap version 13.0.0 - 13.0.0) <21028162-40AF-4D00-95A2-C711C1AF2B94> /Applications/Adobe Illustrator CS3/*/Snap
    0x215ca000 - 0x215d1ff7 +com.adobe.illustrator.plugins.Colors (Colors version 13.0.0 - 13.0.0) <C560CC12-07E7-4C85-86B0-7566811F4759> /Applications/Adobe Illustrator CS3/*/Colors
    0x215d5000 - 0x215d8ffb +com.adobe.illustrator.plugins.Crop Marks (Crop Marks version 13.0.0 - 13.0.0) <80714EF4-9C08-4966-BA24-1E4CA8269701> /Applications/Adobe Illustrator CS3/*/Crop Marks
    0x215dc000 - 0x215e1fff +com.adobe.illustrator.plugins.Distort (Free Distort version 13.0.0 - 13.0.0) <5276554B-B603-43C5-B6F7-05D139C993CD> /Applications/Adobe Illustrator CS3/*/Distort
    0x215e5000 - 0x215f5ffa +com.adobe.illustrator.plugins.DropShadow (Drop Shadow version 13.0.0 - 13.0.0) <0616F9A1-F445-4B9E-8600-18EB542D45A0> /Applications/Adobe Illustrator CS3/*/DropShadow
    0x215fb000 - 0x21624feb +com.adobe.illustrator.plugins.EraserTool (EraserTool version 13.0.0 - 13.0.0) <6FA7620F-AEFB-40BE-B05C-9BFAE2BC9FC1> /Applications/Adobe Illustrator CS3/*/EraserTool
    0x2162b000 - 0x2163ffe7 +com.adobe.illustrator.plugins.EyeBucketTool (Eye Bucket Tool version 13.0.0 - 13.0.0) <91A97121-ACD1-4503-90AC-052DA456075E> /Applications/Adobe Illustrator CS3/*/EyeBucketTool
    0x21647000 - 0x2164afff +com.adobe.illustrator.plugins.TwirlTool (Twist Tool version 13.0.0 - 13.0.0) <1142FF3F-1B5F-4365-B140-07ACFCB41FCA> /Applications/Adobe Illustrator CS3/*/TwirlTool
    0x2164e000 - 0x21656fc0 +com.adobe.illustrator.plugins.ADMTP (Tool Palette version 13.0.0 - 13.0.0) <D4152480-9AA9-4FE6-BCB0-3E2814ED7AE9> /Applications/Adobe Illustrator CS3/*/ADMTP
    0x2165a000 - 0x2165dfff +com.adobe.illustrator.plugins.Simplify (Simplify version 13.0.0 - 13.0.0) <4773F767-EC85-4815-B543-CD7341206FA2> /Applications/Adobe Illustrator CS3/*/Simplify
    0x21661000 - 0x2166afff +com.adobe.illustrator.plugins.ShapeTool (ShapeTool version 13.0.0 - 13.0.0) <E55749A8-A857-403B-A725-92FDB8D37FD5> /Applications/Adobe Illustrator CS3/*/ShapeTool
    0x2166e000 - 0x2167b08f +com.adobe.illustrator.plugins.Segment Tools (Segment Tools version 13.0.0 - 13.0.0) <C621DF1B-8FB4-431F-9646-0D0EBEEECA19> /Applications/Adobe Illustrator CS3/*/Segment Tools
    0x2167f000 - 0x2169afea +com.adobe.illustrator.plugins.ScatterBrushTool (Adobe Scatter Brush Tool version 13.0.0 - 13.0.0) <723FEA11-2F3D-4CA3-BF0B-7728CCEFB9FE> /Applications/Adobe Illustrator CS3/*/ScatterBrushTool
    0x216a1000 - 0x216a5fef +com.adobe.illustrator.plugins.GlobalAdjust (Reshape Tool version 13.0.0 - 13.0.0) <ECA91AE1-1922-4AE6-A920-BDA78A717F83> /Applications/Adobe Illustrator CS3/*/GlobalAdjust
    0x216a9000 - 0x216c7fdf +com.adobe.illustrator.plugins.ParticlePaint (Symbolism version 13.0.0 - 13.0.0) <80E795AC-82BC-4BEE-BA37-B2CF10D763AF> /Applications/Adobe Illustrator CS3/*/ParticlePaint
    0x216d0000 - 0x216d8ff7 +com.adobe.illustrator.plugins.Magic Wand (Magic Wand version 13.0.0 - 13.0.0) <9FAB53E3-00DD-4DC9-8009-7E1AAF67DD9E> /Applications/Adobe Illustrator CS3/*/Magic Wand
    0x216dc000 - 0x216f3ff3 +com.adobe.illustrator.plugins.Liquify (Liquify version 13.0.0 - 13.0.0) <14FE5C88-4BEC-4FFF-B724-123565CDB88D> /Applications/Adobe Illustrator CS3/*/Liquify
    0x216f7000 - 0x216fafff +com.adobe.illustrator.plugins.KnifeTool (Knife Tool version 13.0.0 - 13.0.0) <9EB86F09-260C-4126-BE82-5E29E52898DB> /Applications/Adobe Illustrator CS3/*/KnifeTool
    0x21800000 - 0x21807fff +com.adobe.illustrator.plugins.Lasso (Lasso version 13.0.0 - 13.0.0) <C566E81E-6C1A-4EAE-AFE9-51784FD97413> /Applications/Adobe Illustrator CS3/*/Lasso
    0x2180b000 - 0x2181ffe3 +com.adobe.illustrator.plugins.Flare (Flare version 13.0.0 - 13.0.0) <7A0DBF51-EF40-4340-BBC1-2121C0E6283B> /Applications/Adobe Illustrator CS3/*/Flare
    0x21824000 - 0x2184efec +com.adobe.illustrator.plugins.CropAreaTool (CropAreaTool version 13.0.0 - 13.0.0) <E6D65156-8E6A-4014-9DC3-BEE29566BBD4> /Applications/Adobe Illustrator CS3/*/CropAreaTool
    0x2185c000 - 0x21878fea +com.adobe.illustrator.plugins.CalligBrushTool (Calligraphic Brush Tool version 13.0.0 - 13.0.0) <245149CC-6DA5-4087-909B-FDF688E54A65> /Applications/Adobe Illustrator CS3/*/CalligBrushTool
    0x2187e000 - 0x2188efe7 +com.adobe.illustrator.plugins.BoundingBox (BoundingBox version 13.0.0 - 13.0.0) <9317ECE9-EAE9-4DE4-8A13-BCA992490D17> /Applications/Adobe Illustrator CS3/*/BoundingBox
    0x21892000 - 0x218bbfc6 +com.adobe.illustrator.plugins.ArtBrushTool (Art Brush Tool version 13.0.0 - 13.0.0) <D3748C4A-4B38-4545-94F6-11094FC7CE27> /Applications/Adobe Illustrator CS3/*/ArtBrushTool
    0x218c2000 - 0x218d0fff +com.adobe.illustrator.plugins.Advanced Select (Advanced Select version 13.0.0 - 13.0.0) <5C185B8A-6D3F-40E2-A7A1-3C244108DF80> /Applications/Adobe Illustrator CS3/*/Advanced Select
    0x218e4000 - 0x218e7fff +com.adobe.illustrator.plugins.TypeCase (Change Case version 13.0.0 - 13.0.0) <7683DD9D-76E7-4DC3-9DB7-B38C466CEE9E> /Applications/Adobe Illustrator CS3/*/TypeCase
    0x218eb000 - 0x218f2fff +com.adobe.illustrator.plugins.TextSmart (Text Smart Punctuation version 13.0.0 - 13.0.0) <24F99A94-EC3F-4E39-A1BF-782881BC208D> /Applications/Adobe Illustrator CS3/*/TextSmart
    0x218f7000 - 0x218feff7 +com.adobe.illustrator.plugins.TextColumns (Split Into Grid version 13.0.0 - 13.0.0) <F23407A0-E728-4023-8F4C-C6A3EA4AEA06> /Applications/Adobe Illustrator CS3/*/TextColumns
    0x21902000 - 0x21917fff +com.adobe.illustrator.plugins.SpellcheckUI (SpellCheckUI version 13.0.0 - 13.0.0) <FE59FD19-ED91-4163-A08B-A3729D71C3AF> /Applications/Adobe Illustrator CS3/*/SpellcheckUI
    0x2191e000 - 0x21927fff +com.adobe.illustrator.plugins.SpellCheckDictionary (SpellCheckDictionary version 13.0.0 - 13.0.0) <F37F4ADF-300A-4E9A-86B6-A4AA77AF647E> /Applications/Adobe Illustrator CS3/*/SpellCheckDictionary
    0x2192d000 - 0x21945fff +com.adobe.illustrator.plugins.FindReplaceUI ( FindReplaceUI version 13.0.0 - 13.0.0) <E2FFED8B-6B02-4BC9-9390-73FB5CDFD120> /Applications/Adobe Illustrator CS3/*/FindReplaceUI
    0x2194c000 - 0x2196dffc +com.adobe.illustrator.plugins.FindFont (Find Font version 13.0.0 - 13.0.0) <E600F98C-EE39-4011-A79A-9E68BA762B4A> /Applications/Adobe Illustrator CS3/*/FindFont
    0x2197a000 - 0x219ceff7 +com.adobe.illustrator.plugins.PhotoshopImport (Photoshop Import version 13.0.0 - 13.0.0) <1B31BBB6-81D0-4949-8DB1-8D4ABDB9412A> /Applications/Adobe Illustrator CS3/*/PhotoshopImport
    0x219e4000 - 0x2268bfeb +com.adobe.psl (10.312765.46.313722 - 10.312765.46.313722) <C0C4D40C-B84D-4740-BF61-35D5FBFC00FF> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x229aa000 - 0x229f0ff7 +com.adobe.illustrator.plugins.PhotoshopExport (Photoshop Import version 13.0.0 - 13.0.0) <2573EC3E-03D1-4943-9C33-54682E8A3593> /Applications/Adobe Illustrator CS3/*/PhotoshopExport
    0x22a04000 - 0x22a30fff +com.adobe.illustrator.plugins.ExpressView Support (OS Express Views version 13.0.0 - 13.0.0) <586248DB-8F5F-4661-87B1-A8236FCA6D2B> /Applications/Adobe Illustrator CS3/*/ExpressView Support
    0x22a3b000 - 0x22a87ffa +com.adobe.illustrator.plugins.TIFF (TIFF Format version 13.0.0 - 13.0.0) <5CDC182D-D2D2-4992-94EE-905AFD8D8EC7> /Applications/Adobe Illustrator CS3/*/TIFF
    0x22a98000 - 0x22a9dfff +com.adobe.illustrator.plugins.TextExport (TextExport version 13.0.0 - 13.0.0) <56A283C9-899D-4AAF-807C-58B53DECBC6F> /Applications/Adobe Illustrator CS3/*/TextExport
    0x22aa4000 - 0x22b75fc8 +com.adobe.illustrator.plugins.SWFExport (FlashFileFormat version 13.0.0 - 13.0.0) <08C603AF-64AC-431D-B5F9-02E4ACC47717> /Applications/Adobe Illustrator CS3/*/SWFExport
    0x22b97000 - 0x231dffff +com.adobe.illustrator.plugins.Save For Web(AI) (SaveForWebEN version 13.0.0 - 13.0.0) <3A09B960-25E7-4286-877A-4D338FFD7ABD> /Applications/Adobe Illustrator CS3/*/Save For Web(AI)
    0x236ac000 - 0x23707fd0 +com.adobe.illustrator.plugins.Sangam2AIMapper Plugin (Sangam2AIMapper Plugin version 13.0.0 - 13.0.0) <7782B248-6ED6-49F8-BAD4-984216622024> /Applications/Adobe Illustrator CS3/*/Sangam2AIMapper Plugin
    0x2371e000 - 0x23782fe4 +com.adobe.AdobeSangam (AdobeSangam 4.2 - 4.2.0.12) <55225CBC-4D30-4785-A4F9-9F18B67F6AD1> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
    0x237f4000 - 0x237fcfff +com.adobe.illustrator.plugins.PNGFileFormat (PNGFileFormat version 13.0.0 - 13.0.0) <09DF3683-BDCD-46E6-B918-BAFFD3AD4690> /Applications/Adobe Illustrator CS3/*/PNGFileFormat
    0x23800000 - 0x2383fff4 +com.adobe.illustrator.plugins.MPSParser (MPSParser version 13.0.0 - 13.0.0) <C483D26A-5184-4271-AF28-92DCDEE4AAAD> /Applications/Adobe Illustrator CS3/*/MPSParser
    0x23853000 - 0x23882fcc +com.adobe.illustrator.plugins.MPSExport (MPSExport version 13.0.0 - 13.0.0) <FD707AC2-D721-41D8-A80D-BB776F076126> /Applications/Adobe Illustrator CS3/*/MPSExport
    0x23891000 - 0x238affc8 +com.adobe.illustrator.plugins.Jpeg2000 ( Jpeg2000 version 13.0.0 - 13.0.0) <083BE56D-EF5B-4B4F-BFE8-7ED8CC4D3371> /Applications/Adobe Illustrator CS3/*/Jpeg2000
    0x238b8000 - 0x238f9060 +com.adobe.illustrator.plugins.JPEG (JPEGFormat version 13.0.0 - 13.0.0) <DD08B53F-B781-4BE7-82AD-9B00849A19AF> /Applications/Adobe Illustrator CS3/*/JPEG
    0x23904000 - 0x23908feb +com.adobe.illustrator.plugins.GIF89 (GIF89a Format version 13.0.0 - 13.0.0) <5438BC32-8866-48FD-803D-132DB88C0A34> /Applications/Adobe Illustrator CS3/*/GIF89
    0x2390c000 - 0x2393fffe +com.adobe.illustrator.plugins.FHImport (FHImport version 13.0.0 - 13.0.0) <64A1AAA7-962C-4244-93CD-812892F92918> /Applications/Adobe Illustrator CS3/*/FHImport
    0x23950000 - 0x24580fd7 +com.adobe.illustrator.plugins.DxfDwg (DxfDwg version 13.0.0 - 13.0.0) <E9B63DB1-03E5-4623-BE59-E6068FA30C1F> /Applications/Adobe Illustrator CS3/*/DxfDwg
    0x2481e000 - 0x24823ff7 +com.adobe.illustrator.plugins.ZigZag (Zig Zag version 13.0.0 - 13.0.0) <FADE1DDF-516D-42AB-AC35-4DF29ED031B6> /Applications/Adobe Illustrator CS3/*/ZigZag
    0x24827000 - 0x2482cfff +com.adobe.illustrator.plugins.Tweak (Tweak version 13.0.0 - 13.0.0) <4DCF5BD9-2073-4D9D-909B-7762BEE80CD6> /Applications/Adobe Illustrator CS3/*/Tweak
    0x24830000 - 0x24836ff7 +com.adobe.illustrator.plugins.ShapeEffects (Shape Effects version 13.0.0 - 13.0.0) <43B01685-0021-4708-A96E-6AF8B22C323B> /Applications/Adobe Illustrator CS3/*/ShapeEffects
    0x2483a000 - 0x24856ffc +com.adobe.illustrator.plugins.Scribble (Scribble version 13.0.0 - 13.0.0) <5D13AAC0-7D78-4D9F-AFFE-BBD7596D7B61> /Applications/Adobe Illustrator CS3/*/Scribble
    0x2485d000 - 0x24861fff +com.adobe.illustrator.plugins.Saturate (Saturate version 13.0.0 - 13.0.0) <370EB08D-51ED-4DAB-8E16-250D05836A22> /Applications/Adobe Illustrator CS3/*/Saturate
    0x24865000 - 0x24868fff +com.adobe.illustrator.plugins.Round (Round Corners version 13.0.0 - 13.0.0) <14FD80D5-D6CB-42A5-8A0D-0DF9E59B9A53> /Applications/Adobe Illustrator CS3/*/Round
    0x2486c000 - 0x24871ff7 +com.adobe.illustrator.plugins.Roughen (Roughen version 13.0.0 - 13.0.0) <1B976EA3-6118-49B6-BA19-0680AAB3F823> /Applications/Adobe Illustrator CS3/*/Roughen
    0x24875000 - 0x24877fff +com.adobe.illustrator.plugins.Punk (Punk version 13.0.0 - 13.0.0) <B294E686-8B90-4DD9-81B5-93D196B3FA68> /Applications/Adobe Illustrator CS3/*/Punk
    0x2487b000 - 0x24886ff3 +com.adobe.illustrator.plugins.Pathfinder (Pathfinder Plugin version 13.0.0 - 13.0.0) <733F9980-CDD0-4089-9CAB-B51B247CB633> /Applications/Adobe Illustrator CS3/*/Pathfinder
    0x2488a000 - 0x2488dffc +com.adobe.illustrator.plugins.Overprint (Overprint version 13.0.0 - 13.0.0) <29DAC3F6-32E9-4914-9D2E-C1BC1EC17B57> /Applications/Adobe Illustrator CS3/*/Overprint
    0x24891000 - 0x24894fff +com.adobe.illustrator.plugins.OffsetPath (Offset Path version 13.0.0 - 13.0.0) <CD28F1F3-53D1-4992-BE6C-1ABEB934E388> /Applications/Adobe Illustrator CS3/*/OffsetPath
    0x24898000 - 0x2489cfef +com.adobe.illustrator.plugins.ObjectMosaic (AI Object Mosaic Plug-in version 13.0.0 - 13.0.0) <92F33171-413F-4AD5-AD42-D0739BB1AE1B> /Applications/Adobe Illustrator CS3/*/ObjectMosaic
    0x248a0000 - 0x248a1fff +com.adobe.illustrator.plugins.MaskHelper (MaskHelper version 13.0.0 - 13.0.0) <8E6E313E-F8EB-48CE-9957-CA1FE2771780> /Applications/Adobe Illustrator CS3/*/MaskHelper
    0x248a5000 - 0x248a6fff +com.adobe.illustrator.plugins.Inverse (Inverse version 13.0.0 - 13.0.0) <684C9A86-2E3B-47F8-9744-EB46D4B0DD24> /Applications/Adobe Illustrator CS3/*/Inverse
    0x248aa000 - 0x248c0ff2 +com.adobe.illustrator.plugins.FuzzyEffect (FuzzyEffect version 13.0.0 - 13.0.0) <916BCE56-EACB-4E4B-9CC1-D348FEE1D5C6> /Applications/Adobe Illustrator CS3/*/FuzzyEffect
    0x248c7000 - 0x248ceff7 +com.adobe.illustrator.plugins.Find (Find version 13.0.0 - 13.0.0) <252CE2ED-7198-4F7F-95D4-8DA1DA6C3D7A> /Applications/Adobe Illustrator CS3/*/Find
    0x248d2000 - 0x248d4fff +com.adobe.illustrator.plugins.Expand (Expand version 13.0.0 - 13.0.0) <07D375EB-081F-402E-9A00-7BC928E1748B> /Applications/Adobe Illustrator CS3/*/Expand
    0x248d8000 - 0x248dbffc +com.adobe.illustrator.plugins.Cleanup (Cleanup version 13.0.0 - 13.0.0) <D10CF1E9-0ABF-4A4F-B820-8CEB538EA81B> /Applications/Adobe Illustrator CS3/*/Cleanup
    0x248df000 - 0x248e5fff +com.adobe.illustrator.plugins.Adjust (Adjust version 13.0.0 - 13.0.0) <08451097-D2A9-48F3-884C-DD5A5BEF30B0> /Applications/Adobe Illustrator CS3/*/Adjust
    0x248e9000 - 0x248edff3 +com.adobe.illustrator.plugins.AddArrow (AddArrow version 13.0.0 - 13.0.0) <F8CAE8A1-1EC4-49B8-B9A2-A4AA8B1A6FC4> /Applications/Adobe Illustrator CS3/*/AddArrow
    0x248f1000 - 0x248f2fff +com.adobe.illustrator.plugins.AddAnchor (AddAnchor version 13.0.0 - 13.0.0) <819DCDF7-FC8E-4010-A2E8-9F832E1AD801> /Applications/Adobe Illustrator CS3/*/AddAnchor
    0x248f6000 - 0x24909fff +com.adobe.illustrator.plugins.Workspaces (Workspaces version 13.0.0 - 13.0.0) <671AEA7C-8402-4CF1-87C3-1F3FDE2C5975> /Applications/Adobe Illustrator CS3/*/Workspaces
    0x24910000 - 0x24924fff +com.adobe.illustrator.plugins.WelcomeScreen (WelcomeScreenn version 13.0.0 - 13.0.0) <9220C436-E4BB-41F1-9F67-91B094260B1E> /Applications/Adobe Illustrator CS3/*/WelcomeScreen
    0x2492a000 - 0x2493afff +com.adobe.illustrator.plugins.TransparencyPalette (Transparency Palette version 13.0.0 - 13.0.0) <A1528B1E-2054-4A31-ABBE-34338C44F617> /Applications/Adobe Illustrator CS3/*/TransparencyPalette
    0x2493e000 - 0x24946fef +com.adobe.illustrator.plugins.Transform (Transform Each version 13.0.0 - 13.0.0) <4DA1234F-50B2-416B-A655-88C084A938E1> /Applications/Adobe Illustrator CS3/*/Transform
    0x2494a000 - 0x24952fef +com.adobe.illustrator.plugins.TransformPalette (Transform Palette version 13.0.0 - 13.0.0) <25D3DA1E-DD1F-4A15-BB85-464B483B18A2> /Applications/Adobe Illustrator CS3/*/TransformPalette
    0x24956000 - 0x24978fff +com.adobe.illustrator.plugins.TracingUI (TracingUI version 13.0.0 - 13.0.0) <230085B2-D0B3-415C-B611-D3260EC0FE3B> /Applications/Adobe Illustrator CS3/*/TracingUI
    0x24980000 - 0x249c1ff0 +com.adobe.illustrator.plugins.SVGFilterEffect (SVG Filter Effect version 13.0.0 - 13.0.0) <C1E5531F-1211-4EB4-BAD3-1AC98C7A6AFF> /Applications/Adobe Illustrator CS3/*/SVGFilterEffect
    0x249d8000 - 0x249f9024 +com.adobe.illustrator.plugins.StrokeOffset (StrokeOffset version 13.0.0 - 13.0.0) <6CB78495-D979-4351-9F92-8349283D996B> /Applications/Adobe Illustrator CS3/*/StrokeOffset
    0x24a06000 - 0x24a33ffa +com.adobe.illustrator.plugins.SmoothShade (Gradient Mesh version 13.0.0 - 13.0.0) <023D23AA-BB5F-47BF-8D5A-8104602E5285> /Applications/Adobe Illustrator CS3/*/SmoothShade
    0x24a3f000 - 0x24a45ffd +com.adobe.illustrator.plugins.Scripts Menu (Scripts Menu version 13.0.0 - 13.0.0) <905A1F05-394A-43FD-AFFD-1BD59B67EF44> /Applications/Adobe Illustrator CS3/*/Scripts Menu
    0x24a49000 - 0x24a81fff +com.adobe.illustrator.plugins.Print (Print version 13.0.0 - 13.0.0) <6FC8ADA9-3CE3-425F-AFB8-6B2FA793BFA5> /Applications/Adobe Illustrator CS3/*/Print
    0x24a89000 - 0x24a8efff +com.adobe.illustrator.plugins.PathSuite (PathConstruction Suite version 13.0.0 - 13.0.0) <F4D0C1D9-068C-4FCE-B453-99EE63C08D72> /Applications/Adobe Illustrator CS3/*/PathSuite
    0x24a92000 - 0x24a9efeb +com.adobe.illustrator.plugins.Navigator (Adobe Navigator Plugin version 13.0.0 - 13.0.0) <E0C36A9A-A0A4-41A6-8A21-6A379E54AA06> /Applications/Adobe Illustrator CS3/*/Navigator
    0x24aa2000 - 0x24ac7fff +com.adobe.illustrator.plugins.LiveBlends (Live Blends version 13.0.0 - 13.0.0) <C261F9D5-60C1-4137-BB4E-63BC4BE289E9> /Applications/Adobe Illustrator CS3/*/LiveBlends
    0x24acb000 - 0x24af8fdf +com.adobe.illustrator.plugins.Layers (Layers Palette version 13.0.0 - 13.0.0) <5A03CAAF-7002-4908-A4F5-30B172C18876> /Applications/Adobe Illustrator CS3/*/Layers
    0x24c00000 - 0x24c15fff +com.adobe.illustrator.plugins.KBSCPlugin (Keyboard Shortcuts version 13.0.0 - 13.0.0) <EEC61802-AB4D-42AE-915F-FCD01663AF12> /Applications/Adobe Illustrator CS3/*/KBSCPlugin
    0x24c1c000 - 0x24c1dfff +com.adobe.illustrator.plugins.FlattenS (Flatten Suite version 13.0.0 - 13.0.0) <0821A5EC-94EE-402A-B33F-73A4F54E80A2> /Applications/Adobe Illustrator CS3/*/FlattenS
    0x24c21000 - 0x24c4afff +com.adobe.illustrator.plugins.FlatteningPreview (Flattening Preview version 13.0.0 - 13.0.0) <EAE38B73-FFC8-4E29-84B6-662B09C73587> /Applications/Adobe Illustrator CS3/*/FlatteningPreview
    0x24c58000 - 0x24c5dfff +com.adobe.illustrator.plugins.FileClipboardPref (FileClipboardPref version 13.0.0 - 13.0.0) <5DA73755-8966-40AD-ACE3-211861D563B6> /Applications/Adobe Illustrator CS3/*/FileClipboardPref
    0x24c61000 - 0x24d05fec +com.adobe.illustrator.plugins.ColorHarmony (ColorHarmony version 13.0.0 - 13.0.0) <AA38822E-C338-4E8C-99A7-243FD59EC16A> /Applications/Adobe Illustrator CS3/*/ColorHarmony
    0x24d22000 - 0x24d81fca +com.adobe.illustrator.plugins.CharParaStyles (CharParaStyles version 13.0.0 - 13.0.0) <AE72754D-59F1-45AF-92EF-171AAB7E8D63> /Applications/Adobe Illustrator CS3/*/CharParaStyles
    0x24d96000 - 0x24dd3ff8 +com.adobe.illustrator.plugins.ArtStyle (Art Style version 13.0.0 - 13.0.0) <B6FD2BA5-CCAD-40D1-B65F-F63E5D996FA2> /Applications/Adobe Illustrator CS3/*/ArtStyle
    0x24dde000 - 0x24e0dff6 +com.adobe.illustrator.plugins.AltGlyphPal (AdobeAltGlyphPalette version 13.0.0 - 13.0.0) <E74D41AB-7CE6-4E2C-818C-E7A7F815A549> /Applications/Adobe Illustrator CS3/*/AltGlyphPal
    0x24e1d000 - 0x24e2cffe +com.adobe.illustrator.plugins.Align (AdobeAlignObjects version 13.0.0 - 13.0.0) <C4A0E30D-BEED-4993-95FA-12CD9CEDCACC> /Applications/Adobe Illustrator CS3/*/Align
    0x24e30000 - 0x24e67fff +com.adobe.illustrator.plugins.ActionPalette ( Action Palette version 13.0.0 - 13.0.0) <B97CA0B0-0B30-4B1F-ABB5-8438D8FA135E> /Applications/Adobe Illustrator CS3/*/ActionPalette
    0x24e71000 - 0x24fb8fff +com.adobe.illustrator.plugins.3D (3D version 13.0.0 - 13.0.0) <3071CC58-02C0-40FD-8CD4-C1CF509840DC> /Applications/Adobe Illustrator CS3/*/3D
    0x25011000 - 0x2509ffe1 +com.adobe.illustrator.plugins.PDF Format (PDF Format version 13.0.0 - 13.0.0) <B4DC5098-F452-4E76-8198-2CB5BC942FD7> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/PDF Format.aip/Contents/MacOS/PDF Format
    0x250bc000 - 0x25100fef +ADMEveParserCarbon (???) <C973477C-919A-4593-AB7E-C6DDF3866961> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/ADMEveParserCarbon.bundle/Contents/MacOS/ADMEveParserCarbon
    0x25d00000 - 0x262a7fd7 +com.macromedia.Flash Player.authplaylib (9.0.43.0 - 1.0.4f43) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Resources/AuthPlayLib.bundle/Conte nts/MacOS/AuthPlayLib
    0x273d

  • Problems with installing cs5.5

    Exit Code: 6
    Hi, I'm trying to install the adobe creative suite on windows 8 and it shows all these messages, could anyone help please?
    Thannks
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 7 error(s), 82 warning(s)
    WARNING: DW066: OS requirements not met for {0D96CFE6-376D-44B8-808A-16F3BEB73263}
    WARNING: DW066: OS requirements not met for {7202D4A7-F7E6-4e7a-B77D-7B1C4E8B5CA6}
    WARNING: DW066: OS requirements not met for {43A1C48E-3E50-410e-951C-E17A66BBF824}
    WARNING: DW066: OS requirements not met for {CE75F5DB-8CA3-4E84-A30E-AF9160006105}
    WARNING: DW066: OS requirements not met for {B55FDCCB-8A45-4943-8D90-585C3490A032}
    WARNING: DW066: OS requirements not met for {98DD55B6-C58C-462F-B8A4-F0585BFEBB15}
    WARNING: DW066: OS requirements not met for {4603E0C5-6880-4A4F-BCF8-DF1F6AE0E317}
    WARNING: DW066: OS requirements not met for {EB186BF2-0A84-40A2-B794-0326D3DF9973}
    WARNING: DW066: OS requirements not met for {17C6080E-F475-4B49-A30C-EEB85673E999}
    WARNING: DW066: OS requirements not met for {9A8B01C5-78D1-465F-B5F6-BD59B7800EC7}
    WARNING: DW066: OS requirements not met for {3450d4c5-a82b-4428-a512-842ee1555a14}
    WARNING: DW066: OS requirements not met for {61A3D10A-AA4D-4E4C-B9DB-6A08D318EA41}
    WARNING: DW066: OS requirements not met for {32841ECE-EC28-42CD-A4DD-6CE832A7EA8D}
    WARNING: DW066: OS requirements not met for {0669F23C-1B69-41B4-A3ED-4F54A5986D66}
    WARNING: DW066: OS requirements not met for {00AEBAF2-D950-467B-BD24-449BCA2A4424}
    WARNING: DW066: OS requirements not met for {FF5837B9-6F4D-1014-B2FA-C016F4A584FA}
    WARNING: DW066: OS requirements not met for {F37EA9EC-638F-4E61-BED4-BDB10461D73B}
    WARNING: DW066: OS requirements not met for {7745F18B-FD8A-4011-BE16-588900C503D0}
    WARNING: DW066: OS requirements not met for {32C78855-194D-4E66-9EB5-D6DC1C418D79}
    WARNING: DW066: OS requirements not met for {89823DB1-05CA-1016-BA4A-BE6A29E42461}
    WARNING: DW066: OS requirements not met for {4C08199E-0D93-4227-8325-F024E71CA7A1}
    WARNING: DW066: OS requirements not met for {BD3F3C6B-5F98-109B-A0CA-B0FAE4A7D983}
    WARNING: DW066: OS requirements not met for {301D39AF-43B1-445B-88CF-D78584200322}
    WARNING: DW066: OS requirements not met for {07C64F28-6F4E-1014-A82C-D40EE8D79912}
    WARNING: DW066: OS requirements not met for {37647E00-6F4D-1014-88BA-CE6C1147A926}
    WARNING: DW066: OS requirements not met for {11C0657F-2BD4-4CBC-87F3-9455DC91886E}
    WARNING: DW066: OS requirements not met for {7F9C94CD-0BAC-4F8F-8990-6A5886F4D550}
    WARNING: DW066: OS requirements not met for {4883A813-2805-4FA8-A91C-073BA7B2667A}
    WARNING: DW066: OS requirements not met for {9F16123E-05FC-1016-91BC-C090234C0EE3}
    WARNING: DW066: OS requirements not met for {6BC81374-1E33-4495-93E2-DD2B10D358EE}
    WARNING: DW066: OS requirements not met for {AC76BA86-1033-F400-7760-000000000005}
    WARNING: DW065: Display requirements not met for {60E59A6C-7399-495A-B85C-C829F4E59602}
    WARNING: DW066: OS requirements not met for {60E59A6C-7399-495A-B85C-C829F4E59602}
    WARNING: DW065: Display requirements not met for {0215A652-E081-4B09-9333-DC85AAB67FFA}
    WARNING: DW066: OS requirements not met for {0215A652-E081-4B09-9333-DC85AAB67FFA}
    WARNING: DW065: Display requirements not met for {35ED8892-98E5-488A-A23C-6DB842A46EA5}
    WARNING: DW066: OS requirements not met for {35ED8892-98E5-488A-A23C-6DB842A46EA5}
    WARNING: DW065: Display requirements not met for {D8CCCF4C-C227-427C-B4BE-736657D2AB7E}
    WARNING: DW066: OS requirements not met for {D8CCCF4C-C227-427C-B4BE-736657D2AB7E}
    WARNING: DW065: Display requirements not met for {8DADF070-FE60-4899-8EF0-4242E7702F7D}
    WARNING: DW066: OS requirements not met for {8DADF070-FE60-4899-8EF0-4242E7702F7D}
    WARNING: DW065: Display requirements not met for {5BDE0A1B-35BF-4224-A54F-73786EECDFC1}
    WARNING: DW066: OS requirements not met for {5BDE0A1B-35BF-4224-A54F-73786EECDFC1}
    WARNING: DW065: Display requirements not met for {23767F5D-A80C-4264-B8EA-ED4085FC332A}
    WARNING: DW066: OS requirements not met for {23767F5D-A80C-4264-B8EA-ED4085FC332A}
    WARNING: DW065: Display requirements not met for {24586955-A50A-4E76-AF2C-7F8EB833FBB1}
    WARNING: DW066: OS requirements not met for {24586955-A50A-4E76-AF2C-7F8EB833FBB1}
    WARNING: DW065: Display requirements not met for {08EF22BC-43B2-4B4E-BA12-52B18F418F38}
    WARNING: DW066: OS requirements not met for {08EF22BC-43B2-4B4E-BA12-52B18F418F38}
    WARNING: DW065: Display requirements not met for {1FEB691B-39ED-4343-99D6-CACDAD879D8C}
    WARNING: DW066: OS requirements not met for {1FEB691B-39ED-4343-99D6-CACDAD879D8C}
    WARNING: DW065: Display requirements not met for {10355145-8A4C-47F3-994B-B9B81B4DABF5}
    WARNING: DW066: OS requirements not met for {10355145-8A4C-47F3-994B-B9B81B4DABF5}
    WARNING: DW065: Display requirements not met for {50D2A553-2839-469E-B87D-86DC8C104745}
    WARNING: DW066: OS requirements not met for {50D2A553-2839-469E-B87D-86DC8C104745}
    WARNING: DW065: Display requirements not met for {D97AF04B-B70A-4862-BC25-31E6D9C4A529}
    WARNING: DW066: OS requirements not met for {D97AF04B-B70A-4862-BC25-31E6D9C4A529}
    WARNING: DW065: Display requirements not met for {970C9F3A-39C5-480B-BE51-7C70AB9F84DB}
    WARNING: DW066: OS requirements not met for {970C9F3A-39C5-480B-BE51-7C70AB9F84DB}
    WARNING: DW065: Display requirements not met for {2EA9B52E-8613-41A0-9EEF-FF54AD4CC810}
    WARNING: DW066: OS requirements not met for {2EA9B52E-8613-41A0-9EEF-FF54AD4CC810}
    WARNING: DW065: Display requirements not met for {E348E466-429A-4FB0-AFCF-8306C16BBFF1}
    WARNING: DW066: OS requirements not met for {E348E466-429A-4FB0-AFCF-8306C16BBFF1}
    WARNING: DW065: Display requirements not met for {857CC5F0-040E-1016-A173-D55ADD80C260}
    WARNING: DW066: OS requirements not met for {857CC5F0-040E-1016-A173-D55ADD80C260}
    WARNING: DW065: Display requirements not met for {C041EC47-0253-1016-891E-E5DE4AB922FC}
    WARNING: DW066: OS requirements not met for {C041EC47-0253-1016-891E-E5DE4AB922FC}
    WARNING: DW065: Display requirements not met for {92D5E8D4-01C8-1016-BBA8-F308D6BFCAC5}
    WARNING: DW066: OS requirements not met for {92D5E8D4-01C8-1016-BBA8-F308D6BFCAC5}
    WARNING: DW065: Display requirements not met for {50509A36-0291-1016-9CCF-FC05E9E55550}
    WARNING: DW066: OS requirements not met for {50509A36-0291-1016-9CCF-FC05E9E55550}
    WARNING: DW031: Payload:{61A3D10A-AA4D-4E4C-B9DB-6A08D318EA41} Photoshop Camera Raw (64 bit) 6.0.0.0 has been updated and has been selected for repair. The patch {32841ECE-EC28-42CD-A4DD-6CE832A7EA8D} Photoshop Camera Raw (64 bit)_6.3_AdobeCameraRaw6.0All-x64 6.3.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA} Adobe XMP Panels CS5 3.0.0.0 has been updated and has been selected for repair. The patch {42774483-D33C-46F7-8B20-FD0B1A3DAC25} Adobe XMP Panels CS5_3.1_AdobeXMPPanelsAll 3.1.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 has been updated and has been selected for repair. The patch {A189C479-C7CD-4E08-8CCF-D999B68C0C71} Camera Profiles Installer_6.3_AdobeCameraRawProfile6.0All 6.3.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw 6.0.0.0 has been updated and has been selected for repair. The patch {FD58D99B-9927-4226-8E00-959A4F76BD89} Photoshop Camera Raw_6.3_AdobeCameraRaw6.0All 6.3.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{61A3D10A-AA4D-4E4C-B9DB-6A08D318EA41} Photoshop Camera Raw (64 bit) 6.0.0.0 has been updated and has been selected for repair. The patch {32841ECE-EC28-42CD-A4DD-6CE832A7EA8D} Photoshop Camera Raw (64 bit)_6.3_AdobeCameraRaw6.0All-x64 6.3.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA} Adobe XMP Panels CS5 3.0.0.0 has been updated and has been selected for repair. The patch {42774483-D33C-46F7-8B20-FD0B1A3DAC25} Adobe XMP Panels CS5_3.1_AdobeXMPPanelsAll 3.1.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 has been updated and has been selected for repair. The patch {A189C479-C7CD-4E08-8CCF-D999B68C0C71} Camera Profiles Installer_6.3_AdobeCameraRawProfile6.0All 6.3.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw 6.0.0.0 has been updated and has been selected for repair. The patch {FD58D99B-9927-4226-8E00-959A4F76BD89} Photoshop Camera Raw_6.3_AdobeCameraRaw6.0All 6.3.0.0 will be uninstalled now.
    ----------- Payload: {2EE4F060-CEE6-4002-AA8B-91B791541767} Pixel Bender Toolkit 2.6.0.0 -----------
    WARNING: DF035: CreateAlias:Icon file does not exist at C:\Program Files (x86)\Adobe\Adobe Utilities - CS5.5\Pixel Bender Toolkit 2.6\windows\pb_app.icofile:\\\C:\PIXELB~1\source\winwood\Staging    0X1.0E574DP-1005rea\windows\pb_app.ico42178f80493091e8e552c84a2897e9da68fce32_32_f8049309 1e8e552c84a2897e9da68fce for icon C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Adobe Design Premium CS5.5\Adobe Pixel Bender Toolkit 2.6.lnk with target C:\Program Files (x86)\Adobe\Adobe Utilities - CS5.5\Pixel Bender Toolkit 2.6\Pixel Bender Toolkit.exe(Seq 89)
    ----------- Payload: {7202D4A7-F7E6-4e7a-B77D-7B1C4E8B5CA6} Adobe Flash Player 10 ActiveX 10.0.0.0 -----------
    ERROR: Error 1722.There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action NewCustomAction1, location: C:\Users\hardy\AppData\Local\Temp\InstallAX.exe, command: -install activex -msi
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 1722.There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action NewCustomAction1, location: C:\Users\hardy\AppData\Local\Temp\InstallAX.exe, command: -install activex -msi
    ----------- Payload: {8DADF070-FE60-4899-8EF0-4242E7702F7D} Adobe Fireworks CS5.1 11.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at E:\Adobe CS5_5\payloads\AdobeFireworks11.1.0All\OEM(Seq 1215)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp4029430661" Error 5 Access is denied.(Seq 74)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 74)
    ----------- Payload: {5BDE0A1B-35BF-4224-A54F-73786EECDFC1} Adobe Fireworks CS5.1_AdobeFireworks11.1.0en_GBLanguagePack 11.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at E:\Adobe CS5_5\payloads\AdobeFireworks11.1.0en_GBLanguagePack\OEM(Seq 74)
    ----------- Payload: {D97AF04B-B70A-4862-BC25-31E6D9C4A529} Adobe Flash CS5.5 11.5.0.0 -----------
    ERROR: DR012: Setting Registry Value Failed. Error 5 Access is denied.(Seq 154)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Flash Player 10 ActiveX: Install failed

    Errors "Exit Code: 6," "Exit Code: 7" | CS5, CS5.5
    And make sure to run the installer in Win 7 compatibility mode in the first place.
    Mylenium

  • Problems with AE CS5 user interface

    I  am having a lot of problems with  my UI freezing in AE CS5.  The  projects are generally very small, and  it seems to happen randomly.   Sometimes I will merely click on a  particular window and that  particular window will "white out" and I get  the little Windows  spinning circle.  Then when I click on another  window, it also whites  out.  Sometimes this has happened when I tried to  render something.   Sometimes it happens when I try to save a project.   There seems to be  no pattern.  I work with a variety of media, including  SD, HD and image  sequences (.png).
    When the UI freezes, it never  unfreezes.  I have to shut  down the program and open it again.
    Thanks for  any help.
    WINDOWS 7   PROFESSIONAL 64-BIT
    16 GB RAM (11 GB MADE AVAILABLE FOR AE)
    DELL   PRECISION T7400 WORKSTATION
    DUAL QUAD CORE
    NVIDIA GEFORCE   GTX 285 (NEWEST DRIVERS)
    LOTS OF HARD DRIVE SPACE
    OPENGL   TURNED OFF IN PREFERENCES
    ENABLE DISK CACHE TURNED OFF
    --Render Multiple Frames Simultanously is not enabled.
    --FOOTAGE I USE:   QT, AVI, .PNG SEQUENCES, MOSTLY 720X480, BUT SOME  HD.
    --FOOTAGE STORAGE:  ON VARIOUS SATA HARD DRIVES, BUT NOT ON THE SAME  DRIVE AS THE AE.EXE IS.
    --SYSTEM DIRVE IS A SATA  HDD DRIVE
    --background tasks running?  A FEW THINGS, MAINLY MY  ANTIVIRUS PROGRAM (BIT DEFENDER), PLUS ADOBE CS5 SERVICE MANAGER,  SOMETHING CALLED CTXFIHLP, AND SOMETHING CALLED SBSV 2010/02/19-11:02:07  (ADOBE).  THESE ARE THE ONLY THINGS RUNNING AT STARTUP.  BUT I OFTEN  HAVE PHOTOSHOP OR PREMIERE OR FIREWORKS OPEN AS WELL.  AND SOMETIMES A  BROWSER (FIREFOX) IS OPEN AS WELL.

    Sysinternals --> Process Monitor, possibly: SourceForge --> Wireshark. If the freezes are that frequent, but (seemingly) at arbitrary intervals, it may quite well be a deeper problem. most likely you are running into some generic socket and network configuration problem. I suggest you set both apps to filter their views and logs by application and just keep an eye out for anything that blimps up in red or ornage/ yellow, stating a possible problem. It may take a while to sift through all the data, as they both produce several thousand entries in only a few seconds, but this may reveal something. Also check your BIOS for SATA and PCIe configuration. bad timing on your buses could be a major pain. I'd even go so far as to open the machine and see if all poweer connectors are sitting properly and the cards are also firmly resting in their slots. While there, also run the machine with open casing for a while to exclude cooling problems 8which lead to processor throttling).
    Mylenium

Maybe you are looking for