Adobe Illustrator API - delay in returning control to calling app?

Hi! We have developed a windows application that adds texts from a XML file to series (hundreds) of EPS files in batch mode by communicating with Illustrator CS4 using the API.
The application runs fine, but rather slow. We found out that the application runs much faster when keeping it’s window active by constantly clicking the main window title with the left mouse button. It seems that after performing a command Illustrator somehow waits some time before returning control to the calling application. A process that can be speeded up by manually activating the calling application with a mouse click. We found a tool that can simulate the mouse clicking, which is a nice work around. However, we would rather find out what causes this behavior and deal with it in the application itself.
Any suggestions?

You need to give a bit more detail about what you are doing if you want to get help.
You say you have written a windows application that communicates with Illustrator "using the API". You also say the application runs faster by "constantly clicking on the main window title" are you talking about the Illustrator window or your applications window?
This forum is about the Illustrator SDK that is used by Illustrator plugins which are not separate applications with their own window.
If your application is really a separate executable with its own window, I am not sure how you are communicating with Illustrator but it sounds like there is a problem in your applications message loop.

Similar Messages

  • Adobe illustrator runtime error R6025 pure virtual function call

    Buenas tardes amigos,
    Estoy trabajando sobre una versión Oficial de adobe Illustrator CS 6 con licencia, he realizado una extensión en Acción Script, luego de haber tenido numerosos problemas con la manipulación de imágenes de manera vectoriales en Illustrator con la tarjeta gráfica nvidia GeForce GT 625, decidí cambiar la tarjeta haber si se mejoraba los fallos obtenidos, y si que se nota diferencia ya se cae menos el programa, mostrando el error de runtime error R6025 pure virtual function call, y la tarjeta que estoy usando ahora es una AMD SAPPHIRE R7 250 1GB GDDR5, según he consultado en algunas páginas la tarjeta Gráfica cumple una función muy importante en esta aplicación, por lo que pido ayuda a quien sepa del tema, que solución podría tener en caso de tener que cambiar la tarjeta gráfica por favor decirme por cual, ya que quiero solucionar este problema lo más pronto,

    Esta actualizada la versión de Illustrator CS6?
    Mac/PC? Sistema operativo?
    Qué dice el resto del informe de error al fallar?
    Cúal es el nombre del módulo que falla?
    Si desinstalas esa extensión, aparece el fallo?
    Es decir está asociado el problema a la instalación de esa extensión?

  • Passing POSIX file path to Adobe Illustrator to run ExtendScrip

    Here's the code snippet I started with
    tell application "Adobe Illustrator"
        activate
        delay 10
        set pfilepath to "/Users/username/Documents/Temp/someFile.ai"
        set pfile to POSIX file pfilepath
        open pfile as alias without options
        delay 10
        do javascript "#include '/Users/username/Documents/Temp/someScript.jsx'"
        delay 1
        quit
    end tell
    activate, open, quit, and "do javascript" commands are from/for Adobe Illustrator AppleScript API.
    I originally ran the snippet through Python interface to Applescript and that didn't produce any error statements to debug, so I then executed directly from Applescript editor.
    I'm using Mac OS X 10.9.5 with Adobe Illustrator CS6. The Applescript reference for Illustator CS6 should be this:
    http://wwwimages.adobe.com/content/dam/ … Script.pdf
    http://wwwimages.adobe.com/content/dam/ … -Guide.pdf
    Does the code & syntax look correct, or what might I be doing wrong? Because the script is not currently working. I get error about can't get POSIX file. Tweaking code yesterday, with help of someone online in another discussion forum, I get other related errors, but as that discussion got deleted, I don't recall the exact tweaks and errors, but suffice to say, tweaks didn't help.
    I personally am not familiar with Applescript. I know & prefer Windows COM API.

    Thanks for the comments. I cross posted in MacScripter and this ended up working:
    set pfilepath to POSIX path of (path to documents folder) & "Temp/test.png"
    set pfile to POSIX file pfilepath as text
       open file pfile without options
    and this was the reasoning given: POSIX file returns a file URL. AI and PS aren't able to recognize this type. The solution is to coerce file URL to text (HFS path)

  • How can we add a menu in Adobe Illustrator CS3?

    Hi
    I want to create a new menu in Adobe Illustrator menu structure, and I want to call another application through that menu. After hours of searching in web I came to know that  I have to work with Plugin programming. So I downloaded the adobe illustrator SDK CS3 and started the programming using Visual Studio .NET 2005 with the sample codes provided with the SDK. And I am still  not able to find out the any solution for adding a new menu. The problem is the the documentation provided with the sample code is too short, I am not able to understand the control flow , the functions used in the sample code.
    please help me!
    Sreejesh K V

    Hi,
    Thank you very much for your help
    I am not clear about the following code.
    extern AIErr addMenu( SPInterfaceMessage *message ) {
         AIErr error = kNoErr;
         // Add a menu item to the About SDK Plug-ins menu group.
         SDKAboutPluginsHelper aboutPluginsHelper;
         aboutPluginsHelper.AddAboutPluginsMenuItem(message,
                        kSDKDefAboutSDKCompanyPluginsGroupName,
                        ai::UnicodeString(kSDKDefAboutSDKCompanyPluginsGroupNameString),
                        "Adobe Plugin...",
                        &g->aboutPluginMenu);
         // Add other menus.
         AIMenuItemHandle          throwAwayAIMenu;
         AIPlatformAddMenuItemData throwAwayMenuData;
         AIMenuGroup                    throwAwayMenuGroup;
         char strBuffer[255];
         #define kMenuPlayMenuGroup     "Menu Play Group"
         #define kSDKMenuGroup     "SDK Group"
         // First we create a normal plug-in menu to use a hierarchical root                                   
         throwAwayMenuData.groupName = "Window Utilities";
         error = sADMBasic->GetIndexString(message->d.self, kMenuStringResID, 1, strBuffer, sizeof(strBuffer));
         if (error)
              goto error;
         throwAwayMenuData.itemText = SUctopstr ( strBuffer );
         error = sMenu->AddMenuItem( message->d.self, kSDKMenuGroup, &throwAwayMenuData,
                                            0, &throwAwayAIMenu );
         if ( error )
              goto error;
         // Now we declare the menu item a menu group
         sMenu->AddMenuGroupAsSubMenu( kSDKMenuGroup, 0, throwAwayAIMenu, &throwAwayMenuGroup );
         // Now we can add menu items to it.
         throwAwayMenuData.groupName = kSDKMenuGroup;
         *strBuffer = '\0';
         error = sADMBasic->GetIndexString(message->d.self, kMenuStringResID, 8, strBuffer, sizeof(strBuffer));
         if (error)
              goto error;
         throwAwayMenuData.itemText = SUctopstr ( strBuffer );     
         error = sMenu->AddMenuItem( message->d.self, "Auto Update 1", &throwAwayMenuData, 0,
                                            &throwAwayAIMenu );
         if ( error )
              goto error;          
         // enabled for paths and no masks in the selection
         error = sMenu->UpdateMenuItemAutomatically( throwAwayAIMenu, kAutoEnableMenuItemAction,
                        kIfPath | kIfGuide, kIfMask,
                        0, 0,
                        0, 0 );      // don't care about other update options
         if ( error )
              goto error;     
         sMenu->AddMenuGroupAsSubMenu( kMenuPlayMenuGroup, 0, throwAwayAIMenu, &throwAwayMenuGroup );
         throwAwayMenuData.groupName = kMenuPlayMenuGroup;
         *strBuffer = '\0';
         error = sADMBasic->GetIndexString(message->d.self, kMenuStringResID, 2, strBuffer, sizeof(strBuffer));
         if (error)
              goto error;
         throwAwayMenuData.itemText = SUctopstr ( strBuffer );     
         error = sMenu->AddMenuItem( message->d.self, "Menu Play", &throwAwayMenuData, 0,
                                            &throwAwayAIMenu );
         if ( error )
              goto error;          
         error = sMenu->UpdateMenuItemAutomatically( throwAwayAIMenu, kAutoEnableMenuItemAction,
                        0, 0,      // don't care about what's in artwork
                        kIfGroup, // is selected and
                        kIfTextPath,      // are not selected
                        0, 0 );      // don't care about other update options
         if ( error )
              goto error;     
         Can you give me the sample code to call the functions within the SDK API.
    For example adding an url in the plugin menu, calling another application ( .exe).
    I just tried to do myself but it ended in syntax error because I am not familiar
    With the VC++ programming.
    Thanks
    Sreejesh k v

  • I want to ask next have ADOBE READER API? I want to control the ADOBE READER right-cli

    Good evening! I want to ask next have ADOBE READER API? I want to control the ADOBE READER right-click and shortcut, and the navigation buttons on the article? Thanks for the reply

    Moved to Acrobat SDK

  • OLE embedded Adobe Illustrator Artwork files not rendering properly

      I'm using BroadVision's Quicksilver.  I've attempted to embed AI Artwork
    files as OLE objects (linked and not linked), but they don't render within
    Quicksilver.  After working with their support team, they came to the
    conclusion that it was an Adobe Illustrator issue because they were
    able to reproduce the issue in Wordpad (not MS Word).
      The problem can be reproduced by the following steps (tested in Vista,
    XP, & Server 2008):
    :- Open Wordpad
    :- Click Insert -> Object -> Create From File -> Browse -> Find and select a file -> Open
      Other variations on this theme encounter the same problem, including
    pasting it from the clipboard.
      If you open a Wordpad document in MS Word and embed the OLE
    object, it saves a preview of the image which is visible from Wordpad
    if you open it later on (as long as you don't link to the original; if you do,
    and attempt to update the link, the preview image will go away).  However,
    subsequent alterations of the OLE object don't show up in Wordpad -- rather,
    the image that was rendered in Word continues to be displayed (unless, of
    course, you open it in MS Word again and re-save after the link is updated).
      It appears the support team at another company encountered a user
    experiencing the same or similar issues with their product, but on
    Illustrator CS2 as opposed to CS4:
    http://www.graphpad.com/faq/viewfaq.cfm?faq=1309
      Unfortunately, the "export to another format" workaround won't suffice.
    We're working with thousands of Illustrator artwork files that need to be
    version controlled, and other technical documents will link to the same
    Illustrator file.  When an AI file is updated, all technical documents
    need to use the altered version; linking to an exported version of the
    file just creates one more link in the chain that can create problems
    or confusion.
      Even if the version control stuff wasn't an issue, exporting to other
    formats seems rather limited.  If we export to other formats (eg, pdf)
    the images render poorly compared to what they look like in AI.
      We've tried a number of things to work around this:
    * Make sure AI [is/is not] already running
    * Rasterize paths
    * Alter the size of the image in AI
    * Alter the size of the object in the target application
    * 'Save as' with a different version of AI selected (for all versions)
    * Saving as an EPS or PDF -- the former has the same rendering issue
      as AI files; the latter renders but the drawing is blocky, probably because
      the graphics are being rendered at a very low resolution and scaled up
      after the fact.
    * Looking for or changing preferences in Illustrator that might affect it
    * Altering color scheme and various other similar settings
    * CS5 trial version -- same problem as CS4
    * Save the [wordpad] document -> close -> re-open
    * Switching between 'display as icon' and displaying the image
    * Copy & paste from various sources (from AI -> Wordpad,
      MS Word -> Wordpad, etc)
      The only way I can get it to render in Wordpad (or quicksilver for that matter)
    is if I embed the AI file in a Word/RTF document, then embed that in
    the target application (which is awfully convoluted).  Furthermore, if the
    embedded Word/RTF file links to the original file, when you open the
    document containing the embedded Word/RTF it doesn't attempt to
    update from the linked AI file, just the linked Word/RTF file.
      I'm sure there's other things we've tried to resolve this, but that's what comes
    to mind right now.
      If anyone can help with this, or clue me in that it's a bug in AI, I'd sincerely
    appreciate it.
    -Brian

    Well, no offense
    -=-=-=-=-=-=-=-=-=-=-=-=-
    None taken.  I'm helping someone else solve a technical problem, I'm just not questioning their approach; I'm not a tech writer, so I'll pass your suggestions on.
    -=-=-=-=-=-=-=-=-=-=-=-=-
    (...) you are trying  to solve one hell of a crooked workflow on the wrong end and the one  fatal flaw being that you insist on using an office tool to create  layouts and expecting it to render print-ready documents.  That just  cannot work. Even the most stubborn tech writers I occasionally work  with, recognize the need for eventually firing this at InDesign/ InCopy/  Framemaker and associated server versions and fuse the imported RTF/  Word documents and illustrations based on template layouts, scripting  and rule-based formatting, which can all happen automnatically on a  server with the respective software.
    -=-=-=-=-=-=-=-=-=-=-=-=-
    I was mistaken when I described how things are version controlled.  They would prefer to embed the AI images in each document and have each document be version controlled (that is, if the image changes it should /not/ affect other documents).
    However, I wasn't mistaken when I said there are thousands of already developed AI images.  The team working with these images has already procured a volume license for Framemaker and is hesitant to purchase other software unless there's no alternative, or the time savings would justify it.  I wish I could comment on the efficacy of your suggestion, but I'm not a tech writer; I'm unfamiliar with InDesign, InCopy, and FrameMaker.
    -=-=-=-=-=-=-=-=-=-=-=-=-
    So for what it's worth, you are  probably wasting your time and resources on something that by its nature  starts out with a limited process. I'm not even sure if AI fully  supports OLE. I seem to remember having read about it not supporting  several features and commands....
    -=-=-=-=-=-=-=-=-=-=-=-=-
    -=-=-=-=-=-=-=-=-=-=-=-=-
    If we export to other formats (eg, pdf) the images render poorly compared to what they look like in AI.
    What  do you mean? If they look "bad" in Acrobat or something, then you are  simply using the wrong export settings. which is perfectly fixable.
    -=-=-=-=-=-=-=-=-=-=-=-=-
     In Acrobat the SV graphics look beautiful at any scale, but if the PDF is OLE embedded in another application it looks terrible.
    -=-=-=-=-=-=-=-=-=-=-=-=-
    If  they look "bad" within your word documents, then we pretty much return  to what I said in the first paragraph - there's a good chance it's  simply Word rendering the artwork poorly due to its limited abilities of  dealing with graphics of any kind. I would even think that manually  changing the graphics properties would improve appearance then....
    -=-=-=-=-=-=-=-=-=-=-=-=-
    I'm not an expert on OLE; I made the [potentially bad] assumption that Acrobat would be responsible for rendering the graphic when a PDF is OLE embedded, so the application making use of the object would have limited control over the quality of the image it receives (if my assumption were correct anyway).
    I know the host process can specify whether the image is rendered as an EMF or WMF image, otherwise I know very little about the OLE API and what limitations the host process can impose.
    I'll keep tinkering to see if the PDF solution can be made to work.
    In the meantime, would anyone like to make a determination as to whether this is a real bug in AI or not?
    -Brian

  • Please tell me how to call javascript(.js) in my vb exe for adobe illustrator cs.

    Could you please please give some sample codings "how to call javascript in my vb exe for adobe illustrator cs". I called through doscript in my vb program, but some time it throws an error. If i run the script directly in illustrator it does not throws error. So Please advice me how to solve this problem.
    Thanks in advance,
    Prabudass E

    I'm not sure if this helps but it's from the CS4 scripting examples:
    Set appRef = CreateObject("Illustrator.Application")
    Set fileSystemObject = CreateObject("Scripting.FileSystemObject")
    ' Creating a folder browser in VBScript can be a problem (relying on either Windows API calls
    ' or use of ActiveX controls which may not be present on a given system). Instead, use
    ' Illustrator's built-in JavaScript to display a file browser. DoJavaScript can return a value,
    ' in this example it's the platform specific full path to the chosen template file.
    doJavaScript = "var templateFile = File.openDialog(""Select CalendarTemplate.ai file:""); if (templateFile) filePath = templateFile.fsName;"
    myFilePath = appRef.DoJavaScript(doJavaScript)

  • Adobe illustrator CC error while installing

    Hi Guys
    i just downloaded Adobe illustrator CC
    the problem is while its installing it says error
    "Installation completed though some optional components failed to install correctly (6)"
    and this is the log
    Exit Code: 6
    Please see specific errors below for troubleshooting. For example, ERROR: DF045, DS003,D ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 7 error(s)
    ----------- Payload: Adobe CSXS Extensions 4_4.0.2_AdobeCSXSExtensions4-mul 4.0.2.0 {81036849-4B6D-4CB8-8D47-31222F3540E3} -----------
    ERROR: DS003: Installer package might be corrupt. Re-download the installer and try again. (Cannot extract 'C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\\Adobe\AdobePatchFiles\{81036849-4B6D-4CB8-8D47-31222F3540 E3}.zip'. Error: Error 0 )
    ----------- Payload: Adobe CSXS Extensions 4_4.0.1_AdobeCSXSExtensions4-mul 4.0.1.0 {0F60BFC9-8764-4554-B222-2B55089F395D} -----------
    ERROR: DS003: Cannot zip 'C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\\Adobe\AdobePatchFiles\{0F60BFC9-8764-4554-B222-2B55089F39 5D}'. Error: Error 0
    ----------- Payload: ShareOnBehance_1.0.1_ShareOnBehance1-mul 1.0.1.0 {DE9B086C-67C4-4EB7-9786-9531AD8FEAE8} -----------
    ERROR: DS003: Installer package might be corrupt. Re-download the installer and try again. (Cannot extract 'C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\\Adobe\AdobePatchFiles\{DE9B086C-67C4-4EB7-9786-9531AD8FEA E8}.zip'. Error: Error 0 )
    ----------- Payload: ShareOnBehance_1.0.1_ShareOnBehance1-mul 1.0.1.0 {DE9B086C-67C4-4EB7-9786-9531AD8FEAE8} -----------
    ERROR: DS003: Cannot zip 'C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\\Adobe\AdobePatchFiles\{DE9B086C-67C4-4EB7-9786-9531AD8FEA E8}'. Error: Error 183 Cannot create a file when that file already exists.
    ----------- Payload: Adobe CSXS Infrastructure 4_4.0.1_AdobeCSXSInfrastructure4-mul 4.0.1.0 {9EEE0750-879F-4EA8-89F7-329C866B572B} -----------
    ERROR: DF045: File corruption detected. Re-install the product & then apply the patch again. (Can not repair file "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\lib\ServiceManager-Launcher.dll")(Seq 5)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\zlib1.dll", Patcher tool returned error: 32769(Seq 3)
    ERROR: DW063: Error rolling back command ARKPatchCommand(Seq 3)

    I tried this methods but it doesn't work
    So now I am trying to Uninstall It from Control panel then Update from creative Suite App For Windows
    Wish it work

  • Adobe illustrator CS scriptsing problem.

    So i dived into AppleScripting because I have a few hundred stills I ran a Live Trace Batch on. But since Bridge does not allow you to change the Art Board properties before the batch. I need to program a script that can go in and change the Art Board properties. I was hoping to use Automator with Applescript to Batch resize all my stills. So far this is what I have written for the Applescript.
    tell application "Adobe Illustrator"
    set properties to {width:640, height:480}
    end tell
    end
    I thought this would be straight up easy but i got an error.
    set properties to {width:640, height:480}
    "Adobe Illustrator CS2 got an error: Can't set properties to {width:640, height:480}."
    So it seems I can't set the properties on the art board. Any suggestions or clues or anything would be extremely helpful.
    I would also like to add that I wrote a script to make a new document.
    tell application "Adobe Illustrator"
    if (document 1 exists) then
    make document with properties {width:1920, height:1080}
    end if
    end tell
    Which works fine. What I don't understand is why it wont change the Artboard properties of an existing document that I have opened with my first script.

    Document page size and colour mode are 2 features that I have submitted a request to be changed from read only properties with adobe hopefully it may make a future release of this application. For the time being my work around has been to use some UI scripting. I don't know if this will be of any use to you but you could give these a try.
    tell application "Illustrator CS"
    activate
    tell application "System Events"
    tell process "Illustrator CS"
    key down command
    key down option
    keystroke "p"
    key up command
    key up option
    delay 1
    keystroke tab
    keystroke "300" --Your measurements in ruler units… not points as the rest of illustrator scripting
    keystroke tab
    keystroke "300" --Your measurements in ruler units… not points as the rest of illustrator scripting
    keystroke return
    end tell
    end tell
    end tell
    tell application "Illustrator CS"
    activate
    set docRef to the current document
    tell docRef
    if color space of docRef is not CMYK then
    tell application "System Events"
    tell process "Illustrator CS"
    tell menu bar 1
    click menu item "CMYK Color" of menu "Document Color Mode" of menu item "Document Color Mode" of menu "File"
    end tell
    end tell
    end tell
    end if
    end tell
    end tell
    --

  • Question for the Adobe Illustrator team or anyone who might know

    Is Adobe Illustrator meant only to use Bezier curves? I know that they are very useful for a number of curves, but are they used to approximate circles? Granted, all screens require rasterized objects to the nearest pixels in order to display them, but when drawing a circle, information is lost because it is converted into 4 Bezier curves (cubic or quadratic, I'm not sure). However, when I export a circle from Adobe Illustrator CS5 to SVG it preserves the circle or ellipse's information with its proper tag.
    So, my question is, does the Adobe Illustrator Artboard file format have some internal representation of ellipses and circles such that it it not broken down into Bezier curves?

    function(){return A.apply(null,[this].concat($A(arguments)))}
    when I export a circle from Adobe Illustrator CS5 to SVG it preserves the circle or ellipse's information with its proper tag.
    So what? That means nothing. You're just talking about terms within a progamming language. One could program Illustrator to export a freakin' square as SVG's circle tag if one wanted to.
    As explained in your previous thread about the same worry-wart subject:
    There being a "circle element" in SVG programming, in itself, means nothing. I can write you a Javascript called "Illustrator's Circle Element" that will work in Illustrator, that will prompt you for center coordinates and a radius, that will appear in one of Illustrator's menus, and that will cause Illustrator to render that which for any practical purpose is a circle. The presence of such a command in no way signifies to you what kind of curve-rendering math is employed by that "element" to actually plot the curve!
    By the same token, SVG's providing something called a "circle element" in its API and asking you to specify it in terms of center and radius in no way tells you what kind of curve-rendering math is actually being employed to render the curve, nor does it ensure that its rendered result will be any more precisely mathematically circular than rendered by a cubic Bezier curve. If you don't know for a fact that SVG's rendering math does not employ Bezier curves, then your concern is moot.
    It's moot anyway, because it's ridiculous. Again: the "inaccuracy" is so tiny as to be completely pointless for any practical SVG purpose.
    Again: You are reading entirely too much into a mere popularly-cited curiosity about the cubic Bezier equation. You are being silly; you just don't realize it.
    Illustrator's (i.e; PostScript's) using Bezier math to plot curves does not make Illustrator (or any of the similar programs) in any way "sub standard" or "less accurate" or "less desirable" or more "dumbed down" than any other. In fact, here are some other related curiosities for you to loose sleep over:
    The math primarily used for plotting curves in most CAD programs is quite arguably "more crude" than Bezier curves.
    Illustrator uses cubic Beziers. TrueType uses quadratic Beziers. But there are Bezier equations of higher order than cubic.
    (If I remember right) Bezier himself discovered the formulae bearing his name in pursuit of more supple curves for the automotive industry.
    If you're still worried about this, you really need to go take a couple of math courses, so you can understand that this really is silly.
    JET

  • Thinking of selling Adobe Illustrator cs6 software, can it be used on other people's computers if I sell it? l

    Thinking of selling my Adobe Illustrator cs6, Mac compatible software plus the Classroom in a Book with lessons CD. I'd really like Photoshop instead.  I've never sold software, can it be used on other people's computers if I sell it? I'd have to uninstall it here, through Adobe personally? It's confusing

    You will find the below in your legal folder. According to 4.6.1 looks like you cannot sell.
    ADOBE
    Software License Agreement
    PLEASE READ THIS AGREEMENT CAREFULLY. BY COPYING, INSTALLING, OR USING ALL OR ANY PORTION OF THIS SOFTWARE, YOU (HEREINAFTER “CUSTOMER”) ACCEPT ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT, INCLUDING, WITHOUT LIMITATION, THE PROVISIONS ON LICENSE RESTRICTIONS IN SECTION 4, LIMITED WARRANTY IN SECTIONS 6 AND 7, LIMITATION OF LIABILITY IN SECTION 8, AND SPECIFIC PROVISIONS AND EXCEPTIONS IN SECTION 16. CUSTOMER AGREES THAT THIS AGREEMENT IS LIKE ANY WRITTEN NEGOTIATED AGREEMENT SIGNED BY CUSTOMER. THIS AGREEMENT IS ENFORCEABLE AGAINST CUSTOMER. IF CUSTOMER DOES NOT AGREE TO THE TERMS OF THIS AGREEMENT, CUSTOMER MAY NOT USE THE SOFTWARE.
    Customer may have another written agreement directly with Adobe (e.g., a volume license agreement) that supplements or supersedes all or portions of this agreement. The Software is LICENSED, NOT SOLD, only in accordance with the terms of this agreement. Use of some Adobe and some non-Adobe materials and services included in or accessed through the Software may be subject to additional terms and conditions. Notices about non-Adobe materials are available at http://www.adobe.com/go/thirdparty.
    The Software may cause Customer’s Computer to AUTOMATICALLY CONNECT TO THE INTERNET. The Software may also require activation or registration. Additional information on activation, Internet connectivity, and privacy is available in Sections 14 and 16.
    1. Definitions.
    1.1 “Adobe” means Adobe Systems Incorporated, a Delaware corporation, 345 Park Avenue, San Jose, California 95110, if this agreement is entered into while Customer is in the United States, Canada, or Mexico; otherwise, it means Adobe Systems Software Ireland Limited, 4-6 Riverwalk, Citywest Business Campus, Dublin 24, Ireland.
    1.2 “Adobe Runtime(s)” means Adobe AIR, Adobe Flash Player, Shockwave Player, or Authorware Player.
    1.3 “Compatible Computer” means a Computer with the recommended operating system and hardware configuration as stated in the Documentation.
    1.4 “Computer” means a virtual or physical device that accepts information in digital or similar form and manipulates it for a specific result based on a sequence of instructions, including without limitation desktop computers, laptops, tablets, mobile devices, telecommunication devices, Internet-connected devices, and hardware products capable of operating a wide variety of productivity, entertainment, or other software applications.
    1.5 “Customer” means you and any legal entity that obtained the Software and on whose behalf it is used; for example, and as applicable, your employer.
    1.6 “Internal Network” means a private, proprietary network resource accessible only by employees and individual contractors (i.e., temporary employees) of a specific corporation or similar business entity. Internal Network does not include portions of the Internet or any other network community open to the public, such as membership or subscription driven groups, associations, and similar organizations.
    1.7 “Output File” means an output file Customer creates with the Software.
    1.8 “Permitted Number” means one (1) unless otherwise indicated under a valid license (e.g., volume license) granted by Adobe.
    1.9 “Software” means (a) all of the information with which this agreement is provided, including but not limited to: all software files and other computer information; (ii) any proprietary scripting logic embedded within exported file formats or used in an Adobe Online Service; (iii) sample and stock photographs, images, sounds, clip art and other artistic works bundled with Adobe software or made available by Adobe on Adobe’s website for use with the Adobe software and not obtained from Adobe through a separate service (unless otherwise noted within that service) or from another party (“Content Files”); (iv) related explanatory written materials and files (“Documentation”); and (v) fonts; and (b) any modified versions and copies of, and upgrades, updates, and additions to, such information, provided to Customer by Adobe at any time, to the extent not provided under separate terms (collectively, “Updates”).
    2. Software License; Membership.
    2.1 Software License. This Section 2.1 applies to Customers who have purchased a license to the Software but have not purchased a membership-based license or service such as the Creative Cloud membership (as described in Section 2.2).
    2.1.1 License Grant. Subject to Customer’s continuous compliance with this Agreement and payment of the applicable license fees, Adobe grants Customer a non-exclusive and limited license to install and use the Software (a) in the territory or region where Customer obtains the Software from Adobe or Adobe’s authorized reseller or as otherwise stated in the Documentation (“Territory”), (b) during the term of such license (“License Term”), (c) within the scope of the License Type and on the Permitted Number of Customer’s Compatible Computers as specified in the Documentation, and (d) in a manner consistent with the terms of this Agreement and applicable Documentation. Unless otherwise defined in this Agreement, in the applicable Documentation, or at the time of purchase, License Term shall be perpetual. Upon the expiration or termination of the License Term, some or all of the Software may cease to operate without prior notice. Upon expiration or termination of the License Term, Customer may not use the Software unless Customer has renewed the license. The license granted herein is supplemented by specific provisions in Section 16 as related to the use of certain applicable products and components that may be included in the Software such as font software, Acrobat, After Effects, Adobe Presenter, Contribute, Flash Player, Flash Builder, Digital Publishing Suite, and Adobe Runtimes.
    2.1.2 License Types.
    2.1.2.1 Non-Serialized Software. The Software, or portions of the Software, that are provided without a serial number during the License Term may only be installed and used on any number of Compatible Computers as part of an organizational deployment plan during the License Term for demonstration, evaluation, and training purposes only, and only if any Output Files or other materials produced through such use are used only for internal, non-commercial, and non-production purposes. THE NON-SERIALIZED SOFTWARE IS PROVIDED “AS-IS”. ACCESS TO AND USE OF ANY OUTPUT FILES CREATED WITH SUCH NON-SERIALIZED SOFTWARE IS ENTIRELY AT CUSTOMER’S OWN RISK.
    2.1.2.2 Evaluation Software. The Software, or portions of the Software, that are provided with a serial number designated for “evaluation purposes” or other similar designation (such as Software or a serial number supplied as “EVAL” under a separate agreement) (“Evaluation Software”) may only be installed and used on Permitted Number of Compatible Computers during the License Term for demonstration, evaluation, and training purposes only, and only if any Output Files or other materials produced through such use are used only for internal, non-commercial, and non-production purposes. THE EVALUATION SOFTWARE IS PROVIDED “AS IS”. ACCESS TO AND USE OF ANY OUTPUT FILES CREATED WITH SUCH EVALUATION SOFTWARE IS ENTIRELY AT CUSTOMER’S OWN RISK.
    2.1.2.3 Subscription Edition. For the Software available on a subscription-basis (“Subscription Edition”), Customer may install and use the Subscription Edition only on the Permitted Number of Compatible Computer during the License Term. Subject to the Permitted Number of Computers for the Subscription Edition, Adobe may allow Customer to install and use the most recent prior version of the Subscription Edition and the current version of the Subscription Edition on the same Computer during the License Term. Customer agrees that Adobe may change the type of Software (such as specific components, versions, platforms, languages, etc.) included in the Subscription Edition at any time and shall not be liable to Customer whatsoever for such change. Ongoing access to a Subscription Edition requires: (a) a recurring Internet connection to activate, renew, and validate the license, (b) Adobe or its authorized reseller’s receipt of recurring subscription payments, and (c) Customer’s agreement to subscription terms and other additional terms and conditions that are available athttp://www.adobe.com/go/paymentterms or at the time of purchase. If Adobe does not receive the recurring subscription payment or cannot validate the license periodically, then the Software may become inactive without additional notice until Adobe receives the payment or validates the license.
    2.1.3 Portable or Home Computer Use. Subject to the restrictions set forth in Section 2.1.4, the primary user of the Computer on which the Software is installed under Section 2.1 (“Primary User”) may install a second copy of the Software for his or her exclusive use on either a portable Computer or a Computer located at his or her home, provided that the Software on the portable or home Computer is not used at the same time as the Software on the primary Computer.
    2.1.4 Restrictions on Secondary Use by Volume Licensees. If the Software was obtained under an Adobe volume license program or agreement (such as Adobe Volume Licensing) by any licensee other than an educational volume licensee, then the second copy of the Software made under Section 2.1.3 must be used solely for the benefit and business of that volume licensee.
    2.1.5 Dual Boot Platform. The Software is licensed for use on a specific operating system platform. Customer must purchase a separate license for use of the Software on each operating system platform. By way of example, if Customer desires to install the Software on both the Mac OS and Windows operating system platforms on a device that runs both of those platforms (i.e., a dual boot machine), then Customer must first obtain two separate licenses for the Software. This is true even if two versions of the Software, each designed for a different operating system platform, are delivered to Customer on the same media.
    2.1.6 Distribution from a Server. As permitted by the Documentation, Customer may copy an image of the Software onto a Computer file server within Customer’s Internal Network (“Server”) for the purpose of downloading and installing the Software onto Computers within the same Internal Network for use only as permitted by this Section 2.
    2.1.7 Server Use.
    2.1.7.1 As permitted in a separate purchasing document or Documentation and subject to license restrictions stated in this Agreement, Customer may install the Software on a Server only for the purpose of allowing an individual from a Computer within the same Internal Network (“Network User”) to access and use the Software. The Network User who has access to such Software on the Server is referred to as “Server Software User”. The total number of Server Software Users (not the concurrent number of users) may not exceed the Permitted Number. By way of example, if Customer has purchased 10 licenses of Software (Permitted Number is 10) and Customer elects to install the Software on a Server, then Customer can only allow up to 10 Server Software Users the access to the Software (even though Customer may have more than 10 Network Users or fewer than 10 concurrent users of the Software).
    2.1.7.2 For clarification and without limitation, the foregoing does not permit Customer to install or access (either directly or through commands, data, or instructions) the Software: (a) from or to a Computer not part of Customer’s Internal Network; (b) for enabling web hosted workgroups or web hosted services available to the public; (c) by any individual or entity to use, download, copy, or otherwise benefit from the functionality of the Software unless licensed to do so by Adobe; (d) as a component of a system, workflow or service accessible by more than the Permitted Number of users; or (e) for operations not initiated by an individual user (e.g., automated server processing).
    2.2 Membership. This Section 2.2 applies to Customers who have purchased a membership-based license or service such as the Creative Cloud membership (collectively, “Membership”).
    2.2.1 Adobe Online Services Related to the Membership. Subject to Customer’s continuous compliance with this Agreement and payment of the applicable membership fees, if any, Adobe grants Customer a non-exclusive, Territory-wide and limited right to access and use the Software and related Adobe Online Service (as further described in Section 16.4.1) as part of the Membership, subject to the terms stated in this Agreement and the Additional Terms of Use (as the term is defined in Section 14.1.3 below).
    2.2.2 Software License Related to the Membership. Subject to Customer’s continuous compliance with this Agreement and payment of the applicable membership fees, if any, Adobe grants Customer a non-exclusive and limited license to install and use the Software: (a) in the Territory, (b) during the period that the Membership is current and active (“Membership Term”) and (c) in a manner consistent with the terms of this Agreement and applicable Documentation. Upon the expiration or termination of the Membership Term, some or all of the Software may cease to operate without prior notice and (y) Customer may not use the Software unless Customer has renewed the membership. All terms related to the specific Software as stated in this Agreement shall remain effective and continue to apply to Customer and its use of such Software.
    2.2.3 Restrictions. Customer agrees to the following additional terms and restrictions related to the Membership: (a) Adobe may change the type of Software (such as specific products, components, versions, platforms, languages, etc.) included in the Membership at any time and shall not be liable to Customer whatsoever for such change; (b) Customer may be required to connect to the Internet and log in at any time during the Membership Term; (c) Software may automatically connect to the Internet to verify Customer’s Membership without notice at any time; and (d) Customer may not enable or allow others to use the Software as Customer.
    2.3 Content Files. Unless stated otherwise in the “Read-Me” files, Documentation, or other license(s) associated with the Content Files, Customer may use, display, modify, reproduce, and distribute any of the Content Files. However, Customer may not distribute the Content Files on a stand-alone basis (i.e., in circumstances in which the Content Files constitute the primary value of the product being distributed), and Customer may not claim any trademark rights in the Content Files or derivative works thereof. Nothing stated herein shall affect the ownership of the Software as stated in Section 3.
    2.4 Sample Application Code. Customer may modify the source code form of those portions of the Software programs that are expressly identified as sample code, sample application code, code snippets, ActionScript class files, or sample components (each, “Sample Application Code”) in the accompanying Documentation solely for the purposes of designing, developing, and testing websites and applications developed using Adobe software programs; provided, however, Customer is permitted to copy and distribute the Sample Application Code (modified or unmodified) only if all of the following conditions are met: (a) Customer distributes only the compiled object code versions of the Sample Application Code with its application; (b) Customer does not include the Sample Application Code in any product or application designed for website development; and (c) Customer does not use the Adobe name, logos, icons, or other Adobe trademarks to market its application. Customer agrees to indemnify, hold harmless, and defend Adobe from and against any loss, damage, claims, or lawsuits, including attorney’s fees, that arise or result from the use or distribution of its application.
    2.5 Programming Languages. The Software may include portions of the ExtendScript SDK and Pixel Bender SDK. Subject to the restrictions contained in this Section 2, Adobe grants to Customer a nonexclusive, nontransferable, royalty-free license to use the items in the ExtendScript SDK and Pixel Bender SDK only for the purpose of internal development of application programs designed to function with Adobe products. Except as expressly provided in this Section 2.5, no portions of the ExtendScript SDK or the Pixel Bender SDK may be modified or distributed. Customer agrees to indemnify, hold harmless, and defend Adobe from and against any loss, damage, claims, or lawsuits, including attorney’s fees, that arise or result from such distribution.
    2.6 Documentation Copies. Customer may make copies of the Documentation for its own internal use in connection with use of the Software in accordance with this agreement, but no more than the amount reasonably necessary.
    3. Intellectual Property Ownership.
    The Software and any authorized copies that Customer makes are the intellectual property of and are owned by Adobe Systems Incorporated and its suppliers. The structure, organization, and source code of the Software are the valuable trade secrets and confidential information of Adobe Systems Incorporated and its suppliers. The Software is protected by law, including but not limited to the copyright laws of the United States and other countries, and by international treaty provisions. Except as expressly stated herein, this agreement does not grant Customer any intellectual property rights in the Software. All rights not expressly granted are reserved by Adobe and its suppliers.
    4. Restrictions and Requirements.
    4.1 Proprietary Notices. Any permitted copy of the Software (including without limitation Documentation) that Customer makes must contain the same copyright and other proprietary notices that appear on or in the Software.
    4.2 Use Obligations. Customer agrees that it will not use the Software other than as permitted by this agreement and that it will not use the Software in a manner inconsistent with its design or Documentation.
    4.3 No Modifications. Except as expressly permitted in Sections 2 or 16, Customer may not modify, port, adapt, or translate the Software.
    4.4 No Reverse Engineering. Except as otherwise expressly permitted in Section 16.1, Customer will not reverse engineer, decompile, disassemble, or otherwise attempt to discover the source code of the Software.
    4.5 No Unbundling. The Software may include various applications and components, may allow access to different Adobe Online Services, may support multiple platforms and languages, and may be provided to Customer on multiple media or in multiple copies. Nonetheless, the Software is designed and provided to Customer as a single product to be used as a single product on Computers as permitted herein. Unless otherwise permitted in the Documentation, Customer is not required to install all component parts of the Software, but Customer may not unbundle the component parts of the Software for use on different Computers.
    4.6 No Transfer.
    4.6.1 CUSTOMER WILL NOT RENT, LEASE, SELL, SUBLICENSE, ASSIGN, OR TRANSFER ITS RIGHTS IN THE SOFTWARE (INCLUDING WITHOUT LIMITATION, SOFTWARE OBTAINED THROUGH A WEB DOWNLOAD), OR AUTHORIZE ANY PORTION OF THE SOFTWARE TO BE COPIED ONTO ANOTHER INDIVIDUAL OR LEGAL ENTITY’S COMPUTER EXCEPT AS MAY BE EXPRESSLY PERMITTED HEREIN.
    4.6.2 Except with regard to Educational Software Products (as defined in Section 16.3), Pre-release Software (as defined in Section 16.2), Evaluation Software, not-for-resale copies of the Software, or Software obtained through an Adobe volume license program and further subject to Section 4.6.3, Customer may permanently transfer all its rights to use the Software to another individual or legal entity provided that: (a) Customer also transfers this agreement, (ii) the serial number(s), the Software affixed to media provided by Adobe or its authorized distributor, and all other software or hardware bundled, packaged, or pre-installed with the Software, including all copies, Updates, and Prior Versions (as defined in Section 5, below), and (iii) all copies of font software to such individual or entity; (b) Customer retains no Updates, Prior Versions, or copies, including backups and copies stored on a Computer; and (c) the receiving party accepts the terms and conditions of this agreement and any other terms and conditions under which Customer purchased a valid license to the Software. Additional information on transferring volume licensed software is available at http://www.adobe.com/go/volumepolicies.
    4.6.3 If the Software requires recurring activation or registration and Adobe grants Customer’s request to be exempted from the requirement of such recurring activation or registration, then in addition to the restrictions set forth in the Activation Terms (as defined in Section 14.3), then the right to permanently transfer as stated in Section 4.6.2 shall terminate immediately upon the grant of such request.
    4.7 No Service Bureau. Customer will not use or offer the Software on a service bureau basis. Section 16.6.3 provides a limited exception for font software only.
    4.8 Adobe Runtime Restrictions. Customer will not use Adobe Runtimes on any non-PC device or with any embedded or device version of any operating system. For the avoidance of doubt, and by example only, Customer may not use Adobe Runtimes on any (a) mobile device, set top box, handheld, phone, game console, TV, DVD player, media center (other than with Windows XP Media Center Edition and its successors), electronic billboard or other digital signage, Internet appliance or other Internet-connected device, PDA, medical device, ATM, telematic device, gaming machine, home automation system, kiosk, remote control device, or any other consumer electronics device; (b) operator-based mobile, cable, satellite, or television system; or (c) other closed system device. Additional information on licensing Adobe Runtimes is available at http://www.adobe.com/go/licensing.
    4.9 Territory. Customer shall only use the Software and access the Adobe Online Services in the Territory and in a manner consistent with the activation policy described at http://www.adobe.com/go/activation. Adobe may terminate the license granted herein or suspend the Membership or access to the Adobe Online Services if Adobe determines that Customer is using the Software or Adobe Online Services outside the Territory.
    5. Updates.
    If the Software is an Update to a prior version of Adobe software (the “Prior Version”), then Customer’s use of this Update is conditional upon its retention of the Prior Version. Therefore, if Customer validly transfers this Update pursuant to Section 4.6, the Customer must transfer the Prior Version along with it. If Customer wishes to use this Update in addition to the Prior Version, then Customer may only do so on the same Computer on which it has installed and is using the Prior Version. Any obligations that Adobe may have to support Prior Versions during the License Term may end upon the availability of this Update. No other use of the Update is permitted. Additional Updates may be licensed to Customer by Adobe with additional or different terms.
    6. Limited Warranty.
    Except as otherwise stated in a separate agreement between Adobe and a Software licensee, Adobe warrants to the individual or entity that first purchases a license for the Software for use pursuant to the terms of this agreement that the Software will perform substantially in accordance with the corresponding user manual for the Software for the shorter period of (a) the ninety (90) day period or (b) License Term following receipt of the Software (“Warranty Period”) when used on the Compatible Computer. Non-substantial variation of performance from the user manual does not establish a warranty right. This limited warranty does not apply to the following, which are made available AS-IS and without warranty from Adobe: patches; (ii) font software; (iii) Pre-release Software, trial, starter, evaluation, product sampler, Evaluation Software, and not-for-resale copies of the Software; (iv) websites, Adobe Online Services; and Third Party Online Services; (v) Certified Document Services (see Section 16); and (vi) any software made available by Adobe for free via web download from an Adobe website. All warranty claims must be made, along with proof of purchase, to the Adobe Customer Support Department within such Warranty Period. Additional information on warranty claims is available at http://www.adobe.com/go/support. The entire liability of Adobe and its affiliates related to such warranty claim and Customer’s sole and exclusive remedy under any warranty will be limited to either, at Adobe’s option, support of the Software based on the warranty claim, replacement of the Software, or, if support or replacement is not practicable at Adobe’s determination, refund of the license fee Customer paid for the Software (if any). THE LIMITED WARRANTY SET FORTH IN THIS SECTION GIVES CUSTOMER SPECIFIC LEGAL RIGHTS. CUSTOMER MAY HAVE ADDITIONAL RIGHTS UNDER LAW WHICH MAY VARY FROM JURISDICTION TO JURISDICTION. ADOBE DOES NOT SEEK TO LIMIT CUSTOMER’S WARRANTY RIGHTS TO ANY EXTENT NOT PERMITTED BY LAW. Please see Section 16 for jurisdiction-specific provisions or contact the Adobe Customer Support Department.
    7. Disclaimer.
    THE LIMITED WARRANTY IN SECTION 6 AND ANY STATUTORY WARRANTY AND REMEDY THAT CANNOT BE EXCLUDED OR LIMITED UNDER LAW ARE THE ONLY WARRANTIES AND EXCLUSIVE REMEDIES APPLICABLE TO THE SOFTWARE. OTHER THAN THOSE OFFERED AND STATUTORY WARRANTIES AND REMEDIES, ADOBE, ITS AFFILIATES, SUPPLIERS, AND CERTIFICATE AUTHORITIES (DEFINED BELOW) DISCLAIM ALL WARRANTIES, CONDITIONS, REPRESENTATIONS, AND TERMS, EXPRESS OR IMPLIED, WHETHER BY STATUTE, COMMON LAW, CUSTOM, USAGE, OR OTHERWISE AS TO ANY MATTER, INCLUDING BUT NOT LIMITED TO PERFORMANCE, SECURITY, NON-INFRINGEMENT OF THIRD PARTY RIGHTS, INTEGRATION, MERCHANTABILITY, QUIET ENJOYMENT, SATISFACTORY QUALITY, AND FITNESS FOR ANY PARTICULAR PURPOSE. OTHER THAN SUCH OFFERED AND STATUTORY WARRANTIES AND REMEDIES, THE SOFTWARE AND ACCESS TO ANY WEBSITES, ADOBE OR THIRD PARTY ONLINE SERVICES, AND CERTIFICATE AUTHORITY SERVICES ARE PROVIDED AS-IS AND WITH ALL FAULTS. THIS DISCLAIMER OF WARRANTY MAY NOT BE VALID IN SOME JURISDICTIONS. CUSTOMER MAY HAVE ADDITIONAL WARRANTY RIGHTS UNDER LAW WHICH MAY NOT BE WAIVED OR DISCLAIMED. ADOBE DOES NOT SEEK TO LIMIT CUSTOMER’S WARRANTY RIGHTS TO ANY EXTENT NOT PERMITTED BY LAW. The provisions of Sections 7 and Section 8 will survive the termination of this agreement, howsoever caused, but this will not imply or create any continued right to use the Software after termination of this agreement.
    8. Limitation of Liability.
    EXCEPT FOR THE EXCLUSIVE REMEDY OFFERED BY ADOBE ABOVE AND ANY REMEDIES THAT CANNOT BE EXCLUDED OR LIMITED UNDER LAW, ADOBE, ITS AFFILIATES, SUPPLIERS, AND CERTIFICATE AUTHORITIES WILL NOT BE LIABLE TO CUSTOMER FOR ANY LOSS, DAMAGES, CLAIMS, OR COSTS WHATSOEVER INCLUDING ANY CONSEQUENTIAL, INDIRECT OR INCIDENTAL DAMAGES, ANY LOST PROFITS OR LOST SAVINGS, ANY DAMAGES RESULTING FROM BUSINESS INTERRUPTION, PERSONAL INJURY OR FAILURE TO MEET ANY DUTY OF CARE, OR CLAIMS BY A THIRD PARTY, EVEN IF AN ADOBE REPRESENTATIVE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS, OR COSTS. IN ANY EVENT, ADOBE’S AGGREGATE LIABILITY AND THAT OF ITS AFFILIATES, SUPPLIERS, AND CERTIFICATE AUTHORITIES UNDER OR IN CONNECTION WITH THIS AGREEMENT WILL BE LIMITED TO THE AMOUNT PAID FOR THE SOFTWARE, IF ANY. THIS LIMITATION WILL APPLY EVEN IN THE EVENT OF A FUNDAMENTAL OR MATERIAL BREACH OR A BREACH OF THE FUNDAMENTAL OR MATERIAL TERMS OF THIS AGREEMENT. Nothing contained in this agreement limits Adobe’s liability to Customer in the event of death or personal injury resulting from Adobe’s negligence or for the tort of deceit (fraud). Adobe is acting on behalf of its affiliates, suppliers, and Certificate Authorities for the purpose of disclaiming, excluding and limiting obligations, warranties, and liability, but in no other respects and for no other purpose.
    THE FOREGOING LIMITATIONS AND EXCLUSIONS APPLY TO THE EXTENT PERMITTED BY APPLICABLE LAW IN CUSTOMER’S JURISDICTION. THIS LIMITATION OF LIABILITY MAY NOT BE VALID IN SOME JURISDICTIONS. CUSTOMER MAY HAVE RIGHTS THAT CANNOT BE WAIVED UNDER CONSUMER PROTECTION AND OTHER LAWS. ADOBE DOES NOT SEEK TO LIMIT ITS WARRANTY OR REMEDIES TO ANY EXTENT NOT PERMITTED BY LAW. SEE SECTION 16 FOR JURISDICTION-SPECIFIC STATEMENTS.
    9. Export Rules.
    Customer acknowledges that the Software is subject to the U.S. Export Administration Regulations (the “EAR”) and that Customer will comply with the EAR. Customer will not export or re-export the Software, directly or indirectly, to: (a) any countries that are subject to U.S. export restrictions (including, but not limited to, Cuba, Iran, North Korea, Sudan, and Syria), (b) any end user whom Customer knows or has reason to know will utilize them in the design, development or production of nuclear, chemical or biological weapons, or rocket systems, space launch vehicles, and sounding rockets, or unmanned air vehicle systems, or (c) any end user who has been prohibited from participating in the U.S. export transactions by any federal agency of the U.S. government. In addition, Customer is responsible for complying with any local laws in Customer’s jurisdiction which may impact its right to import, export or use the Software. If Adobe has knowledge that a violation has occurred, Adobe may be prohibited from providing maintenance and support for the Software.
    10. Governing Law.
    If Customer is a consumer who uses the Software for only personal non-business purposes, then this agreement will be governed by the laws of the jurisdiction which Customer purchased the license to use the Software. If Customer is not such a consumer, this agreement will be governed by and construed in accordance with the substantive laws in force in: (a) the State of California, if a license to the Software is obtained when Customer is in the United States, Canada, or Mexico; (b) Japan, if a license to the Software is obtained when Customer is in Japan; (c) Singapore, if a license to the Software is obtained when Customer is in a member state of the Association of Southeast Asian Nations, Mainland China, Hong Kong S.A.R., Macau S.A.R., Taiwan, or the Republic of Korea; or (d) England and Wales, if a license to the Software is obtained when Customer is in any jurisdiction not described above. The respective courts of Santa Clara County, California when California law applies, Tokyo District Court in Japan, when Japanese law applies, and the competent courts of London, England, when the law of England and Wales applies, shall each have non-exclusive jurisdiction over all disputes relating to this agreement. When Singapore law applies, any dispute arising out of or in connection with this agreement, including any question regarding its existence, validity, or termination, shall be referred to and finally resolved by arbitration in Singapore in accordance with the Arbitration Rules of the Singapore International Arbitration Centre (“SIAC”) for the time being in force, which rules are deemed to be incorporated by reference into this section. There shall be one arbitrator, selected jointly by the parties. If the arbitrator is not selected within thirty (30) days of the written demand by a party to submit to arbitration, the Chairman of the SIAC shall make the selection. The language of the arbitration shall be English. Notwithstanding any provision in this agreement, Adobe or Customer may request any judicial, administrative, or other authority to order any provisional or conservatory measure, including injunctive relief, specific performance, or other equitable relief, prior to the institution of legal or arbitration proceedings, or during the proceedings, for the preservation of its rights and interests or to enforce specific terms that are suitable for provisional remedies. This agreement will not be governed by the following, the application of which is hereby expressly excluded: the conflict of law rules of any jurisdiction, (y) the United Nations Convention on Contracts for the International Sale of Goods, and (z) the Uniform Computer Information Transactions Act, as enacted in any jurisdiction.
    11. General Provisions.
    If any part of this agreement is found void and unenforceable, it will not affect the validity of the balance of this agreement, which will remain valid and enforceable according to its terms. This agreement may only be modified in writing, signed by an authorized officer of Adobe. The English version of this agreement will be the version used when interpreting or construing this agreement. This is the entire agreement between Adobe and Customer relating to the Software and it supersedes any prior representations, discussions, undertakings, communications, or advertising relating to the Software.
    12. Notice to U.S. Government End Users.
    12.1 U.S. Government Licensing of Adobe Technology. Customer agrees that when licensing Adobe Software for acquisition by the U.S. Government, or any contractor therefore, Customer will license consistent with the policies set forth in 48 C.F.R. Section 12.212 (for civilian agencies) and 48 C.F.R. Sections 227.7202-1 and 227.7202-4 (for the Department of Defense). For U.S. Government End Users, Adobe agrees to comply with all applicable equal opportunity laws including, if appropriate, the provisions of Executive Order 11246, as amended, Section 402 of the Vietnam Era Veterans Readjustment Assistance Act of 1974 (38 USC 4212), and Section 503 of the Rehabilitation Act of 1973, as amended, and the regulations at 41 CFR Parts 60-1 through 60-60, 60-250, and 60-741. The affirmative action clause and regulations contained in the preceding sentence will be incorporated by reference into this agreement.
    12.2 Commercial Items. For U.S. Government End Users, Software is a “Commercial Item(s),” as that term is defined at 48 C.F.R. Section 2.101, consisting of “Commercial Computer Software” and “Commercial Computer Software Documentation,” as such terms are used in 48 C.F.R. Section 12.212 or 48 C.F.R. Section 227.7202, as applicable. Consistent with 48 C.F.R. Section 12.212 or 48 C.F.R. Sections 227.7202-1 through 227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved under the copyright laws of the United States.
    13. Compliance with Licenses.
    If Customer is a business, company, or organization, Customer agrees that, in addition to any license compliance checking performed by the Software, Adobe or its authorized representative have the right, no more than once every twelve (12) months, upon seven (7) business days’ prior notice to Customer, to inspect Customer’s records, systems, and facilities to verify that its use of any and all Adobe software or service is in conformity with its valid licenses from Adobe. For example, Adobe has the right to those of Customer’s records useful to determine whether installations of the Software have been serialized, and Customer shall provide such records to Adobe promptly upon request by Adobe. Additionally, Customer shall provide Adobe with all records and information requested by Adobe in order to verify that its use of any and all Adobe software is in conformity with its valid licenses from Adobe within thirty (30) days of Adobe’s request. Additional information on serialization is available at http://www.adobe.com/go/elicensing.
    14. Internet Connectivity and Privacy.
    14.1 Automatic Connections to the Internet. The Software may cause Customer’s Computer, without notice, to automatically connect to the Internet and to communicate with an Adobe website or Adobe domain for purposes such as license validation and providing Customer with additional information, features, or functionality. Unless otherwise specified in Sections 14.2 through 14.7, the following provisions apply to all automatic Internet connections by the Software:
    14.1.1 Whenever the Software makes an Internet connection and communicates with an Adobe website, whether automatically or due to explicit user request, the Privacy Policy shall apply. Adobe Privacy Policy allows tracking of website visits and it addresses in detail the topic of tracking and use of cookies, web beacons, and similar devices.
    14.1.2 Whenever the Software connects to Adobe over the Internet, certain Customer information is collected and transmitted by the Software to Adobe pursuant to the Adobe Online Privacy Policy available at http://www.adobe.com/go/privacy (“Privacy Policy”).
    14.1.3 If Customer accesses an Adobe Online Service (as defined in Section 16.4 below) or activates or registers the Software, then additional information such as Customer’s Adobe ID, user name, and password may be transmitted to and stored by Adobe pursuant to the Privacy Policy and additional terms of use related to such Adobe Online Service (collectively with the Adobe.com terms of use and any applicable terms, the “Additional Terms of Use”).
    14.1.4 As permitted by applicable law or as consented to by Customer, Adobe may (a) send Customer transactional messages to facilitate the Adobe Online Service or the activation or registration of the Software or Adobe Online Service, or (b) deliver in-product marketing to provide information about the Software and other Adobe products and Services using information including but not limited to platform version, version of the Software, license status, and language.
    14.2 Updating. The Software may cause Customer’s Computer, without additional notice, to automatically connect to the Internet (intermittently or on a regular basis) to (a) check for Updates that are available for download to and installation on the Computer and (b) notify Adobe of the results of installation attempts.
    14.3 Activation. The Software may require Customer to (a) obtain an Adobe ID, (b) activate or reactivate the Software, (c) register the software, or (d) validate the Membership. Such requirement may cause Customer’s Computer to connect to the Internet without notice on install, on launch, and on a regular basis thereafter. Once connected, the Software will collect and transmit information to Adobe as further described at http://www.adobe.com/go/activation (“Activation Terms”). Software or Customer may also receive information from Adobe related to Customer’s license, subscription, or Membership. Adobe may use such information to detect or prevent fraudulent or unauthorized use not in accordance with a valid license, subscription, or Membership. Failure to activate or register the Software, validate the subscription or Membership, or a determination by Adobe of fraudulent or unauthorized use of the Software may result in reduced functionality, inoperability of the Software, or a termination or suspension of the subscription or Membership.
    14.4 Deactivation. Customer may deactivate and uninstall the Software from its Computer in order to install and activate the Software on another Computer in accordance with this agreement (“Deactivation”) and as further described in http://www.adobe.com/go/activation. Deactivation requires Internet connectivity.
    14.5 Use of Online Services. The Software may cause Customer’s Computer, without additional notice and on an intermittent or regular basis, to automatically connect to the Internet to facilitate Customer’s access to content and services that are provided by Adobe or third parties as further described in Section 16.4 (Online Services). In addition, the Software may, without additional notice, automatically connect to the Internet to update downloadable materials from these online services so as to provide immediate availability of these services even when Customer is offline.
    14.6 Digital Certificates. The Software uses digital certificates (as described in Section 16.5) to help Customer identify downloaded files (e.g., applications and content) and the publishers of those files. For example, Adobe AIR uses digital certificates to help Customer identify the publisher of Adobe AIR applications. The Adobe Acrobat family of products also uses digital certificates to sign and validate signatures within Portable Document Format (“PDF”) documents and to validate certified PDF documents. Customer’s Computer may connect to the Internet at the time of validation of a digital certificate.
    14.7 Settings Manager. The Software may include Flash Player. Flash Player may save certain user settings by storing them on Customer’s Computer as a local shared object. They are associated with the instance of Flash Player on the Computer, allowing Customer to customize runtime features. The Flash Player Settings Manager permits Customer to modify such settings, including the ability to limit third parties from storing local shared objects or grant third party content the right to access the computer’s microphone and camera. Additional information on how to configure settings in its version of Flash Player, including information on how to disable local shared objects using the Flash Player Settings Manager, is available at http://www.adobe.com/go/settingsmanager. Additional information on local shared objects is available at http://www.adobe.com/go/flashplayer_security.
    15. Peer-to-Peer Communications.
    The Software may use Customer’s connection to a local area network, without additional notice, to automatically connect to other Adobe software and, in doing so, may indicate on the local area network that it is available for communication with other Adobe software. These connections may transmit the IP Address of Customer’s connection to the local network.
    16. Specific Provisions and Exceptions.
    This section sets forth specific provisions related to certain products and components of the Software as well as limited exceptions to the above terms and conditions. To the extent that any provision in this section is in conflict with any other term or condition in this agreement, the terms stated in this section will supersede such other term or condition.
    16.1 No Prejudice; European Economic Area Provisions; Australia Mandatory Notice.
    16.1.1 This agreement will not prejudice the statutory rights of any party, including those dealing as consumers. For example, for consumers in New Zealand who obtain the Software for personal, domestic, or household use (not business purposes), this agreement is subject to the Consumer Guarantees Act.
    16.1.2 If Customer obtained the Software in the European Economic Area (EEA), Customer usually resides in the EEA and Customer is a consumer (that is its use of the Software is for personal, non-business related purposes), then Section 6 (Limited Warranty) does not apply to Customer’s purchase and use of the Software. Instead, Adobe warrants for a period of 2 years from purchase that the Software provides the functionalities set forth in the applicable user manual (the “agreed upon functionalities”) when used on the Compatible Computer. Non-substantial variation from the agreed upon functionalities will not establish any warranty rights. THIS WARRANTY DOES NOT APPLY TO SOFTWARE THAT CUSTOMER USES ON A PRE-RELEASE, TRYOUT, STARTER, OR PRODUCT SAMPLER BASIS, OR TO FONT SOFTWARE, OR TO THE EXTENT THE SOFTWARE FAILS TO PERFORM BECAUSE IT HAS BEEN ALTERED BY CUSTOMER. To make a warranty claim, Customer must notify the Adobe Customer Support Department during this 2 year period, providing details of proof of purchase of the Software. Adobe will verify with Customer whether there is a defect in the Software or advise Customer that the error arises because Customer has not installed the Software correctly (in which case, Adobe shall assist Customer). If there is a defect in the Software, Customer may request from Adobe either a refund or a repaired or replacement copy of the Software. Requests must be accompanied by proof of purchase. In the event Customer’s warranty details are substantiated, Adobe will meet Customer’s request for repaired or replacement Software, unless it is not reasonable for Adobe to do so, in which case Adobe will provide Customer with a refund. For warranty assistance, please contact the Adobe Customer Support Department.
    Please note that the provisions of Section 8 (Limitation of Liability) will continue to apply to any damages claims Customer makes in respect of its use of the Software. Nonetheless, Adobe shall be liable for direct losses that are reasonably foreseeable in the event of a breach by Adobe of this agreement. Customer is advised to take all reasonable measures to avoid and reduce damages, in particular by making back-up copies of the Software and its computer data.
    This agreement, and in particular this Section 16.1.2, is intended to describe Customer’s rights (including its statutory rights) in the event there should be problems with its use of the Software. If Customer’s statutory rights are greater than this description, its statutory rights shall apply.
    16.1.3 Nothing included in this agreement (including Section 4.4) shall limit any non-waivable right to decompile the Software that Customer may enjoy under applicable law. For example, if Customer is located in the European Union (EU), Customer may have the right upon certain conditions specified in the applicable law to decompile the Software if it is necessary to do so in order to achieve interoperability of the Software with another software program, and Customer has first asked Adobe in writing to provide the information necessary to achieve such operability and Adobe has not made such information available. In addition, such decompilation may only be performed by Customer or someone else entitled to use a copy of the Software on Customer’s behalf. Adobe has the right to impose reasonable conditions before providing such information. Any information supplied by Adobe or obtained by Customer, as permitted hereunder, may only be used by Customer for the purpose described herein and may not be disclosed to any third party or used to create any software that is substantially similar to the expression of the Software or used for any other act that infringes the copyright of Adobe or its licensors.
    16.1.4 If Customer obtains the Software in Australia, then the following provision shall apply, notwithstanding anything stated to the contrary in this Agreement:
    NOTICE TO CONSUMERS IN AUSTRALIA:
    Our goods come with guarantees that cannot be excluded under the Australian Consumer Law. You are entitled to a replacement or refund for a major failure and for compensation for any other reasonably foreseeable loss or damage. You are also entitled to have the goods repaired or replaced if the goods fail to be of acceptable quality and the failure does not amount to a major failure. Our software products also come with a 90-day limited warranty given by Adobe Systems Software Ireland Limited, with an office at 4-6 Riverwalk, Citywest Business Campus, Dublin, Ireland, as set out in the Agreement. If your products do not provide the general features and functions described in the User Documentation in the 90-day period after delivery to you, please call the Adobe Customer Support Department at 1800 614 863 with details of your product, serial number, and proof of purchase. You may be required to return the software product to the address we provide to you at the time, in which case such return will be at your own cost. The benefits under this warranty are in addition to other rights and remedies that you may have at law.
    16.2 Pre-release Software Additional Terms. If the Software is pre-commercial release or beta software (“Pre-release Software”), then this section applies. The Pre-release Software does not represent final product from Adobe, and may contain bugs, errors, and other problems that could cause system or other failures and data loss. Adobe may never commercially release the Pre-release Software. If Customer received the Pre-release Software pursuant to a separate written agr

  • Error message for Adobe Illustrator CC

    After installing Illustrator I recieved this error message. My laptop is 64 bit and I succesfully installed Photoshop. Please give me advice ASAP. Thanks!
    Exit Code: 6
    Please see specific errors below for troubleshooting. For example,  ERROR: DF023, DF045,D ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 98 error(s)
    ----------- Payload: Adobe CSXS Extensions 4_4.0.1_AdobeCSXSExtensions4-mul 4.0.1.0 {0F60BFC9-8764-4554-B222-2B55089F395D} -----------
    ERROR: DF045: File corruption detected. Re-install the product & then apply the patch again. (Can not repair file "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\html\CEPHtmlEngine.exe")(Seq 15)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\html\libcef.dll", Patcher tool returned error: 32769(Seq 13)
    ERROR: DW063: Error rolling back command ARKPatchCommand(Seq 13)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\html\d3dx9_43.dll", Patcher tool returned error: 32769(Seq 11)
    ERROR: DW063: Error rolling back command ARKPatchCommand(Seq 11)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\html\libEGL.dll", Patcher tool returned error: 32769(Seq 9)
    ERROR: DW063: Error rolling back command ARKPatchCommand(Seq 9)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\html\icudt.dll", Patcher tool returned error: 32769(Seq 7)
    ERROR: DW063: Error rolling back command ARKPatchCommand(Seq 7)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\html\d3dcompiler_43.dll", Patcher tool returned error: 32769(Seq 5)
    ERROR: DW063: Error rolling back command ARKPatchCommand(Seq 5)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\html\libGLESv2.dll", Patcher tool returned error: 32769(Seq 3)
    ERROR: DW063: Error rolling back command ARKPatchCommand(Seq 3)
    ----------- Payload: ShareOnBehance_1.0.1_ShareOnBehance1-mul 1.0.1.0 {DE9B086C-67C4-4EB7-9786-9531AD8FEAE8} -----------
    ERROR: DS003: Installer package might be corrupt. Re-download the installer and try again. (Cannot extract 'C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\\Adobe\AdobePatchFiles\{DE9B086C-67C4-4EB7-9786-9531AD8FEAE8}.zip'. Error: Error 0 )
    ----------- Payload: ShareOnBehance_1.0.1_ShareOnBehance1-mul 1.0.1.0 {DE9B086C-67C4-4EB7-9786-9531AD8FEAE8} -----------
    ERROR: DS003: Cannot zip 'C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\\Adobe\AdobePatchFiles\{DE9B086C-67C4-4EB7-9786-9531AD8FEAE8}'. Error: Error 183 Cannot create a file when that file already exists.
    ----------- Payload: Adobe CSXS Infrastructure 4_4.0.1_AdobeCSXSInfrastructure4-mul 4.0.1.0 {D6EDED07-FEE0-4C10-B477-95FF3085DF31} -----------
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\IMSLib.dll", Patcher tool returned error: 32769(Seq 3)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\libcurl.dll", Patcher tool returned error: 32769(Seq 7)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\libeay32.dll", Patcher tool returned error: 32769(Seq 9)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\CEPServiceManager.exe", Patcher tool returned error: 32769(Seq 11)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\VulcanControl.dll", Patcher tool returned error: 32769(Seq 13)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\ssleay32.dll", Patcher tool returned error: 32769(Seq 17)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\lib\ServiceManager-Launcher.dll", Patcher tool returned error: 32769(Seq 19)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\zlib1.dll", Patcher tool returned error: 32769(Seq 21)
    ----------- Payload: Adobe CSXS Infrastructure 4_4.0.1_AdobeCSXSInfrastructure4-mul 4.0.1.0 {9EEE0750-879F-4EA8-89F7-329C866B572B} -----------
    ERROR: DF045: File corruption detected. Re-install the product & then apply the patch again. (Can not repair file "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\lib\ServiceManager-Launcher.dll")(Seq 5)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\zlib1.dll", Patcher tool returned error: 32769(Seq 3)
    ERROR: DW063: Error rolling back command ARKPatchCommand(Seq 3)
    ----------- Payload: Adobe Illustrator CC Core 17.0.0.0 {9CD4F411-1AF8-440F-8CB5-8E87F04B05A4} -----------
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp50508418" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1423)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1423)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp50328405" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1405)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1405)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp50148372" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1387)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1387)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp50108366" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1383)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1383)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp50068359" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1373)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1373)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp50048356" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1371)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1371)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp50038353" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1370)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1370)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp50028353" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1369)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1369)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49958340" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1362)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1362)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49948336" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1361)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1361)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49938336" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1360)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1360)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49908330" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1357)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1357)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49898330" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1356)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1356)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49888327" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1355)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1355)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49868327" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1353)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1353)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49858327" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1352)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1352)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49848323" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1351)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1351)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49838323" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1350)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1350)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49818323" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1348)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1348)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49808320" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1347)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1347)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49798320" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1346)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1346)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49788317" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1345)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1345)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49778313" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1344)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1344)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49758310" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1342)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1342)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49748310" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1341)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1341)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49728304" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1339)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1339)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49718304" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1338)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1338)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49708294" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1337)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1337)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49518167" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1318)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1318)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49508167" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1317)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1317)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49448147" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1311)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1311)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49438144" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1310)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1310)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49428144" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1309)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1309)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49388134" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1305)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1305)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49378131" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1304)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1304)
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp49358127" Error 5 Access is denied.. Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 1302)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 1302)

    U44.. update error http://forums.adobe.com/thread/1289956 may help
    -more U44.. discussion http://forums.adobe.com/thread/1275963
    -http://helpx.adobe.com/creative-suite/kb/error-u44m1p7-installing-updates-ccm.html
    -http://helpx.adobe.com/creative-suite/kb/error-u44m1i210-installing-updates-ccm.html

  • Adobe Illustrator CS6 quit unexpectedly

    OS X Version 10.9.3
    3.06 Intel Core 2 Duo
    4GB 800 mHz DDR SDRAM
    IMac - 24 inch (early 2008)
    Help. Cannot get Illustrato or InDesign to work. So, I am getting this and can not seem to solve it.
    First off here is the history:
    Owned and operated CS3. Had disks and such and tried to install on this Mac desktop. Would not install.
    Bought CS6 because I needed to up grade anyway. Computer hardware is fine with CS6 (according to adobe min. requirements). It works fine on my Laptop with my current Serial number. Tried to install with it on the mac desktop and it will not. Saying Adobe could not validate the license.  Went through everything with online help support to no avail. Things I did before I called and things they made me do after online support (pretty much the same things):
    1. Used Adobe cleaner to clean everything on computer. (all versions of adobe CS)
    2. Checked hosts file and made sure all references were gone for Adobe activate.
    3. Manually cleaned EVERYTHING adobe from the computer. Deleted everything and emptied trash.
    4. Used "CleanGenius" to clean everything adobe from the computer.
    5. Updated OS. Everything works fine with that.
    6. Restarted, checked for anything Adobe again and all is clean.
    Then I downloaded a "fresh" copy of CS6 DesignWeb Premium. Installed it. Per adobe help support instructions, i was able to get the License validated (something that was not happening before). I installed it and then restarted computer. Tried to open InDesign first. The splash screen came up and was loading for a while (maybe like 45). Then it gave me the dreaded "Adobe Illustrator CS6 quit unexpectedly". Now I get basically this error for Illustrator and InDesign (InDesign loads, then quits at splash screen where it says "Starting Up service Registry".
    Photoshop opens and works.
    Illustrator just give me the below data:
    Process:    
    Adobe InDesign CS6 [704]
    Path:       
    /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Adobe InDesign CS6
    Identifier: 
    com.adobe.InDesign
    Version:    
    8.0.0.370 (8000)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [197]
    Responsible:
    Adobe InDesign CS6 [704]
    User ID:    
    501
    Date/Time:  
    2014-06-02 20:14:11.721 -0600
    OS Version: 
    Mac OS X 10.9.3 (13D65)
    Report Version:  11
    Anonymous UUID:  B069C52A-E5F8-5C68-59C0-97C8C34170B2
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO        
    0000000000000000-0000000000001000 [
    4K] ---/--- SM=NUL  /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Adobe InDesign CS6
    __TEXT            
    0000000000001000-0000000000005000 [   16K] r-x/rwx SM=COW  /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Adobe InDesign CS6
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.BIB           
    0x00dd40fe 0xdd1000 + 12542
    1   com.adobe.BIB           
    0x00dd4148 0xdd1000 + 12616
    2   com.adobe.BIB           
    0x00dd43e3 0xdd1000 + 13283
    3   com.adobe.BIB           
    0x00dd4469 0xdd1000 + 13417
    4   com.adobe.InDesign.PDF  
    0x1510b820 GetPlugIn + 1222048
    5   com.adobe.InDesign.PDF  
    0x151295a6 GetPlugIn + 1344294
    6   libsystem_c.dylib       
    0x91c08f0b __cxa_finalize + 183
    7   libsystem_c.dylib       
    0x91c09236 exit + 31
    8   com.adobe.InDesign      
    0x00001d5d start + 61
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x985df992 kevent64 + 10
    1   libdispatch.dylib       
    0x90f88899 _dispatch_mgr_invoke + 238
    2   libdispatch.dylib       
    0x90f88532 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib  
    0x985de7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x9366bd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib 
    0x9366c042 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore    0x989ec88d TSWaitOnConditionTimedRelative + 161
    4   com.apple.CoreServices.CarbonCore    0x989b8cf2 MPWaitOnQueue + 199
    5   PMRuntime.dylib         
    0x005bc581 SetVSizeBaseline(unsigned long) + 1473
    6   com.apple.CoreServices.CarbonCore    0x989b92ce PrivateMPEntryPoint + 68
    7   libsystem_pthread.dylib 
    0x936695fb _pthread_body + 144
    8   libsystem_pthread.dylib 
    0x93669485 _pthread_start + 130
    9   libsystem_pthread.dylib 
    0x9366ecf2 thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib  
    0x985d9f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x985d916c mach_msg + 68
    2   com.apple.CoreServices.CarbonCore    0x989e952d TS_exception_listener_thread + 138
    3   libsystem_pthread.dylib 
    0x936695fb _pthread_body + 144
    4   libsystem_pthread.dylib 
    0x93669485 _pthread_start + 130
    5   libsystem_pthread.dylib 
    0x9366ecf2 thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib  
    0x985df046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x9366adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib 
    0x9366ecce start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib  
    0x985df046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x9366adcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib 
    0x9366ecce start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xbffffc04  ebx: 0x00dd43d0  ecx: 0xffffffff  edx: 0x00df02e0
      edi: 0x00df02e0  esi: 0x00000000  ebp: 0xbffffbe8  esp: 0xbffffbc0
       ss: 0x00000023  efl: 0x00010286  eip: 0x00dd40fe   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU:
    1
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x1000 -
    0x4ff7 +com.adobe.InDesign (8.0.0.370 - 8000) <0D5CE30B-1589-2AA4-C7E5-2C0ED0C44D37> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Adobe InDesign CS6
    0xa000 -
    0xaff7  libimckit.dylib (1) <03842CBB-8244-4694-CA73-30779898B49D> /usr/lib/libimckit.dylib
    0xd000 -
    0xdff7 +InDesignModelAndUI (0) <2E042CB4-E42B-151B-E858-1352BF64CBA2> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
       0x11000 -
    0x11ff7 +InDesignModel (0) <C9ABC1CF-850A-FCC7-2CEA-68B14F048036> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
       0x15000 -   0x1f5fef +WidgetBinLib.dylib (1) <D2AAB5B9-0694-32FA-38D5-F97FEE688C9D> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/WidgetBinLib.dylib
      0x2a3000 -   0x482ffb +com.adobe.owl (AdobeOwl version 4.0.93 - 4.0.93) <D102FCD2-496D-5322-AEC0-7A5091CAA2CA> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
      0x4af000 -   0x549ff3 +com.adobe.owl-canvas (AdobeOwlCanvas version 3.6.05 - 3.6.05) <8E0CC5EB-E18A-20BD-BDC4-667D1CC43C12> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
      0x556000 -   0x55ffff +ASLSupportLib.dylib (1) <000064CE-84C2-F397-BAB1-17055FA344EC> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/ASLSupportLib.dylib
      0x566000 -   0x5a2ffb +TextPanelLib.dylib (1) <019DE080-1920-928F-57FB-F8FD8FCCA227> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/TextPanelLib.dylib
      0x5b9000 -   0x5c2ff3 +PMRuntime.dylib (1) <DEE2F17E-391E-5C3E-11DC-EF6E0860545E> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/PMRuntime.dylib
      0x5cb000 -   0x747ff3 +com.adobe.ACE (AdobeACE 2.19.18.19553 - 2.19.18.19553) <2C680020-62C1-F45D-B48C-9D5AB8E99DCC> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
      0x756000 -   0xd1dfef +com.adobe.AGM (AdobeAGM 4.26.18.19553 - 4.26.18.19553) <AB15D5F5-2D3D-F597-DD23-47A7A4719FC1> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
      0xd90000 -   0xdcbff7 +com.adobe.ARE (AdobeARE 1.5.02.19553 - 1.5.02.19553) <264C1354-0764-AFAB-5BB7-DA4B4EBEEFC1> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
      0xdd1000 -   0xdeeff3 +com.adobe.BIB (AdobeBIB 1.2.02.19553 - 1.2.02.19553) <D3D9FDCE-75B2-7FB3-71C8-D5DF313F6B0F> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
      0xdf4000 -   0xe1bff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <34F46810-2864-0365-91CF-BF9C8503400A> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
      0xe21000 -  0x114bfe3 +com.adobe.CoolType (AdobeCoolType 5.10.64.19354 - 5.10.64.19354) <8985B298-125A-B521-9246-AAD43073A3F6> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x1183000 -  0x157efe7 +com.adobe.MPS (AdobeMPS 5.8.0.19673 - 5.8.0.19673) <D65ABA15-80D2-3F1C-2500-EEF873019149> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x15db000 -  0x1640ff3 +ObjectModelLib.dylib (1) <073EF2BA-B5C6-A466-9AEC-963A2EF69144> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/ObjectModelLib.dylib
    0x1657000 -  0x16b4feb +DataBaseLib.dylib (1) <F5ED35C9-1779-CF0D-BD50-0BC162D96A31> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/DataBaseLib.dylib
    0x16c4000 -  0x1b16fe7 +PublicLib.dylib (1) <BD26BAA7-5BF0-9F0A-BB93-B4FE388E6852> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/PublicLib.dylib
    0x1c42000 -  0x1c59ffb +com.adobe.AFL (AdobeAFL 1.0.0 - 1.0) <3B7A1817-3CA4-BEAA-A44A-5A9B5D664E93> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
    0x1c6a000 -  0x1c76ff7 +com.adobe.boost_threads.framework (5.0.0 - 5.0.0.0) <56B14206-3221-D261-2B01-F91074D192FC> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x1c93000 -  0x1c9bfef +libtbbmalloc.dylib (0) <7A79ED70-A4AC-737A-2FAA-63B6FB29D4ED> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/libtbbmalloc.dylib
    0x1ca8000 -  0x1cc7fff +libtbb.dylib (0) <6EA19434-60D6-505D-CB6F-5CA562A0F2A7> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/libtbb.dylib
    0x1cdc000 -  0x1ce4fef +com.adobe.boost_date_time.framework (5.0.0 - 5.0.0.0) <088B6233-3B58-D51A-4609-1FF7F462B1D3> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
    0x1cfb000 -  0x1e3bfeb +com.winsoft.wrservices (WRServices 5.0.0 - 5.0.0) <6D085279-1185-E7F0-B0D8-FBADBA062516> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x1ead000 -  0x1eb0ffb +com.adobe.AdobeCrashReporter (6.0 - 6.0.20120201) <6CE1936E-6AC7-6900-769B-876CBB68B5BC> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x1eb8000 -  0x2bfdff7 +libicudata.40.0.dylib (40) <015E6351-4F42-00C1-2096-BEE385B275B1> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
    0x2c10000 -  0x2d45fe7 +libicui18n.40.0.dylib (40) <8BE3FE71-0CE6-2B93-B5F2-B4F0DD274B91> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40. 0.dylib
    0x2db9000 -  0x2eaafef +libicuuc.40.0.dylib (40) <4CF7066A-6E82-FF80-93E6-6849149FBB98> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
    0x2ee7000 -  0x2f59fef +com.adobe.adobe_caps (adobe_caps 6.0.29.0 - 6.0.29.0) <E4ADECD5-05B4-E78B-09D8-E45FD640E84D> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x2f66000 -  0x3048ff3 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <808CABA8-E8E6-AC45-4905-A6AA59E8C41C> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x3057000 -  0x311ffe7 +com.adobe.boost_regex.framework (5.0.0 - 5.0.0.0) <E124FC44-4A5C-A3C5-C7E2-0631F1D6E628> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
    0x31c5000 -  0x3201ff7  com.apple.vmutils (4.2.1 - 108) <37A7D6A9-0BA7-39D9-A203-7123124A18B0> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x321b000 -  0x321cff7 +com.adobe.boost_system.framework (5.0.0 - 5.0.0.0) <957930FC-D7B3-FAEA-0075-63C7B0E59070> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
    0x3223000 -  0x32c1fe3 +libicucnv.40.0.dylib (40) <D11DC46F-D58E-B17C-9356-46F593D5A7CF> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
    0x32e3000 -  0x32eaffb +com.adobe.ape.shim (3.3.8.19346 - 3.3.8.19346) <B711CAA7-29D6-D5CF-CE1B-A611896C8D87> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x7176000 -  0x7177ff8  ATSHI.dylib (363.3) <62AF40CE-1110-31D5-931C-2B2AFB5C1A18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0x717c000 -  0x718afff  libSimplifiedChineseConverter.dylib (61) <6E42E198-9C8D-3F0F-9660-6D9975C2461E> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x718e000 -  0x71a0ffd  libTraditionalChineseConverter.dylib (61) <EFC81138-0455-321B-A93A-F4E9C4A3EB31> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x71f7000 -  0x71fdffb +com.adobe.InDesign.Data Services UI (8.0.0.370 - 0) <2677201C-4749-18B8-B4DE-DDF76A2A684C> /Applications/Adobe InDesign CS6/*/Data Services UI
    0x7204000 -  0x720dfff +com.adobe.InDesign.Data Services (8.0.0.370 - 0) <A1F436CB-76D5-20F5-DB4F-753595AD3358> /Applications/Adobe InDesign CS6/*/Data Services
    0x97dc000 -  0x97e9ff7 +com.adobe.InDesign.DTTransform (8.0.0.370 - 0) <5321943B-C0A5-A8EA-2811-F596B708DABF> /Applications/Adobe InDesign CS6/*/DTTransform
    0x97f0000 -  0x97f7ff7 +com.adobe.InDesign.PNG Import Filter UI (8.0.0.370 - 0) <73A58EC2-5811-9862-9E42-C70D8D764908> /Applications/Adobe InDesign CS6/*/PNG Import Filter UI
    0x97fe000 -  0x9800ff7 +com.adobe.InDesign.SimpleTextImportFilter (8.0.0.370 - 0) <A55AAE7C-AC72-4799-A7DC-95DB3A21575F> /Applications/Adobe InDesign CS6/*/SimpleTextImportFilter
    0x9805000 -  0x980eff7 +com.adobe.InDesign.Tagged Text Filters UI (8.0.0.370 - 0) <E16F2F8F-7066-8CA7-1145-EBFF4FA201D6> /Applications/Adobe InDesign CS6/*/Tagged Text Filters UI
    0xeb00000 -  0xeb3bff3 +com.adobe.InDesign.Dictionary Editor Dialog (8.0.0.370 - 0) <F09CD086-618C-61FD-3DD1-398E678CA8AC> /Applications/Adobe InDesign CS6/*/Dictionary Editor Dialog
    0xeb56000 -  0xeb7aff7 +com.adobe.InDesign.LILO (8.0.0.370 - 0) <383977E0-B620-E63C-CA13-18DC286E4A8A> /Applications/Adobe InDesign CS6/*/LILO
    0xeb85000 -  0xec70ff3 +com.adobe.linguistic.LinguisticManager (6.0.0 - 17304) <D935027D-2B74-3323-DFCA-8A15B0F5A310> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0xecf9000 -  0xedf7fff +com.adobe.InDesign.EBookExport (8.0.0.370 - 0) <9DC9A642-E7FD-36D9-2CDA-F5791C87CE14> /Applications/Adobe InDesign CS6/*/EBookExport
    0xee16000 -  0xee76ffb +com.adobe.InDesign.Media Import Filter (8.0.0.370 - 0) <8296D512-32F4-295A-88DE-8AA3C5D13E95> /Applications/Adobe InDesign CS6/*/Media Import Filter
    0xee87000 -  0xeeb0fff +com.adobe.InDesign.Sangam Preferences UI (8.0.0.370 - 0) <0AB77841-D89D-989A-0F93-38E840E7FF0B> /Applications/Adobe InDesign CS6/*/Sangam Preferences UI
    0xeec1000 -  0xef2bfeb +com.adobe.AdobeSangam (AdobeSangam 5.6.0.19506 - 5.6.0.19506) <1D569A75-8FA7-A3F9-ADB7-0CD4E72985E1> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
    0xef70000 -  0xefbfff7 +com.adobe.InDesign.SangamExport (8.0.0.370 - 0) <15322B80-60BE-F65F-32B2-614ED4CE088E> /Applications/Adobe InDesign CS6/*/SangamExport
    0xefd1000 -  0xf107feb +com.adobe.InDesign.SangamServicer-Mapper (8.0.0.370 - 0) <6C68B5C2-84AE-5F93-03B2-EF620A1ADB1F> /Applications/Adobe InDesign CS6/*/SangamServicer-Mapper
    0xf123000 -  0xf139ffb +com.adobe.InDesign.SaveBack (8.0.0.370 - 0) <93DB7DE2-4A83-4966-64EA-8E765641A92C> /Applications/Adobe InDesign CS6/*/SaveBack
    0xf144000 -  0xf202fef +com.adobe.InDesign.Tagged Text Attributes (8.0.0.370 - 0) <B6E93C00-6C39-45BD-E677-9CD699C1B7DB> /Applications/Adobe InDesign CS6/*/Tagged Text Attributes
    0xf221000 -  0xf2c1ff3 +com.adobe.InDesign.Tagged Text Filters (8.0.0.370 - 0) <CD978C81-2769-4356-A7A8-E4C21A456448> /Applications/Adobe InDesign CS6/*/Tagged Text Filters
    0xf2cf000 -  0xf2daff3 +com.adobe.InDesign.Clipping Path Dialog (8.0.0.370 - 0) <8ABDFCC9-D5FA-7A00-B4D0-E57662205FCD> /Applications/Adobe InDesign CS6/*/Clipping Path Dialog
    0xf2e6000 -  0xf323fff +com.adobe.InDesign.Color Management UI (8.0.0.370 - 0) <FD83C4B9-D801-59C0-AF42-EF8F0B3CCAE1> /Applications/Adobe InDesign CS6/*/Color Management UI
    0xf32f000 -  0xf3a7ffb +com.adobe.InDesign.Color Picker Panel (8.0.0.370 - 0) <7EFA8A0D-36ED-5F0A-1ACA-B2F5F6CA0E98> /Applications/Adobe InDesign CS6/*/Color Picker Panel
    0xf3c4000 -  0xf442fff +com.adobe.InDesign.DynamicDocumentsUI (8.0.0.370 - 0) <8DA4D224-F982-BEF8-F3C8-92C705ED45F4> /Applications/Adobe InDesign CS6/*/DynamicDocumentsUI
    0xf463000 -  0xf46eff3 +com.adobe.InDesign.EPS UI (8.0.0.370 - 0) <33ED1189-71CD-BF05-5207-416677C3ADAC> /Applications/Adobe InDesign CS6/*/EPS UI
    0xf476000 -  0xf47ffff +com.adobe.InDesign.Generic Style Editor (8.0.0.370 - 0) <7525D472-20FA-E4B7-D773-80DD155BB3D2> /Applications/Adobe InDesign CS6/*/Generic Style Editor
    0xf48b000 -  0xf4c0ff3 +com.adobe.InDesign.Gradient Panel (8.0.0.370 - 0) <C99C9685-73D1-9B33-767A-ACCD7ED75B88> /Applications/Adobe InDesign CS6/*/Gradient Panel
    0xf4d3000 -  0xf55affb +com.adobe.InDesign.Graphic Panels (8.0.0.370 - 0) <168D9A85-2E5B-37F3-D9EA-EFDFACF43699> /Applications/Adobe InDesign CS6/*/Graphic Panels
    0xf57a000 -  0xf580ffb +com.adobe.InDesign.JPEG Export UI (8.0.0.370 - 0) <5B6F8CCC-BE86-3BF6-4211-C997F1B9A9D9> /Applications/Adobe InDesign CS6/*/JPEG Export UI
    0xf587000 -  0xf5a1ffb +com.adobe.InDesign.JPEG Export (8.0.0.370 - 0) <AEF73F87-0C58-3488-6977-6C1CE94A18D1> /Applications/Adobe InDesign CS6/*/JPEG Export
    0xf5b0000 -  0xf5fcfff +com.adobe.InDesign.Output Preview (8.0.0.370 - 0) <D074CD73-B3DF-BA5C-0ABD-6199C45DD42A> /Applications/Adobe InDesign CS6/*/Output Preview
    0xf610000 -  0xf625ffb +com.adobe.InDesign.OutputMiscUI (8.0.0.370 - 0) <31D569A8-4184-7A04-7E78-D161806F763A> /Applications/Adobe InDesign CS6/*/OutputMiscUI
    0xf634000 -  0xf6b4fe3 +com.adobe.InDesign.PDF UI (8.0.0.370 - 0) <4F221BEA-92E2-BCEC-B4CA-C9CE95D31722> /Applications/Adobe InDesign CS6/*/PDF UI
    0xf6d0000 -  0xf72cfef +com.adobe.AdobeXMPCore (Adobe XMP Core 5.3 -c 11 - 66.145661) <123A0829-A85B-6E67-0E48-4F37B08E4C03> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0xf735000 -  0xf74afff +com.adobe.InDesign.Printer Styles (8.0.0.370 - 0) <D713E603-15FA-C061-0D64-F4A76B045F71> /Applications/Adobe InDesign CS6/*/Printer Styles
    0xf755000 -  0xf828fff +com.adobe.InDesign.PrintUI (8.0.0.370 - 0) <F0050870-F5F0-3B3E-BC3E-2F6D46F43694> /Applications/Adobe InDesign CS6/*/PrintUI
    0xf849000 -  0xf858ffb +com.adobe.InDesign.PS Import UI (8.0.0.370 - 0) <5BE45093-9397-461D-37EA-142BA92B408C> /Applications/Adobe InDesign CS6/*/PS Import UI
    0xf863000 -  0xf881ffb +com.adobe.InDesign.Swatch Library Panel (8.0.0.370 - 0) <F78ECFDA-25FF-0740-D7AF-FA66169D3BA7> /Applications/Adobe InDesign CS6/*/Swatch Library Panel
    0xf88c000 -  0xf940ff3 +com.adobe.InDesign.Swatches Panel (8.0.0.370 - 0) <2CA597D8-8277-3616-7219-BA320C75B249> /Applications/Adobe InDesign CS6/*/Swatches Panel
    0xf96b000 -  0xfa11ffb +com.adobe.InDesign.Transparency UI (8.0.0.370 - 0) <87E0536E-598D-C382-79F0-872FA5C27C5E> /Applications/Adobe InDesign CS6/*/Transparency UI
    0xfa3a000 -  0xfa9cff3 +com.adobe.InDesign.Assignment UI (8.0.0.370 - 0) <399A5D72-B369-A3C4-2C9F-BBD2BB0E7F3D> /Applications/Adobe InDesign CS6/*/Assignment UI
    0xfab6000 -  0xfad4feb +com.adobe.InDesign.InCopy Bridge UI (8.0.0.370 - 0) <5C148722-DA95-AB4A-8335-6BE4AC931366> /Applications/Adobe InDesign CS6/*/InCopy Bridge UI
    0xfade000 -  0xfb1aff3 +com.adobe.InDesign.InCopy Bridge (8.0.0.370 - 0) <20E58D68-75C9-F0CB-2991-28086A791FBF> /Applications/Adobe InDesign CS6/*/InCopy Bridge
    0xfb27000 -  0xfb2efff +com.adobe.InDesign.InCopyExport (8.0.0.370 - 0) <F4CEC010-0752-E920-3B48-6082D10CAF4D> /Applications/Adobe InDesign CS6/*/InCopyExport
    0xfb36000 -  0xfb3bff7 +com.adobe.InDesign.InCopyExportUI (8.0.0.370 - 0) <22F05148-A0BA-DBF8-7A21-CCB8678565D3> /Applications/Adobe InDesign CS6/*/InCopyExportUI
    0xfb41000 -  0xfb47fff +com.adobe.InDesign.InCopyImport (8.0.0.370 - 0) <9FEF0CC7-FD64-B251-180E-A2E17E89FFD0> /Applications/Adobe InDesign CS6/*/InCopyImport
    0xfb4d000 -  0xfb52fff +com.adobe.InDesign.InCopyWorkflow UI (8.0.0.370 - 0) <70CA2A6C-540D-C0CA-B4EE-5CAC53EFF519> /Applications/Adobe InDesign CS6/*/InCopyWorkflow UI
    0xfb5a000 -  0xfbaeffb +com.adobe.InDesign.Note (8.0.0.370 - 0) <493B54A6-11B2-864E-C8ED-EEF4198B3EB4> /Applications/Adobe InDesign CS6/*/Note
    0xfbc7000 -  0xfbd2ff3 +com.adobe.InDesign.NotePref (8.0.0.370 - 0) <B00EDAEC-2201-BA55-B530-22CFDA8FB7DF> /Applications/Adobe InDesign CS6/*/NotePref
    0xfbdf000 -  0xfbe2ff7 +com.adobe.InDesign.Username UI (8.0.0.370 - 0) <A5830B10-6948-595C-BA22-AF3E6A2ACE46> /Applications/Adobe InDesign CS6/*/Username UI
    0xfbe9000 -  0xfc8afff +com.adobe.InDesign.ButtonUI (8.0.0.370 - 0) <1E583694-407D-BE2A-40B0-4349511DFE1D> /Applications/Adobe InDesign CS6/*/ButtonUI
    0xfcb0000 -  0xfcd7ffb +com.adobe.InDesign.MediaUI (8.0.0.370 - 0) <4A684112-5E81-150D-4C58-6685BDDBF479> /Applications/Adobe InDesign CS6/*/MediaUI
    0xfce9000 -  0xfcf6ff3 +com.adobe.InDesign.Alignment Panel (8.0.0.370 - 0) <1A57AA33-0A5B-ACD3-50D2-724770247AD3> /Applications/Adobe InDesign CS6/*/Alignment Panel
    0xfcfc000 -  0xfd3fff7 +com.adobe.InDesign.Asset Library Panel (8.0.0.370 - 0) <7C607327-F61A-900D-C12C-EB4B4E11904D> /Applications/Adobe InDesign CS6/*/Asset Library Panel
    0xfd5b000 -  0xfdc6ffb +com.adobe.InDesign.Asset PubLibrary (8.0.0.370 - 0) <367764EF-3037-6771-F12E-36E5DB269ECF> /Applications/Adobe InDesign CS6/*/Asset PubLibrary
    0xfdde000 -  0xfe27fff +com.adobe.InDesign.Book Panel (8.0.0.370 - 0) <EDD89CA1-6F14-17D6-4AAC-F6FAF61BF715> /Applications/Adobe InDesign CS6/*/Book Panel
    0xfe41000 -  0xfe5bff3 +com.adobe.InDesign.Bookmark Panel (8.0.0.370 - 0) <CF1482BA-E545-358D-FF17-1AB473C96F5D> /Applications/Adobe InDesign CS6/*/Bookmark Panel
    0xfe6d000 -  0xfea4ff3 +com.adobe.InDesign.ContentDropper Tool (8.0.0.370 - 0) <1E9C2AB2-5EEF-6C69-2332-9D5FDD165F83> /Applications/Adobe InDesign CS6/*/ContentDropper Tool
    0xfeba000 -  0xfef8ff3 +com.adobe.InDesign.Control Panel (8.0.0.370 - 0) <D59E9E14-47F6-E76A-7A42-F49BD46673F3> /Applications/Adobe InDesign CS6/*/Control Panel
    0xff0d000 -  0xff15ffb +com.adobe.InDesign.Create Guides Dialog (8.0.0.370 - 0) <ADB3C8BC-34EE-459B-6F83-3E54D3A242E0> /Applications/Adobe InDesign CS6/*/Create Guides Dialog
    0xff1d000 -  0xff54fff +com.adobe.InDesign.Eyedropper Tool (8.0.0.370 - 0) <CA80FBEA-986E-5301-3CED-EC620212F52E> /Applications/Adobe InDesign CS6/*/Eyedropper Tool
    0xff64000 -  0xffeaff3 +com.adobe.InDesign.Hyperlinks Panel (8.0.0.370 - 0) <A8A63B20-5365-EE1F-F729-EC03640B0FC0> /Applications/Adobe InDesign CS6/*/Hyperlinks Panel
    0x10006000 - 0x10088fff +com.adobe.InDesign.Index Panel (8.0.0.370 - 0) <DB5D600B-28DB-501E-1DBC-7C8C3C202670> /Applications/Adobe InDesign CS6/*/Index Panel
    0x100a1000 - 0x100acfff +unihan (1) <9FC06EAB-E3E2-7CF6-52B4-39B920584A27> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/unihan.framework/Versions/A/unihan
    0x100b8000 - 0x10116ff3 +com.adobe.InDesign.Info Panel (8.0.0.370 - 0) <6767B322-AE16-F72C-E61E-CB70EB63871E> /Applications/Adobe InDesign CS6/*/Info Panel
    0x10126000 - 0x101ecfe7 +com.adobe.InDesign.Knowledge Base (8.0.0.370 - 0) <3C0E0B8C-4A9D-50DE-3FC4-C05733E22301> /Applications/Adobe InDesign CS6/*/Knowledge Base
    0x101f3000 - 0x1023ffff +com.adobe.InDesign.Layers Panel (8.0.0.370 - 0) <0EA29176-2514-2D31-292F-7ED2C9530028> /Applications/Adobe InDesign CS6/*/Layers Panel
    0x10258000 - 0x1025bff7 +com.adobe.InDesign.Layout Adjustment Panel (8.0.0.370 - 0) <DB6A578B-4622-2B68-3B66-CFA0FAF0E25E> /Applications/Adobe InDesign CS6/*/Layout Adjustment Panel
    0x10262000 - 0x10281ff3 +com.adobe.InDesign.Layout Adjustment (8.0.0.370 - 0) <77BDE746-6BCA-0975-06CF-2617CE4326BA> /Applications/Adobe InDesign CS6/*/Layout Adjustment
    0x1028d000 - 0x102d6fff +com.adobe.InDesign.Links UI (8.0.0.370 - 0) <0B60E760-139E-22C8-3C61-2CE973D7608D> /Applications/Adobe InDesign CS6/*/Links UI
    0x102ef000 - 0x1038eff3 +com.adobe.InDesign.ObjectStylesUI (8.0.0.370 - 0) <F541B941-79CF-5D42-F5FD-B99C3BCF5B67> /Applications/Adobe InDesign CS6/*/ObjectStylesUI
    0x103b4000 - 0x103d6ffb +com.adobe.InDesign.Page Setup Dialog (8.0.0.370 - 0) <DA18018D-A37B-423F-4F8D-AF17D5F0BB3C> /Applications/Adobe InDesign CS6/*/Page Setup Dialog
    0x103e0000 - 0x104a0fe3 +com.adobe.InDesign.Pages Panel (8.0.0.370 - 0) <6D0D2D1C-D5C2-70BD-C611-4B8BAF24C7CB> /Applications/Adobe InDesign CS6/*/Pages Panel
    0x104c4000 - 0x104d1fff +com.adobe.InDesign.Sections UI (8.0.0.370 - 0) <9F1F3835-16BB-B173-E30C-E37F61E20450> /Applications/Adobe InDesign CS6/*/Sections UI
    0x104d9000 - 0x104e1fff +com.adobe.InDesign.StepRepeat (8.0.0.370 - 0) <A9EF00EA-8BB6-AD34-B4CA-2814537216F1> /Applications/Adobe InDesign CS6/*/StepRepeat
    0x104ea000 - 0x10527fff +com.adobe.InDesign.Text Wrap Panel (8.0.0.370 - 0) <1CBD8530-D104-B2AA-6258-D3276ADCBEBA> /Applications/Adobe InDesign CS6/*/Text Wrap Panel
    0x1053a000 - 0x10576ff3 +com.adobe.InDesign.TOC UI Dialog (8.0.0.370 - 0) <463C7166-97BB-A2BD-FD54-D07AD3B65043> /Applications/Adobe InDesign CS6/*/TOC UI Dialog
    0x1058a000 - 0x105c2fff +com.adobe.InDesign.Transform Panel (8.0.0.370 - 0) <639982B3-0E17-99FA-C6F0-983B883B269D> /Applications/Adobe InDesign CS6/*/Transform Panel
    0x105d1000 - 0x105ebff3 +com.adobe.InDesign.Image Import UI (8.0.0.370 - 0) <C4992FEA-1795-D59F-CE90-5C50014F78E2> /Applications/Adobe InDesign CS6/*/Image Import UI
    0x105f8000 - 0x1060bfeb +com.adobe.InDesign.Scotch Rules (8.0.0.370 - 0) <84E401CA-C8D0-2C5A-E9E1-C038BACEDAF4> /Applications/Adobe InDesign CS6/*/Scotch Rules
    0x10613000 - 0x1066dfff +com.adobe.InDesign.BNUI (8.0.0.370 - 0) <E1069FF1-BDA6-6AB5-94B9-399EFAD33CF3> /Applications/Adobe InDesign CS6/*/BNUI
    0x10687000 - 0x10727ffb +com.adobe.InDesign.DataMerge (8.0.0.370 - 0) <B70DF58E-BEB4-BD3A-B438-04DCA4BB465A> /Applications/Adobe InDesign CS6/*/DataMerge
    0x1073f000 - 0x10774fff +com.adobe.InDesign.DataMergeUI (8.0.0.370 - 0) <982460FB-B502-C9D1-D7C0-65BBC2FCCB64> /Applications/Adobe InDesign CS6/*/DataMergeUI
    0x1078b000 - 0x1079fff3 +com.adobe.InDesign.PMWelcomeScreen (8.0.0.370 - 0) <2648F80C-C135-9DC5-A636-C05A8BF661C3> /Applications/Adobe InDesign CS6/*/PMWelcomeScreen
    0x107b0000 - 0x1089dffb +com.adobe.InDesign.Package and Preflight UI (8.0.0.370 - 0) <68E93544-772B-CC9C-E823-9203F4272CD7> /Applications/Adobe InDesign CS6/*/Package and Preflight UI
    0x108cd000 - 0x10ae2ff3 +com.adobe.InDesign.Package and Preflight (8.0.0.370 - 0) <6769A211-92EE-F6F2-2E52-3C06226A352A> /Applications/Adobe InDesign CS6/*/Package and Preflight
    0x10b14000 - 0x10b3cfeb +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <C38ACBCE-04AA-DF40-FF79-29377F25CDAF> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x10b5b000 - 0x10c42fef +com.adobe.InDesign.JBX (8.0.0.370 - 0) <79DEAE03-D442-EFF6-6751-87BA05F5A3CB> /Applications/Adobe InDesign CS6/*/JBX
    0x10c65000 - 0x10c69ff7 +com.adobe.InDesign.Script Label Panel (8.0.0.370 - 0) <AC232069-F90D-7E32-8292-E09EEA27F9EE> /Applications/Adobe InDesign CS6/*/Script Label Panel
    0x10c72000 - 0x10c7effb +com.adobe.InDesign.Scripts Panel (8.0.0.370 - 0) <10F367E1-2F61-B4E6-1883-E8A5265548AE> /Applications/Adobe InDesign CS6/*/Scripts Panel
    0x10c89000 - 0x10d6cffb +com.adobe.InDesign.Tables UI (8.0.0.370 - 0) <033963EE-D716-131A-2164-6D5CA7ADFC86> /Applications/Adobe InDesign CS6/*/Tables UI
    0x10d91000 - 0x10e34ffb +com.adobe.InDesign.TableStylesUI (8.0.0.370 - 0) <48A7D3F8-B856-43FC-A119-51D9C08E235D> /Applications/Adobe InDesign CS6/*/TableStylesUI
    0x10e56000 - 0x10ebfff3 +com.adobe.InDesign.Character Panel (8.0.0.370 - 0) <1B6D9695-AAB9-EDA5-D0D1-C931688C5EC3> /Applications/Adobe InDesign CS6/*/Character Panel
    0x10edc000 - 0x10f0aff7 +com.adobe.InDesign.Conditional Text UI (8.0.0.370 - 0) <B52329F2-94C5-AFA9-379A-983FD42B48B0> /Applications/Adobe InDesign CS6/*/Conditional Text UI
    0x10f1f000 - 0x10f3bff7 +com.adobe.InDesign.Create Outlines (8.0.0.370 - 0) <048977B2-4975-2E80-018F-55C9D2C84C92> /Applications/Adobe InDesign CS6/*/Create Outlines
    0x10f45000 - 0x11073fe3 +com.adobe.InDesign.Find and Change Panel (8.0.0.370 - 0) <2ED6F128-5265-8B55-F0F8-B457409F5796> /Applications/Adobe InDesign CS6/*/Find and Change Panel
    0x110a6000 - 0x110cbff7 +com.adobe.InDesign.Find Change Format Panel (8.0.0.370 - 0) <A3C09444-DD22-7E8E-720E-C163A7FF837D> /Applications/Adobe InDesign CS6/*/Find Change Format Panel
    0x110da000 - 0x11100ff7 +com.adobe.InDesign.Font Usage Dialog (8.0.0.370 - 0) <3EA16C7B-F9CC-E218-1200-BC235DB3423E> /Applications/Adobe InDesign CS6/*/Font Usage Dialog
    0x1110f000 - 0x111f2ffb +com.adobe.InDesign.Glyphs Panel (8.0.0.370 - 0) <5EA3F9D0-3442-21FD-99D8-A054E2264070> /Applications/Adobe InDesign CS6/*/Glyphs Panel
    0x1120e000 - 0x11216ff3 +com.adobe.InDesign.Hyphenation Panel (8.0.0.370 - 0) <5341F962-F6E2-02FC-2D11-419DC5E74D14> /Applications/Adobe InDesign CS6/*/Hyphenation Panel
    0x11222000 - 0x11232ffb +com.adobe.InDesign.Indents and Tabs (8.0.0.370 - 0) <B33F6EAA-F9AF-BF34-1F08-47808F94C046> /Applications/Adobe InDesign CS6/*/Indents and Tabs
    0x1123d000 - 0x11245ff3 +com.adobe.InDesign.Justification Panel (8.0.0.370 - 0) <F8460C83-8DE0-73B1-6A49-C75969DBA54F> /Applications/Adobe InDesign CS6/*/Justification Panel
    0x1124c000 - 0x11252ff3 +com.adobe.InDesign.Keeps Panel (8.0.0.370 - 0) <4AD1C274-44A7-7FD1-30F3-1ADDD92025EF> /Applications/Adobe InDesign CS6/*/Keeps Panel
    0x11258000 - 0x11278feb +com.adobe.InDesign.Optical Kerning (8.0.0.370 - 0) <5E9D52E9-DE58-69D6-4924-FF6E82019F55> /Applications/Adobe InDesign CS6/*/Optical Kerning
    0x11280000 - 0x112aeff3 +com.adobe.InDesign.Paragraph Panel (8.0.0.370 - 0) <2949EAB7-8543-8C0C-97A4-F44D2CA5D9B8> /Applications/Adobe InDesign CS6/*/Paragraph Panel
    0x112bb000 - 0x112cbffb +com.adobe.InDesign.Paragraph Rules Panel (8.0.0.370 - 0) <DB991FAE-B099-F846-277E-6D51316B1393> /Applications/Adobe InDesign CS6/*/Paragraph Rules Panel
    0x112d2000 - 0x112e8ff7 +com.adobe.InDesign.Path Type UI (8.0.0.370 - 0) <6EB49527-FEC9-C79E-68D1-F6FB37C35419> /Applications/Adobe InDesign CS6/*/Path Type UI
    0x112f5000 - 0x112feffb +PathTypeLib.dylib (1) <8F64EEBE-7B35-04D9-1A40-296790C82598> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/PathTypeLib.dylib
    0x11305000 - 0x1132ffff +com.adobe.InDesign.RunIn Styles Panel (8.0.0.370 - 0) <EFE3E465-22E1-B49C-C55E-5CDD12E60AC3> /Applications/Adobe InDesign CS6/*/RunIn Styles Panel
    0x1133d000 - 0x1134dffb +com.adobe.InDesign.SING (8.0.0.370 - 0) <61BF8D63-5ECC-A90D-1FDC-B124ADA0D0A5> /Applications/Adobe InDesign CS6/*/SING
    0x11354000 - 0x1135cff7 +com.adobe.InDesign.Span Columns Panel (8.0.0.370 - 0) <56CEFE88-C354-C689-99D7-F38B7D858966> /Applications/Adobe InDesign CS6/*/Span Columns Panel
    0x11363000 - 0x113afff7 +com.adobe.InDesign.Spelling Panel (8.0.0.370 - 0) <201EFD3B-7BF3-38E2-0992-2A7CE8799FD9> /Applications/Adobe InDesign CS6/*/Spelling Panel
    0x113c7000 - 0x113d8ff7 +com.adobe.InDesign.Story Panel (8.0.0.370 - 0) <A21295BA-8A42-7B84-4DDD-1F24884BFAD4> /Applications/Adobe InDesign CS6/*/Story Panel
    0x113e2000 - 0x11451ff3 +com.adobe.InDesign.Style Panel (8.0.0.370 - 0) <FA69BA30-90AA-5CEE-8B72-AB9BCAC6FDD1> /Applications/Adobe InDesign CS6/*/Style Panel
    0x11470000 - 0x1147bffb +com.adobe.InDesign.Text Color Panel (8.0.0.370 - 0) <DD01A0EF-1A9B-4A67-F5A2-65E126B84265> /Applications/Adobe InDesign CS6/*/Text Color Panel
    0x11481000 - 0x114abffb +com.adobe.InDesign.Text Frame Options (8.0.0.370 - 0) <EB1EDB1B-9DDC-FBD1-7C2B-1081F7DEADAF> /Applications/Adobe InDesign CS6/*/Text Frame Options
    0x114bb000 - 0x1151aff7 +com.adobe.InDesign.Text Panel (8.0.0.370 - 0) <4D8C3996-CA93-FEF5-AAF4-074DF431DCC1> /Applications/Adobe InDesign CS6/*/Text Panel
    0x1152f000 - 0x1154bff7 +com.adobe.InDesign.Text Preferences (8.0.0.370 - 0) <DE058137-60B9-6C2D-AAFA-FB99BBF16343> /Applications/Adobe InDesign CS6/*/Text Preferences
    0x11557000 - 0x11576fff +com.adobe.InDesign.Text Ruler (8.0.0.370 - 0) <A6116817-54FD-ADD4-17E6-567EAE23EB6D> /Applications/Adobe InDesign CS6/*/Text Ruler
    0x11583000 - 0x115a1ff3 +com.adobe.InDesign.Text Style Panel (8.0.0.370 - 0) <C773AF02-7F9B-ACA6-2EB0-6AD306DAF63E> /Applications/Adobe InDesign CS6/*/Text Style Panel
    0x115ad000 - 0x115d6ff7 +com.adobe.InDesign.Article Panel (8.0.0.370 - 0) <E0F3245B-7976-AE49-00B9-2683BE022C41> /Applications/Adobe InDesign CS6/*/Article Panel
    0x115eb000 - 0x11614fff +com.adobe.InDesign.CSXS (8.0.0.370 - 0) <018B245A-072B-B36F-5D3C-2BD5AD0F8876> /Applications/Adobe InDesign CS6/*/CSXS
    0x11629000 - 0x117bdfff +com.adobe.PlugPlug (3.0.0.383 - 3.0.0.383) <2205B6E1-7C9E-1892-EC68-C1B326C727A8> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x11865000 - 0x11898ff3 +com.adobe.InDesign.Galley Preferences (8.0.0.370 - 0) <338FBCD0-2382-5B70-CF08-5F40C3BDC130> /Applications/Adobe InDesign CS6/*/Galley Preferences
    0x118ac000 - 0x118ccffb +com.adobe.InDesign.GapTool (8.0.0.370 - 0) <29265658-52CA-6DCC-71F5-25D6B0E678BA> /Applications/Adobe InDesign CS6/*/GapTool
    0x118d9000 - 0x118e2ff3 +com.adobe.InDesign.General Preferences Panel (8.0.0.370 - 0) <CAEDDEEF-8606-F336-817A-E78153CE2571> /Applications/Adobe InDesign CS6/*/General Preferences Panel
    0x118e9000 - 0x118ebfff +com.adobe.InDesign.Help (8.0.0.370 - 0) <4FA04E8F-01D7-32BF-90BD-61F315361259> /Applications/Adobe InDesign CS6/*/Help
    0x118f0000 - 0x1190afe3 +com.adobe.ahclientframework (1.7.0.56 - 1.7.0.56) <928D8FAD-DEE7-F1D0-FE17-FA7F4E4C1E48> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0x11915000 - 0x1192cff3 +com.adobe.InDesign.Performance UI (8.0.0.370 - 0) <45BFDBD4-66CD-0CDA-C959-E510A38C915F> /Applications/Adobe InDesign CS6/*/Performance UI
    0x1193c000 - 0x1195dfff +com.adobe.InDesign.SharedContentUI (8.0.0.370 - 0) <F7AD6FD7-F2A2-17B0-066B-0805A9B4361D> /Applications/Adobe InDesign CS6/*/SharedContentUI
    0x11969000 - 0x11989fff +com.adobe.InDesign.Shortcut Editor Dialog (8.0.0.370 - 0) <7AB73363-5284-2CDF-59A2-B9CEC4AD2A78> /Applications/Adobe InDesign CS6/*/Shortcut Editor Dialog
    0x11996000 - 0x119abffb +com.adobe.InDesign.Tool Box (8.0.0.370 - 0) <A92C9A1A-FBE9-0D86-9DF4-08A5641B6595> /Applications/Adobe InDesign CS6/*/Tool Box
    0x119ba000 - 0x119c6ffb +com.adobe.InDesign.Tool Tips (8.0.0.370 - 0) <7096572C-F930-7341-5B79-CCE04B6FCBDB> /Applications/Adobe InDesign CS6/*/Tool Tips
    0x119d1000 - 0x119d7ffb +com.adobe.InDesign.Track Changes Preferences (8.0.0.370 - 0) <3819FEAD-5C72-FEB6-3124-DD1CA4F9BF97> /Applications/Adobe InDesign CS6/*/Track Changes Preferences
    0x119de000 - 0x119f1fff +com.adobe.InDesign.Track Changes UI (8.0.0.370 - 0) <14FAFC2F-029D-235C-FD32-C29B76EA7F05> /Applications/Adobe InDesign CS6/*/Track Changes UI
    0x119f7000 - 0x11a01ff3 +com.adobe.InDesign.PerformanceMetrics (8.0.0.370 - 0) <D7176A7C-DE1F-DE19-54FB-816FB3A56F98> /Applications/Adobe InDesign CS6/*/PerformanceMetrics
    0x11a08000 - 0x11a16fff +com.adobe.InDesign.Metadata UI (8.0.0.370 - 0) <72B263D6-2695-0AD0-3B27-BC5F91856777> /Applications/Adobe InDesign CS6/*/Metadata UI
    0x11a1d000 - 0x11a95fe3 +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 66.145433) <EF13921E-1CC6-2891-0EEC-D8D8C68D5D87> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x11aa4000 - 0x11aacffb +com.adobe.InDesign.Workgroup UI (8.0.0.370 - 0) <065184B8-B391-7634-9D4B-0FA95D12445B> /Applications/Adobe InDesign CS6/*/Workgroup UI
    0x11ab2000 - 0x11b02ff3 +com.adobe.InDesign.Snippet (8.0.0.370 - 0) <F4F2E8E0-F38F-A639-619E-6CFE60AB092C> /Applications/Adobe InDesign CS6/*/Snippet
    0x11b16000 - 0x11c44ff7 +com.adobe.InDesign.XMedia UI (8.0.0.370 - 0) <A669B051-78AE-4E11-E897-62855B62BC34> /Applications/Adobe InDesign CS6/*/XMedia UI
    0x11c80000 - 0x11cd2fff +com.adobe.InDesign.Actions (8.0.0.370 - 0) <4DB174D9-5BFD-8E60-8D5B-842E42BAFED6> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Actions.InDesignPlugin/Actions
    0x11ce5000 - 0x11e91fff +com.adobe.InDesign.AppFramework (8.0.0.370 - 0) <37A21F7E-89E0-6F90-1F36-8DBD540D75AF> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
    0x11ed1000 - 0x121afff7 +com.adobe.InDesign.Application UI (8.0.0.370 - 0) <DC17ED34-F202-1273-AD65-50BCE7BFFFE5> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
    0x12239000 - 0x122edffb +com.adobe.AdobeExtendScript (ExtendScript 4.2.12 - 4.2.12.18602) <2C860A49-8645-DC74-DC56-53BC99138C6F> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x12330000 - 0x123ceff3 +com.adobe.AdobeScCore (ScCore 4.2.12 - 4.2.12.18602) <D8CDF140-E42A-DCFB-AFFC-69B4694FB639> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x12404000 - 0x12471ffb +com.adobe.headlights.LogSessionFramework (2.1.2.1652) <82DA9279-45D2-AD40-C86C-F5A94B9DAAFF> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x124c0000 - 0x124e5ff7 +com.adobe.InDesign.Article (8.0.0.370 - 0) <3F6AA216-A395-E8EB-2D75-A68EFCBCD60A> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Article.InDesignPlugin/Article
    0x124f1000 - 0x12590ffb +com.adobe.InDesign.Assignments (8.0.0.370 - 0) <26B7FA96-2070-E56C-072E-5BF4FAC72C18> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Assignments.InDesignPlugin/Assignments
    0x125aa000 - 0x12665fef +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.4 -f 49 - 66.145661) <B8855D3A-C827-D9EB-040E-F808043458DA> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
    0x12694000 - 0x126cfff3 +com.adobe.InDesign.AWS (8.0.0.370 - 0) <F88DE0E8-30E4-6278-6775-FA6A9B7C4442> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/AWS.InDesignPlugin/AWS
    0x126e1000 - 0x1270bff3 +com.adobe.InDesign.AWSUI (8.0.0.370 - 0) <5C581BF5-0501-0633-DA35-AC4908931944> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/AWSUI.InDesignPlugin/AWSUI
    0x1271a000 - 0x12753ff7 +com.adobe.InDesign.Basic Tools (8.0.0.370 - 0) <0C4F33B7-E67F-3F64-BC8A-8567200FB0C3> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Basic Tools.InDesignPlugin/Basic Tools
    0x12768000 - 0x127c7ffb +com.adobe.InDesign.Behavior (8.0.0.370 - 0) <FABD82A1-F4A7-9D3E-36F4-F9367F8F01E7> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Behavior.InDesignPlugin/Behavior
    0x127dc000 - 0x1287afe3 +com.adobe.InDesign.BNCore (8.0.0.370 - 0) <C6D7C19A-CB6E-A3A3-CDC0-9EB8E3D5F8DA> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/BNCore.InDesignPlugin/BNCore
    0x12891000 - 0x128f6ff3 +com.adobe.InDesign.Book (8.0.0.370 - 0) <0AC7BC7B-8B04-633D-6415-F9C6F3B2687E> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Book.InDesignPlugin/Book
    0x12908000 - 0x12940ff3 +com.adobe.InDesign.CellStyles (8.0.0.370 - 0) <F1F10EDD-58CA-AA3D-BB57-BFCA0816A1DA> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/CellStyles.InDesignPlugin/CellStyles
    0x12950000 - 0x129d5fef +com.adobe.InDesign.CJK Text Attributes (8.0.0.370 - 0) <C6F945FC-E839-778E-A073-DE4772A8E821> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/CJK Text Attributes.InDesignPlugin/CJK Text Attributes
    0x129ef000 - 0x12a72fff +com.adobe.InDesign.CJKGrid (8.0.0.370 - 0) <C93F411B-0C21-0268-D70C-CBC084D8C427> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/CJKGrid.InDesignPlugin/CJKGrid
    0x12a88000 - 0x12b70fff +com.adobe.InDesign.Color Management (8.0.0.370 - 0) <AEB38774-2898-14E0-EF60-2FAD9277E576> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
    0x12b92000 - 0x12bf3ff3 +com.adobe.InDesign.CompFontMgr (8.0.0.370 - 0) <A6CD1E5C-4576-F1E2-86E5-59B4AFC480E0> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/CompFontMgr.InDesignPlugin/CompFontMgr
    0x12c06000 - 0x12c5bff3 +com.adobe.InDesign.Conditional Text (8.0.0.370 - 0) <0E4C9727-2262-6EC4-2E82-257C8F5F4183> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Conditional Text.InDesignPlugin/Conditional Text
    0x12c6e000 - 0x12ca0ff3 +com.adobe.InDesign.ContentDropper (8.0.0.370 - 0) <CF2D1EA9-9B37-4A91-91B5-CAEA4D49CF7E> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/ContentDropper.InDesignPlugin/ContentDropper
    0x12caf000 - 0x12ccffff +com.adobe.InDesign.Dialog Layout (8.0.0.370 - 0) <03D98479-D7D1-2E54-F386-695645140C0A> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Dialog Layout.InDesignPlugin/Dialog Layout
    0x12cdc000 - 0x12d02ff7 +com.adobe.InDesign.Document Actions (8.0.0.370 - 0) <0DACEFC9-4F3E-0D14-C955-38CA59D8B8A9> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Document Actions.InDesignPlugin/Document Actions
    0x12d0c000 - 0x12edbfef +com.adobe.InDesign.Document Framework (8.0.0.370 - 0) <719D4428-D6DD-B14F-E32B-2227C3E7F10E> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
    0x12f0a000 - 0x12f12ff7 +com.adobe.InDesign.Document UI (8.0.0.370 - 0) <5F56ABC9-9C79-F847-0723-3D0D25F6DD7D> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Document UI.InDesignPlugin/Document UI
    0x12f19000 - 0x1325dffb +com.adobe.InDesign.Dynamic Documents (8.0.0.370 - 0) <8CF89B21-DC1B-AF40-FAD2-D46F3C60F899> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Dynamic Documents.InDesignPlugin/Dynamic Documents
    0x13293000 - 0x13374fe7 +com.adobe.AGMFL (AdobeAGMFL 2.1.0.19553 - 2.1.0.19553) <3B20BE68-253F-ECCE-2BC9-68FDE89213A0> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/ADBE_AGMFL.framework/Versions/A/ADBE_AGMFL
    0x13393000 - 0x13546fe3 +com.adobe.AFlamingo (AFlamingo 2.3.102.19287 - 2.3.102.19287) <A04AE11D-8128-3324-295F-504CBAD447E1> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/aflamingo.framework/Versions/A/aflamingo
    0x13562000 - 0x1365dff7 +com.adobe.InDesign.EPS Page Item (8.0.0.370 - 0) <659D1891-D2A5-FE6E-B96D-FAFEFE68FA20> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/EPS Page Item.InDesignPlugin/EPS Page Item
    0x13685000 - 0x13782ff7 +com.adobe.InDesign.Font Manager (8.0.0.370 - 0) <9D1C1A4E-3229-2FBE-B31C-50F15DB43ECD> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Font Manager.InDesignPlugin/Font Manager
    0x1379a000 - 0x1386affb +com.adobe.InDesign.FormField (8.0.0.370 - 0) <CF177A19-26BF-677C-6383-0A5825243D47> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/FormField.InDesignPlugin/FormField
    0x13888000 - 0x138e4ffb +com.adobe.InDesign.Galley (8.0.0.370 - 0) <DE1575A7-CB25-37B4-6F58-8B61333DC7F1> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Galley.InDesignPlugin/Galley
    0x138f4000 - 0x13a39ff3 +com.adobe.InDesign.GalleyUI (8.0.0.370 - 0) <A1D87895-35D8-3AE1-06A7-EDF7EE75EB83> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/GalleyUI.InDesignPlugin/GalleyUI
    0x13a5a000 - 0x13c90ff7 +com.adobe.InDesign.Generic Page Item (8.0.0.370 - 0) <D008C5CA-6491-A79E-030E-7AA8913F798F> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page Item
    0x13cc9000 - 0x13cd4ff7 +com.adobe.InDesign.GenericSettings (8.0.0.370 - 0) <5C7B524F-FF92-1DF4-87BE-81E6E823247F> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/GenericSettings.InDesignPlugin/GenericSettings
    0x13cdb000 - 0x13cdcffb +com.adobe.InDesign.Global Preferences Panel (8.0.0.370 - 0) <1E82EF72-4A43-5D8F-F38E-3213B34884CC> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
    0x13ce1000 - 0x13d4effb +com.adobe.InDesign.Gradient Fill (8.0.0.370 - 0) <DD46630A-8604-596B-01EF-AF2D4E71E0F7> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Gradient Fill.InDesignPlugin/Gradient Fill
    0x13d63000 - 0x13e5cff3 +com.adobe.InDesign.Graphics (8.0.0.370 - 0) <6751514A-305F-22D5-5F6B-EF83069C2290> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics
    0x13e78000 - 0x13e83ff7 +com.adobe.InDesign.Group (8.0.0.370 - 0) <64697676-1836-6A88-EAD5-D2A08DE79F6E> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Group.InDesignPlugin/Group
    0x13e8d000 - 0x13eadfff +com.adobe.InDesign.Guides (8.0.0.370 - 0) <F9352A2B-1916-8E11-91A9-47F200ADF0FF> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Guides.InDesignPlugin/Guides
    0x13ebb000 - 0x14016ffb +com.adobe.InDesign.HTMLPGT (8.0.0.370 - 0) <A8AF2BC0-D57A-C998-263E-2C74D89F689C> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/HTMLPGT.InDesignPlugin/HTMLPGT
    0x1407e000 - 0x1417bff3 +com.adobe.InDesign.Hyperlinks (8.0.0.370 - 0) <7DBD8FB4-45E4-C1E3-FF9F-CE111584196C> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks
    0x1419c000 - 0x141ebfef +com.adobe.InDesign.Image Filters (8.0.0.370 - 0) <7886BE2C-CFAE-B06F-DAFD-391E446F033B> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Image Filters.InDesignPlugin/Image Filters
    0x141f4000 - 0x14304ffb +com.adobe.InDesign.Image (8.0.0.370 - 0) <0BDFC74B-06D1-E29D-AB7F-04C6E66A5AD2> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Image.InDesignPlugin/Image
    0x14326000 - 0x14346ff3 +com.adobe.InDesign.IME (8.0.0.370 - 0) <68273229-D088-6FE7-0EBB-049D7765EB27> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/IME.InDesignPlugin/IME
    0x14354000 - 0x143c4ff7 +com.adobe.InDesign.Import Export UI (8.0.0.370 - 0) <48FAF53E-A0DA-7DA4-3A8F-D647CE86A237> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Import Export UI.InDesignPlugin/Import Export UI
    0x143e3000 - 0x144e2fe7 +com.adobe.InDesign.InCopyShared (8.0.0.370 - 0) <98C8C02F-7516-57BB-E646-4DF0D94A25C7> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/InCopyShared.InDesignPlugin/InCopyShared
    0x14502000 - 0x1451fff3 +com.adobe.InDesign.InCopySharedUI (8.0.0.370 - 0) <6D9537EF-8E60-E9E4-FFDB-CB91E661A66C> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/InCopySharedUI.InDesignPlugin/InCopySharedUI
    0x1452c000 - 0x145c7ff7 +com.adobe.InDesign.InCopyWorkflow (8.0.0.370 - 0) <D5BCE9F9-A0F8-5653-FEE7-2E44439CA74C> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/InCopyWorkflow.InDesignPlugin/InCopyWorkflow
    0x145e7000 - 0x146cefff +com.adobe.InDesign.Indexing (8.0.0.370 - 0) <BBDBF42B-0FDC-FF20-0EC7-E5C65BCE94BD> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Indexing.InDesignPlugin/Indexing
    0x146e7000 - 0x147abfe3 +com.adobe.InDesign.INXCore (8.0.0.370 - 0) <D90FF439-FAA9-5CAF-A1EA-9F9A87BA825B> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/INXCore.InDesignPlugin/INXCore
    0x147cc000 - 0x147f7ff3 +com.adobe.InDesign.Layer (8.0.0.370 - 0) <D1983877-BBD3-0FEA-2721-56779B06CBE9> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Layer.InDesignPlugin/Layer
    0x14806000 - 0x149fefff +com.adobe.InDesign.Layout UI (8.0.0.370 - 0) <C2FFDBBB-7D4A-AEE1-1B0B-FDB5B12BE43D> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Layout UI.InDesignPlugin/Layout UI
    0x14a44000 - 0x14a6bff3 +com.adobe.InDesign.Layout (8.0.0.370 - 0) <AAF92A8B-C0BE-7B50-AE0C-A1B339F531E3> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Layout.InDesignPlugin/Layout
    0x14a76000 - 0x14ac5ffb +com.adobe.InDesign.Linguistics (8.0.0.370 - 0) <7D889554-84E1-8BFD-4215-334161422D69> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics
    0x14ad9000 - 0x14c1afe7 +com.adobe.InDesign.Links (8.0.0.370 - 0) <A583F3F8-D113-EF79-599F-BC17AAB5C615> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Links.InDesignPlugin/Links
    0x14c43000 - 0x14ce5ff7 +com.adobe.InDesign.Master Page (8.0.0.370 - 0) <E44ED0B1-D4B9-1DD6-3DFA-FBD2B1F02BBE> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page
    0x14cfa000 - 0x14d52ff7 +com.adobe.InDesign.Media (8.0.0.370 - 0) <32C3B3B0-3A9A-D6B3-3044-5CBD01CC0A8A> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Media.InDesignPlugin/Media
    0x14d63000 - 0x14d64ffb +com.adobe.InDesign.Metadata Database Filter (8.0.0.370 - 0) <AAA7D767-80AA-D2C9-AE83-C15DD4C39CF6> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
    0x14d69000 - 0x14df8ffb +com.adobe.InDesign.Metadata (8.0.0.370 - 0) <78188C84-AE6A-41D5-9B5F-003009B9CF96> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Metadata.InDesignPlugin/Metadata
    0x14e0f000 - 0x14e26ff7 +com.adobe.InDesign.Movie (8.0.0.370 - 0) <52B8EED2-6C0E-632A-0EDF-77F61FDE2A8D> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Movie.InDesignPlugin/Movie
    0x14e32000 - 0x14e70ffb +com.adobe.InDesign.Open Place (8.0.0.370 - 0) <96AF9AFB-D46D-6193-6A1D-716D6332847D> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Open Place.InDesignPlugin/Open Place
    0x14e80000 - 0x14f34fef +com.adobe.InDesign.Paragraph Composer (8.0.0.370 - 0) <87FA214A-5BEA-C348-84A5-11E346767EB8> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Paragraph Composer.InDesignPlugin/Paragraph Composer
    0x14f42000 - 0x14f84ff3 +com.adobe.InDesign.Path Type (8.0.0.370 - 0) <C2D2E374-DD5B-DC87-8263-2F1F39DA120E> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Path Type.InDesignPlugin/Path Type
    0x14f98000 - 0x151dffff +com.adobe.InDesign.PDF (8.0.0.370 - 0) <54EA456A-3F68-DB9E-B3CE-7118A4326308> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/PDF.InDesignPlugin/PDF
    0x15211000 - 0x15315fef +com.adobe.PDFPort (AdobePDFPort 2.1.0.19734 - 2.1.0.19734) <71232DFD-06FB-837B-8246-BD20F862B5E3> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x1532e000 - 0x1534dffb +com.adobe.PDFSettings (AdobePDFSettings 1.04.0 - 1.4) <0107FAC2-ABDE-FCA8-A855-E6B9636159DA> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x1535c000 - 0x15390fff +com.adobe.InDesign.Photoshop Import Filter (8.0.0.370 - 0) <6665B7C1-ED42-831D-5E52-D54AD29D8C32> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Photoshop Import Filter.InDesignPlugin/Photoshop Import Filter
    0x1539c000 - 0x16448ff3 +com.adobe.psl (AdobePSL 13.0.0.19655 - 13.0.0.19655) <47A9AAEC-43CD-17C9-6E58-6312315FC15D> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x165c1000 - 0x165c2ffd  com.apple.textencoding.unicode (2.6 - 2.6) <27946D57-CEFB-3EF1-B124-4A39D2621738> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x165c7000 - 0x16601feb +com.adobe.InDesign.PNG Import Filter (8.0.0.370 - 0) <3C6D23BA-B0F3-8C86-4C21-7DEA4035AFF3> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/PNG Import Filter.InDesignPlugin/PNG Import Filter
    0x1660e000 - 0x16783fff +com.adobe.InDesign.Print (8.0.0.370 - 0) <0B16BD91-8977-7D93-59F1-6D67C90B7314> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Print.InDesignPlugin/Print
    0x167a6000 - 0x167ccffb +com.adobe.InDesign.Rulers (8.0.0.370 - 0) <953D1536-0758-383D-185A-BEF5523CE59D> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Rulers.InDesignPlugin/Rulers
    0x167db000 - 0x1687efff +com.adobe.InDesign.Scripting (8.0.0.370 - 0) <43901F62-3831-D7CF-A200-7A123FC4B15C> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Scripting.InDesignPlugin/Scripting
    0x16898000 - 0x168bcff3 +com.adobe.InDesign.Sections (8.0.0.370 - 0) <F11940EE-4C0A-6008-BF22-35F39ABEE7D9> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Sections.InDesignPlugin/Sections
    0x168c9000 - 0x16959ff3 +com.adobe.InDesign.SharedContent (8.0.0.370 - 0) <F8160FD9-5127-03D0-EF2E-E1355F366E11> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/SharedContent.InDesignPlugin/SharedContent
    0x16975000 - 0x16982ff7 +com.adobe.InDesign.Sound (8.0.0.370 - 0) <38D24640-7AEE-3ADA-E2E2-4D93D76EDEC3> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Sound.InDesignPlugin/Sound
    0x1698b000 - 0x1699cfff +com.adobe.InDesign.Spelling Service (8.0.0.370 - 0) <0DE5CB05-94A9-8BEF-3877-34FAFECE86D2> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Spelling Service.InDesignPlugin/Spelling Service
    0x169a7000 - 0x169efff7 +com.adobe.InDesign.Spline UI (8.0.0.370 - 0) <221E4B02-9FB7-77BA-76DC-7EA58E2D2316> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Spline UI.InDesignPlugin/Spline UI
    0x16a05000 - 0x16a4efff +com.adobe.InDesign.Spline (8.0.0.370 - 0) <FCFEE9E7-5F09-E4B1-9CC1-C125DC54C053> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Spline.InDesignPlugin/Spline
    0x16a61000 - 0x16abfff7 +com.adobe.InDesign.Spread UI (8.0.0.370 - 0) <AD4D14F3-347B-D246-AD66-B20E84E331B7> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Spread UI.InDesignPlugin/Spread UI
    0x16ad4000 - 0x16c13ff7 +com.adobe.InDesign.Spread (8.0.0.370 - 0) <87AF9615-AFB3-C5BD-2E1D-0AADCD0355C2> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Spread.InDesignPlugin/Spread
    0x16c39000 - 0x16c91fe3 +com.adobe.InDesign.Stroke and Fill (8.0.0.370 - 0) <3FAC2281-54A0-4A7A-9C68-23288148132C> /Applications/Adobe InDesign C

    Uninstall everything again, run the cleaner tool and then reinstall. Before trying to open the applications, update all apps to their most recent version.

  • Adobe Illustrator CC will not work

    I subscribed to CC last week.  I downloaded Illustrator along with a couple of programs. Whenever I try to open illustrator, I receive the error window "Adobe Illustrator has stopped working: Windows is checking for a solution to the problem."  I have tried to delete and reinstall and it did not fix the problem. My computer is more than sufficient to run the program.  I have an i7 with 8g Ram.  I am running Windows 7.  Has anyone encountered this issues?  I would appreciate any advice.

    I uninstalled and ran the cleaner tool.  When I tried to reinstall I recieved the following errors:
    ERROR: DF045: File corruption detected. Re-install the product & then apply the patch again. (Can not repair file "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\html\CEPHtmlEngine.exe")(Seq 15)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\html\libcef.dll", Patcher tool returned error: 32769(Seq 13)
    ERROR: DW063: Error rolling back command ARKPatchCommand(Seq 13)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\html\d3dx9_43.dll", Patcher tool returned error: 32769(Seq 11)
    ERROR: DW063: Error rolling back command ARKPatchCommand(Seq 11)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\html\libEGL.dll", Patcher tool returned error: 32769(Seq 9)
    ERROR: DW063: Error rolling back command ARKPatchCommand(Seq 9)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\html\icudt.dll", Patcher tool returned error: 32769(Seq 7)
    ERROR: DW063: Error rolling back command ARKPatchCommand(Seq 7)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\html\d3dcompiler_43.dll", Patcher tool returned error: 32769(Seq 5)
    ERROR: DW063: Error rolling back command ARKPatchCommand(Seq 5)
    ERROR: Failed to apply patch to file at "C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\html\libGLESv2.dll", Patcher tool returned error: 32769(Seq 3)
    ERROR: DW063: Error rolling back command ARKPatchCommand(Seq 3)

  • Adobe Illustrator and Mac OS X 10.9

    On mac pro installed Adobe Creative Suite 5 and Mac OS X 10.9. When you open any file in Adobe Illustrator it hangs for 2-3 minutes and then it opens. The problem occurred after upgrading to Mac OS 10.6. Reinstalled, cleaned settings in Illustrator - does not help.
    Here are the logs:
    2014-06-25 22:39:54 +0400 Adobe Illustrator[3964]: CGContextClipToRects: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stab$
    2014-06-25 22:39:54 +0400 Adobe Illustrator[3964]: CGContextTranslateCTM: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and rel$
    2014-06-25 22:39:54 +0400 Adobe Illustrator[3964]: CGContextScaleCTM: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliabi$
    2014-06-25 22:39:54 +0400 Adobe Illustrator[3964]: CGContextSetShouldAntialias: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability a$
    2014-06-25 22:39:54 +0400 Adobe Illustrator[3964]: CGContextSetLineWidth: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and rel$
    2014-06-25 22:39:54 +0400 Adobe Illustrator[3964]: CGContextSetLineDash: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reli$
    2014-06-25 22:39:54 +0400 Adobe Illustrator[3964]: CGContextStrokeLineSegments: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability a$
    2014-06-25 22:39:54 +0400 Adobe Illustrator[3964]: CGContextClipToRects: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reli$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextTranslateCTM: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and rel$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextScaleCTM: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliabi$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextSetShouldAntialias: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability a$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextSetLineWidth: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and rel$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextSetLineDash: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reli$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextStrokeLineSegments: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability a$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextClipToRects: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reli$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextTranslateCTM: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and rel$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextScaleCTM: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliabi$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextSetShouldAntialias: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability a$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextSetLineWidth: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and rel$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextSetLineDash: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reli$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextStrokeLineSegments: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability a$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextClipToRects: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reli$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextTranslateCTM: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and rel$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextScaleCTM: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliabi$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextSetShouldAntialias: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability a$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextSetLineWidth: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and rel$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextSetLineDash: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reli$
    2014-06-25 22:39:55 +0400 Adobe Illustrator[3964]: CGContextStrokeLineSegments: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability a$
    2014-06-25 22:39:56 +0400 Adobe Illustrator[3964]: CGContextClipToRects: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reli$
    2014-06-25 22:39:56 +0400 Adobe Illustrator[3964]: CGContextTranslateCTM: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and rel$
    2014-06-25 22:39:56 +0400 Adobe Illustrator[3964]: CGContextScaleCTM: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliabi$
    2014-06-25 22:39:56 +0400 Adobe Illustrator[3964]: CGContextSetShouldAntialias: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability a$
    2014-06-25 22:39:56 +0400 Adobe Illustrator[3964]: CGContextSetLineWidth: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and rel$
    2014-06-25 22:39:56 +0400 Adobe Illustrator[3964]: CGContextSetLineDash: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reli$
    2014-06-25 22:39:56 +0400 Adobe Illustrator[3964]: CGContextStrokeLineSegments: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability a$
    2014-06-25 22:39:56 +0400 Adobe Illustrator[3964]: CGContextClipToRects: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reli$
    2014-06-25 22:39:56 +0400 Adobe Illustrator[3964]: CGContextTranslateCTM: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and rel$
    2014-06-25 22:39:56 +0400 Adobe Illustrator[3964]: CGContextScaleCTM: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliabi$
    2014-06-25 22:39:56 +0400 Adobe Illustrator[3964]: CGContextSetShouldAntialias: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability a$
    2014-06-25 22:39:56 +0400 Adobe Illustrator[3964]: CGContextSetLineWidth: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and rel$
    2014-06-25 22:39:56 +0400 Adobe Illustrator[3964]: CGContextSetLineDash: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reli$
    2014-06-25 22:39:56 +0400 Adobe Illustrator[3964]: CGContextStrokeLineSegments: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability a$
    2014-06-25 22:44:09 +0400 com.apple.IconServicesAgent[204]: main Failed to composit image for binding CustomBinding [0x2f3] Resource: file:///Applications/Adobe%20Illustrator%20CS5/Adobe%20Illustrator.app/.\
    2014-06-25 22:44:09 +0400 Dock[168]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: CustomBinding [0x12005] Resource: file:///Applications/Adobe%20Illustrator%20CS5/Adobe%20Illustrator.app/ request size:16 scale: 1}

    Unfortunately, changing the user does not solve the problem. . me some more logs to send? Also noticed the same slow closing when saving a file.

Maybe you are looking for