Javascript Location illustrator CC

Hi,
How can we change the Javascript (JSX) location in Illustrator CC
from:
     C:\Program Files\Adobe\Adobe Illustrator CC (64 Bit)\Presets\nl_NL\Scripts
to:
     J:\Scripts\Library_V1\Adobe_Scripts
     J = a local server
Thnx Michael

You will probably have to use some sort of alias but be warned AI is not happy if it can't find things where it expects to find them.

Similar Messages

  • Help with trying to locate Illustrator templates for CS version 1

    I'm trying to locate a copy of the templates that were issued as part of Illustrator CS version 1. Specifically, I'm looking for a file by the name of "flyer3.ait". I would, ideally, like to access all of the templates for CS, version 1, because I am reading the Adobe Illustrator CS, Idea Kit book by Jerome Holder & Barbara Mulligan. and they use these templates as starter files for their book. Thank you in advance.

    I really doubt that you are going to find them unless someone has a version of CS1 installed somewhere on an old machine. In the newer versions the template files are in a folder called Cool Extras which may or may not have been installed. Installation of this folder was an option in the newer versions. In AICS3, there is a template called flyer.ait in the above folder.

  • How to set "Image Map" attribute to "Polygon" via javascript in Illustrator CS5

    Ok, so I have this little script I've written that I want to use to go through a bunch of paths in a document and give each path a url for use in an image map. I want each link to be a Polygon because, well, let's face it, "Rectangle" is useless 99% of the time. Obviously, the way you would do this manually would be to open the Attributes panel and set the Image Map attribute to Polygon and type a URL in the URL field. Fine. Easy enough. However, when scripting the process, it seems one can only set the URL (or the uRL [sic] as documented in the javascript reference) of the PathItem. In other words:
    pathItem.uRL = "http://someurlfor.me";
    Unfortunately, this defaults the "Image Map" attribute to "Rectangle" (which we already know is useless 99% of the time.) SO, anyone out there know how to change that attribute to "Polygon?"
    Btw, I'm on Illustrator CS5 and have been using this reference:
    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/pdf/illustrator/scrip ting/illustrator_scripting_reference_javascript_cs5.pdf
    Thanks,
    -Matt

    We found that with the following setting, the problem is almost solved :
    theme.setQueryWindowMultiplier(1);
    theme.enableAutoWholeImage(true);
    We still have a problem : a portion of the base map appears black most of the time, on Blackberry only (Opera Mini) ... like 1/5 of the map ... the right side ... any idea ?
    Thanks,
    JP

  • How to find the font and replace another font using javascript in illustrator?

    Dear All,
    how to find the font and replace another font using javascript [batch process] in illustrator?
    i have 700 image file, it very deficult replace one by one.
    regards,
    .Suresh.S

    Ask the creator of the file for a unprotected version.

  • Resize method with Javascript in Illustrator CS4

    var objectBounds = docRef.visibleBounds;
    var W = objectBounds[2] - objectBounds[0]; //figures the width
    var H = objectBounds[1] - objectBounds[3]; //figures the height
    // W & H are reporting the size in points ... convert to picas
    var picaW = W / 12;
    var picaH = H / 12;
    // do the math for the correct column width: settings / width = percentage in decimal; multiply by 100 to get the decimal place in the right spot.
    var endWidth
    var percentageX = Math.round((endWidth / picaW) * 100);
    var percentageY = percentageX;
    for (var a=0; a<docRef.layers.length; a++){
         var layerRef = docRef.layers[a];
         layerRef.hasSelectedArtwork=true;   // select all
         // now to resize based on the percentage
         layerRef.pageItem.resize(percentageX, percentageY);
    The width and height are coming out fine. But in this last line, that resize is just not working. When I run it I get an error that says: undefined is not an object.
    The syntax must be wrong ... any ideas?
    Thanks in advance!

    Great. Grouping was exactly what I needed to do. This works perfectly now (unless there are a few clipping masks already in the image, then it gets a little weird). Here's what I ended up with:
    var objectBounds = docRef.visibleBounds;
    var W = objectBounds[2] - objectBounds[0];    // figures the width
    var H = objectBounds[1] - objectBounds[3];     // figures the height
    // W & H are reporting the size in points ... convert to picas
    var picaW = W / 12;
    var picaH = H / 12;
    // do the math for the correct column width: settings / width = percentage in decimal; multiply by 100 to get the decimal place in the right spot.
    var endWidth = 20;
    var percentageX = Math.round((endWidth / picaW) * 100);
    var percentageY = percentageX;
    // creates group on a new layer and omits guides
    var theLayer = docRef.layers.add();
    theLayer.move(docRef, ElementPlacement.PLACEATBEGINNING );
    var theGroup = docRef.groupItems.add();
    theGroup.name = "theGroup";
    theGroup.move(theLayer, ElementPlacement.PLACEATBEGINNING );
    for (var b = docRef.layers.length - 1; b > 0; b--) {
    if (docRef.layers[b].visible == true) {
    docRef.layers[b].locked = false;
    // move the items into the group if they are not guides;
    for (var a = docRef.layers[b].pageItems.length - 1; a >= 0; a--) {
    if (docRef.layers[b].pageItems[a].guides != true) {
    docRef.layers[b].pageItems[a].locked = false;
    docRef.layers[b].pageItems[a].move(theGroup, ElementPlacement.PLACEATBEGINNING)
    // now to resize based on the percentage
    for (var s=0; s<docRef.groupItems.length; s++){
         docRef.groupItems[s].resize(percentageX, percentageY);
    var newPicaW = (objectBounds[2] - objectBounds[0]) / 12;
    var newPicaH = (objectBounds[1] - objectBounds[3])/ 12;

  • Scripting objects in Illustrator - JavaScript

    Hi i am new to use Javascript in Illustrator.
    I can create new layers easy :-)
    but i like to select objects with a specific fillcolor
    All those objects should be moves to a specific layer
    And have an other fillcolor.
    Is this possible with JavaScript
    if yes HOW
    Thanks

    Firstly to answer your question… Yes this is all possible using JavaScript… A tip for a scripting new comer… Don't confuse script with the GUI there is NO need to select objects in order to move or change them… It's generally better NOT too and only deal with selection when you want user defined input… It is far less simple with script you will need to check every item in the document and if it's color matches a set of values move it else leave where it is… Don't forget when you move objects from one container to another you may have to account for the order reversing…

  • Help to create outlines using javascript in adobe illustrator cs4

    Hi,
    Please help me to create outlines using javascript in illustrator cs4.
    Thanks
    Karthik

    The textFrame object has a createOutline() method. So if you are wanting to save a version of your file that will not require fonts then loop thru these items in your document… (Loop backwards btw its easier that way) Take a look at the other posts at the top here as others are wanting to do the same thing… If your document is more complex then you may need to iterate all the way though which takes a bit more work…

  • Illustrator Settings, Preferences, Assets - Locations

    Hi all,
    I am trying to find as much detail as possible on the location of all Illustrator settings, preferences and application assets in Illustrator CC. There is some information in Adobe's online documentation, but it is incomplete, as far as I can tell:
    http://helpx.adobe.com/illustrator/kb/preference-file-location-illustrator.html
    It's late, so it's possible i'm just missing it...
    For Mac OS, I think I've got it on lock.
    Application Data (Global, all users, application-based):
    Mac HD > Applications > Adobe Illustrator CC > Presets > en_US
    Library - Application Support (User-based):
    Mac HD > Users > ~Username > Library > Application Support > Adobe > Adobe Illustrator 17 > en_US
    Library - Preferences (User-based):
    Mac HD > Users > ~Username > Library > Preferences > Adobe Illustrator 17 Settings > en_US
    For Windows, it seems a bit more nebulous... I've found a few, but I'm not sure I've found them all, and it's unclear. I'm checkin on a Windows 7 box, and here's what I've found so far:
    Program Files (Global, all users, program-based):
    C:\Program Files\Adobe\Adobe Illustrator CC (64 Bit)\Presets
    (?) Application Data 1 (User-based):
    C:\Users\~Username\AppData\Roaming\Adobe\Adobe Illustrator\17.0.0
    (?) Application Data 2 (User-based):
    C:\Users\~Username\AppData\Roaming\Adobe\Adobe Illustrator 17 Settings\en_US\x64
    From what I can tell, the first "user-baed" directory in the 17.0.0 folder, is just an xml-based preferences resource. But I don't know if that file, along with the other user-based directory comprises a 'complete' analog to the two directories in Mac OS.
    Are there more? Any help would be appreciated. Thanks!
    Note: My work here is based on the English (US/Universal) install.

    I am familiar with the locations of all of the files for Mac OS and am hvaing no problems with that.
    The two Windows directories I listed seem to be allowing me to make changes and import settings from another build properly:
    Application Data 1 (User-based):
    C:\Users\~Username\AppData\Roaming\Adobe\Adobe Illustrator\17.0.0
    Application Data 2 (User-based):
    C:\Users\~Username\AppData\Roaming\Adobe\Adobe Illustrator 17 Settings\en_US\x64
    I was able to move some files in place there and get the application to respond as needed.
    Also, on a related note, when I did similar things in Windows as I did in Mac, it failed in similar ways. Moving workspace data into the application on either OS seems to break the interface completely.

  • HELP // Illustrator CC (2014) Crashes every time I open it.

    I've cleaned up my fonts, reset my PRAM, uninstalled and reinstalled, looked for Wacom drivers, and everything else I can find to do.
    HELP!
    Process:               Adobe Illustrator [677]
    Path:                  /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:            com.adobe.illustrator
    Version:               18.1.1 (18.1.1)
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Adobe Illustrator [677]
    User ID:               501
    Date/Time:             2015-03-18 16:56:30.245 -0700
    OS Version:            Mac OS X 10.10.2 (14C1510)
    Report Version:        11
    Anonymous UUID:        4CD84D7D-1F9E-42D7-B9C1-D7EC6206D18B
    Time Awake Since Boot: 1400 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000010
    VM Regions Near 0x10:
    -->
        __TEXT                 0000000100000000-00000001015c0000 [ 21.8M] r-x/rwx SM=COW  /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Application Specific Information:
    Performing @selector(dispatchMenuSelection:) from sender DVAMacMenuItem 0x6000000f0f00
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_pthread.dylib       0x000000010ecfd5c1 _pthread_mutex_lock + 23
    1   com.apple.CoreFoundation       0x000000010ce13721 CFRunLoopStop + 49
    2   com.wacom.WacomMultiTouch     0x00000001142654d1 CMacMultiTouchAPI::~CMacMultiTouchAPI() + 83
    3   com.wacom.WacomMultiTouch     0x0000000114284df1 WacomMTInitialize + 136
    4   com.adobe.dvaui.framework     0x000000010baec22c dvaui::ui::TouchInterface_Wacom::TouchInterface_Wacom() + 140
    5   com.adobe.dvaui.framework     0x000000010baeae78 dvaui::ui::TouchInterface_Wacom::GetInstance() + 40
    6   com.adobe.dvaui.framework     0x000000010baeab66 dvaui::ui::TouchInputManager::RegisterTouch(NSWindow*, dvaui::ui::TouchInputManager::Interfaces) + 86
    7   com.adobe.illustrator         0x00000001004d4b47 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 4402935
    8   com.adobe.illustrator         0x00000001004d82b1 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 4417121
    9   com.adobe.illustrator         0x00000001004d7db5 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 4415845
    10  com.adobe.illustrator         0x00000001004dac07 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 4427703
    11  com.adobe.illustrator         0x00000001004cb3b9 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 4364137
    12  com.adobe.illustrator         0x000000010049ff07 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 4186807
    13  com.adobe.illustrator         0x000000010058222a boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 5113306
    14  com.adobe.illustrator         0x00000001001e78e7 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 1334423
    15  com.adobe.illustrator         0x00000001001e632e boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 1328862
    16  com.adobe.illustrator         0x0000000100209e95 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 1475141
    17  com.adobe.illustrator         0x00000001004e48c6 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 4467830
    18  com.adobe.exo.framework       0x000000010c7aca2c exo::uisupport::CommandHandler::HandleCommand(int) + 220
    19  com.adobe.exo.framework       0x000000010c7acc75 exo::uisupport::CommandHandler::DoCallMyCommandChain(int) + 21
    20  com.adobe.exo.framework       0x000000010c7ac568 exo::uisupport::CommandHandlerBase::CallCommandChain(int) + 56
    21  com.adobe.exo.framework       0x000000010c7416d4 exo::app::OS_AppBase::DispatchMenuCommand(int) + 132
    22  com.adobe.dvacore.framework   0x000000010b347d0c int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 28
    23  com.adobe.illustrator         0x00000001004e6dd2 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 4477314
    24  com.adobe.dvacore.framework   0x000000010b347da3 void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void>(boost::f unction0<void>, bool*) + 99
    25  com.adobe.dvacore.framework   0x000000010b349250 void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 160
    26  com.adobe.exo.framework       0x000000010c74288d -[ExoMacApplication handleMenuCommand:] + 173
    27  libsystem_trace.dylib         0x000000010ed2ccd7 _os_activity_initiate + 75
    28  com.apple.AppKit               0x0000000101f46b71 -[NSApplication sendAction:to:from:] + 452
    29  com.apple.AppKit               0x0000000101f60cbe -[NSMenuItem _corePerformAction] + 382
    30  com.apple.AppKit               0x0000000101f609dc -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 114
    31  libsystem_trace.dylib         0x000000010ed2ccd7 _os_activity_initiate + 75
    32  com.apple.AppKit               0x0000000101f5fa1d -[NSMenu performKeyEquivalent:] + 359
    33  com.apple.AppKit               0x0000000101f5bfb5 -[NSApplication _handleKeyEquivalent:] + 920
    34  com.apple.AppKit               0x0000000101edf35b -[NSApplication sendEvent:] + 3937
    35  com.adobe.dvaui.framework     0x000000010bb55c01 -[DVAMacApplication sendEvent:] + 593
    36  com.adobe.exo.framework       0x000000010c742198 -[ExoMacApplication sendEvent:] + 568
    37  com.apple.AppKit               0x0000000101d6b608 -[NSApplication run] + 711
    38  com.adobe.exo.framework       0x000000010c741bb8 exo::app::OS_AppBase::RunEventLoop() + 56
    39  com.adobe.illustrator         0x00000001004e3cf5 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 4464805
    40  com.adobe.illustrator         0x0000000100472dc6 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 4002166
    41  com.adobe.illustrator         0x0000000100463c60 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 3940368
    42  com.adobe.illustrator         0x0000000100003424 0x100000000 + 13348

    j,
    Did you reinstall the full three step way, see 6) in the list, and did you delete font caches (see item 11) under 5) in the list?
    The following is a general list of things you may try when the issue is not in a specific file, and when it is not caused by issues with opening a file from external media. You may have tried/done some of them already; 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible), for CS3 - CC you may find the folder here:
    https://helpx.adobe.com/illustrator/kb/preference-file-location-illustrator.html
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall (ticking the box to delete the preferences), run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Assigning values to a javascript variable

    Hi,
    Using request dispatcher, i'm forwarding the control to a html from a servlet like this(obj.forward(/index.html?field1=value1&field2=value2).
    In the receiving end, ie., in the html i would like to assign those 2 field1,field2 values to a javascript variables. Javascript located in the index.html.
    I don't know how to do this.
    Pls any one help me to get of this pblm
    Thanks in Advance
    Kannan.T

    Hi thanks for ur reply,
    You r telling while forwarding a request from one
    servlet to another servlet, we can't add query
    string(requestparameters). But then how come this
    code is working?
    RequestDispatcher
    rdis=getServletContext().getRequestDispatcher("/MyServ
    let?type=normal");
    rdis.forward(req,res);Well I owe an apology here - I was not completely correct. I have tested and found that you can indeed add parameters that way. The catch is that these parameters are nested to that forwarded /included resource. It is not available in the original jsp or to some other resource included from the original jsp unless ofcourse you add the parameter again.
    >
    please give me a solution.
    Like this i have to forward my request (with
    querystring) to a html page.
    That htmlpage should receive parameters and assign
    the values to a javascript variables.
    how can i achieve this.
    thanks in advance.My original reply stands.
    You cannot do that in a html page. You have to have a jsp that generates the html.
    ram.

  • Getting an error message when I open Illustrator CC

    Hi,
    I just downloaded Illustrator CC few days I go and everythime I try to open it I'm getting an error message: "Adobe Illustrator had detected some problems associated with the registration that have to be solved in order for Illustrator to work correctly. To solve it click with the roght botton of you mouse on Illustrator.exe and select adminitrator...
    I don't know how to do it. Where is located Illustrator.exe in my computer?

    Hi cristinar,
    By default, Ai CC is installed at below locations:-
    Win64 -"C:\Program Files\Adobe\Adobe Illustrator CC (64 Bit)"
    Win32-"C:\Program Files (x86)\Adobe\Adobe Illustrator CC" (on a 64bit machine) / "C:\Program Files\Adobe\Adobe Illustrator CC" (on a 32bit machine)
    Just navigate to the location where AI is installed; right-click shortcut for AI and select 'Run as Administrator' to rectify the issue. You need to follow this step only once and not on every launch of AI CC.
    Thanks.

  • Illustrator won't open

    Can someone please tell me why my Illustrator just won't open -
    Process:               Adobe Illustrator [38432]
    Path:                  /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:            com.adobe.illustrator
    Version:               ???
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Adobe Illustrator [38432]
    User ID:               502
    Date/Time:             2015-05-03 20:25:03.149 +1000
    OS Version:            Mac OS X 10.10.2 (14C1514)
    Report Version:        11
    Anonymous UUID:        2DD1AC39-8EE9-C29F-C217-E4A3C64FEAA0
    Time Awake Since Boot: 650000 seconds
    Crashed Thread:        0
    Exception Type:        EXC_BREAKPOINT (SIGTRAP)
    Exception Codes:       0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries
    Dyld Error Message:
      Symbol not found: __ZTIN7dvacore6config13dva_exceptionE
      Referenced from: /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/MacOS/../Frameworks/exo.framework/Versions/A/exo
      Expected in: /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/MacOS/../Frameworks/dvacore.framework/Versions/A/dvacore
    in /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/MacOS/../Frameworks/exo.framework/Versions/A/exo
    Binary Images:
           0x10189d000 -        0x1025e2ff7 +libicudata.40.0.dylib (40) <6211D655-ECF8-7378-CF68-3B07300D5A29> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x1025f6000 -        0x10262fff7 +com.adobe.pip (7.2.1.3399) <9E80366E-2A40-34CA-AAE3-2CA50F5F8505> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
           0x102639000 -        0x1026c5fff +com.adobe.headlights.LogSessionFramework (7.2.1.3399) <4D4A32E1-2B7F-34AC-A310-B842CABE6080> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x10270c000 -        0x10270ffff +com.adobe.AdobeCrashReporter (7.0 - 7.1.3) <68EAA7D6-B3A5-3765-BB50-E8E64E1B32EF> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashRep orter
           0x102716000 -        0x102765fff +com.adobe.aiport (aiport version 16.0.0 - 16.0.0.446) <B600176B-0558-3CE5-9644-0072DFDD9F26> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/aiport.framework/Versions/A/aiport
           0x102788000 -        0x1027dbfff +com.adobe.filterport (filterport version 16.0.0 - 16.0.0.446) <7C18051A-038F-3BB1-996C-A9C3AAF0ABBC> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/filterport.framework/Versions/A/filterport
           0x102804000 -        0x102804fff +com.adobe.SPBasic (SPBasic version 16.0.0 - 16.0.0.446) <C2DFE2A7-7D6B-3F32-BE5E-F26F8C5AD538> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
           0x102809000 -        0x102950fff +com.adobe.ACE (AdobeACE 2.20.02.33308 - 2.20.02.33308) <27B6B519-61DD-30FB-94C8-2D7E5AC327B1> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x102964000 -        0x102f37ff7 +com.adobe.AGM (AdobeAGM 4.30.41.1 - 4.30.33.32588) <8DEF0A24-D5CD-33E3-97DC-DEFCC4B67B6F> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x102fd5000 -        0x103012ff7 +com.adobe.ARE (AdobeARE 1.5.02.32588 - 1.5.02.33308) <04A0C255-9BB7-31E9-8829-A58A68DD5CBC> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x10301a000 -        0x103118ff7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.8.0.33078 - 3.8.0.33078) <7B210F6B-B3F2-3D10-97A8-7B104F068779> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
           0x1031c5000 -        0x1031e2fff +com.adobe.BIB (AdobeBIB 1.2.03.33308 - 1.2.03.33308) <56FC86F3-E5FC-3A4D-A8CF-4BB1BBA68753> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x1031ea000 -        0x103211ff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <C21D264F-9A78-3E52-9E0F-3044E78A24B0> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x103219000 -        0x10353eff7 +com.adobe.CoolType (AdobeCoolType 5.15.00.33308 - 5.15.00.33308) <07952676-1A11-3AA6-991D-04460EFBA92E> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x103586000 -        0x103998fff +com.adobe.MPS (AdobeMPS 5.8.1.33340 - 5.8.1.32565) <A7808EF8-5C1E-32EE-ACB5-2558AB1EF998> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103a12000 -        0x105be1fe7 +com.adobe.psl (AdobePSL 14.0.0.32504 - 14.0.0.32504) <23C5B14D-27F0-37E6-B0CD-4CA22F149998> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
           0x105fc9000 -        0x10607dfff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.6 -c 14 - 79.156821) <02275E92-9933-37D7-94DD-95AECE4516E0> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x106129000 -        0x106248fff +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.6 -f 118 - 79.156821) <EA926212-514D-3061-AAD5-00DACC2967F6> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
           0x1062fc000 -        0x1063a6fe7 +libicucnv.40.0.dylib (40) <768D99C5-46B9-B849-2834-B5BF541856D1> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dy lib
           0x1063ce000 -        0x10650efe7 +libicui18n.40.0.dylib (40) <B0341318-FB92-A0CF-2CA5-7FA100624DBD> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicu i18n.40.0.dylib
           0x10658e000 -        0x106690fef +libicuuc.40.0.dylib (40) <76F12DCE-F356-D48D-4239-FC103706EF76> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x1066d9000 -        0x106808fff +com.winsoft.wrservices (WRServices 8.0.0 - 8.0.0) <3DDC40D0-BC6F-3758-B00A-E102E80D4F5F> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x106866000 -        0x1069c0fff +com.adobe.linguistic.LinguisticManager (8.0.0 - 20256) <65F0E23D-218B-3365-890E-249E085586B0> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x106a0e000 -        0x106a16ff7 +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) <950C0C61-98D6-3666-BF7C-F317B8F515B0> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x106a20000 -        0x106a44ff7 +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.33078 - 3.8.0.33078) <B7D04EEF-4B31-35C3-A882-D81550B9D565> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8Sh aredExpat
           0x106a68000 -        0x106b26fff +com.adobe.AdobeExtendScript (ExtendScript 4.5.5 - 4.5.5.32401) <98E48A52-A6EB-309D-B668-EE951E67823F> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScr ipt
           0x106b76000 -        0x106c2ffff +com.adobe.JP2K (1.2.2 - 1.2.2.32945) <B2FE3A06-8DB4-3F6B-B53F-B4404406D345> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x106c79000 -        0x106e7afff +com.adobe.owl (AdobeOwl version 5.0.33 - 5.2.3) <9588F98E-2DB3-3AF0-9C3B-682242A817AF> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x106ebf000 -        0x10764ffff +com.adobe.PDFL (PROD_MAJOR.PROD_MINOR.PROD_STEP - 11.0.0.33336) <F010F784-45A9-3CAD-9A1E-916E3DF79976> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
           0x10770c000 -        0x107810fff +com.adobe.PDFPort (AdobePDFPort 2.1.0.33308 - 2.1.0.33308) <438573C1-0628-3FC8-9F49-C366A4C35FC3> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
           0x107823000 -        0x10784cff7 +com.adobe.PDFSettings (AdobePDFSettings 1.04.0 - 1.4) <E07D101E-E47A-392A-8A44-005B49393DEC> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSetting s
           0x107864000 -        0x10790fff7 +com.adobe.AdobeScCore (ScCore 4.5.5 - 4.5.5.32401) <04932D1E-CB2D-3D66-8B9E-8B325EB4E21F> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x107954000 -        0x107a11ff7 +com.adobe.SVGExport (AdobeSVGExport 6.0 - 6.0) <F15402B9-3F84-3687-8AB8-AD5B86C81806> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
           0x107a34000 -        0x107d4afff +com.adobe.SVGRE (AdobeSVGRE 6.0 - 6.0) <D21D9020-0CD5-2CE3-FE04-8856C4F631E1> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
           0x107e16000 -        0x107e29ff7 +com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31) <58BB943C-98EC-3812-AAAB-74F66630D1D4> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x107e33000 -        0x107e4cfff  com.apple.carbonframeworktemplate (1.0 - 1.0) <04E0689C-DBC7-3BC4-B41D-BDFA55DBBE45> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
           0x107e53000 -        0x107f52fff +com.adobe.amtlib (8.0.0.45 - 8.0.0.45) <3793FBF6-1FED-357D-96EF-5C17B2F7A371> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x107f65000 -        0x107f6bff7 +com.adobe.boost_date_time.framework (8.0.0 - 8.0.0.0) <DFC96B10-6680-39CA-8713-4D1AB5AF4A4C> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x107f7f000 -        0x107f8dfff +com.adobe.boost_filesystem.framework (8.0.0 - 8.0.0.0) <7CB59FF9-0EB3-3504-BA63-C74227FCD866> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesyste m
           0x107fa0000 -        0x10804bfff +com.adobe.boost_regex.framework (8.0.0 - 8.0.0.0) <4F6B6237-C270-3F3B-9C33-7A841E3AF7DF> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x1080cb000 -        0x108125fff +com.adobe.boost_serialization.framework (8.0.0 - 8.0.0.0) <75406A2A-4DB5-302B-A95D-434E33DC8F47> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/boost_serial ization
           0x108214000 -        0x108220ff7 +com.adobe.boost_signals.framework (8.0.0 - 8.0.0.0) <1227AD01-381E-3C94-8624-43D5F17B7011> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x108238000 -        0x10823cfff +com.adobe.boost_system.framework (8.0.0 - 8.0.0.0) <4D686715-3640-336C-9D1F-F331E63A827B> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x108245000 -        0x108252fff +com.adobe.boost_threads.framework (8.0.0 - 8.0.0.0) <0EA38D5B-3970-323B-BB87-48E81D9991EA> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x10826d000 -        0x1085d5ff7 +com.adobe.dvaadameve.framework (8.0.0 - 8.0.0.0) <233EA4AC-D8FA-3912-97C6-58375AA9F9BA> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x10905e000 -        0x1092d8ff7 +com.adobe.dvacore.framework (8.0.0 - 8.0.0.0) <1125A807-0675-303C-B319-803D543A00F9> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x10954f000 -        0x109a8ffff +com.adobe.dvaui.framework (8.0.0 - 8.0.0.0) <AC91126B-2D28-3286-AF53-A53855A309D4> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10a23f000 -        0x10a319fff +com.adobe.dvaworkspace.framework (8.0.0 - 8.0.0.0) <FD7EDC70-6855-3CDA-B717-2FC9370B6A46> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x10a72f000 -        0x10a74cff7 +libtbb.dylib (0) <5A7FB896-E1B5-3A96-97B5-719C14013852> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/libtbb.dylib
           0x10a761000 -        0x10a786fff +libtbbmalloc.dylib (0) <60EF4F46-298B-38B6-A6CD-9B168072EAB7> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/libtbbmalloc.dylib
           0x10a7b0000 -        0x10a7b4fff  com.apple.agl (3.3.0 - AGL-3.3.0) <8DEEE0ED-5B8C-3B37-AF85-D82A0E207B83> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
        0x7fff6b072000 -     0x7fff6b0a8837  dyld (353.2.1) <65DCCB06-339C-3E25-9702-600A28291D0E> /usr/lib/dyld
        0x7fff84399000 -     0x7fff84399fff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8439a000 -     0x7fff8448cff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff8448d000 -     0x7fff8459bfff  com.apple.desktopservices (1.9.2 - 1.9.2) <8670FD3B-8A5B-3D84-B21E-DF21140545A2> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
        0x7fff845b3000 -     0x7fff84602ff7  com.apple.opencl (2.4.2 - 2.4.2) <D16CFDE6-B5F7-301A-995E-8B583D8C675A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff84603000 -     0x7fff848eaffb  com.apple.CoreServices.CarbonCore (1108.2 - 1108.2) <FD87F83F-301A-3BD6-8262-5692FC1B4457> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff8490f000 -     0x7fff8493ffff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff8495c000 -     0x7fff84976ff7  libextension.dylib (55.1) <6D0CF094-85E8-3F5B-A3F1-25ECF60F80D9> /usr/lib/libextension.dylib
        0x7fff84977000 -     0x7fff84bdfff3  com.apple.security (7.0 - 57031.10.10) <79C37E73-271B-3BEF-A96E-CDB83FF12CF0> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff84c89000 -     0x7fff84d12fff  com.apple.CoreSymbolication (3.1 - 57020) <FDF8F348-164D-38F9-90EB-F42585DD2C77> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
        0x7fff84d13000 -     0x7fff84d4dffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
        0x7fff84d4e000 -     0x7fff84d79fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff84f2a000 -     0x7fff84f91ff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff84f92000 -     0x7fff84f96fff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff85019000 -     0x7fff85036fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8503c000 -     0x7fff8503eff7  libsystem_sandbox.dylib (358.1.1) <95312E09-DA28-324A-A084-F3E574D0210E> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff850a3000 -     0x7fff850ecff3  com.apple.HIServices (1.22 - 520.12) <8EAC82AB-6A7D-3606-AF6F-60A9410D1278> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff85185000 -     0x7fff8518eff3  com.apple.CommonAuth (4.0 - 2.0) <BA9F5A09-D200-3D18-9F4A-20C789291A30> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff851e3000 -     0x7fff851e5ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff85229000 -     0x7fff85239ff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff8523a000 -     0x7fff85568fff  com.apple.Foundation (6.9 - 1152.14) <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff85714000 -     0x7fff85716ff7  com.apple.securityhi (9.0 - 55006) <1F40ECF1-6AEF-3E64-9DAD-ADC646CCEA98> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff85717000 -     0x7fff85763ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff857d1000 -     0x7fff857d8ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8581a000 -     0x7fff85836ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff85837000 -     0x7fff8586ffff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
        0x7fff858af000 -     0x7fff858b2ff7  libdyld.dylib (353.2.1) <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6> /usr/lib/system/libdyld.dylib
        0x7fff85923000 -     0x7fff85925fff  com.apple.loginsupport (1.0 - 1) <21DBC18C-F260-39FC-B52F-04A5AA84523A> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.fram ework/Versions/A/loginsupport
        0x7fff85926000 -     0x7fff85a4eff7  com.apple.coreui (2.1 - 305.6.1) <B56EC212-73C1-326F-B78C-EB856386296E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff85a7e000 -     0x7fff85a9afff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
        0x7fff85e07000 -     0x7fff85e0cfff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff867eb000 -     0x7fff867ecfff  libSystem.B.dylib (1213) <90B107BC-FF74-32CC-B1CF-4E02F544D957> /usr/lib/libSystem.B.dylib
        0x7fff8687c000 -     0x7fff868b7fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff869e3000 -     0x7fff86bc8ff3  libicucore.A.dylib (531.31) <B08E00D5-13C6-3391-AB3A-8DE693D3B42E> /usr/lib/libicucore.A.dylib
        0x7fff86c42000 -     0x7fff86c42fff  com.apple.Carbon (154 - 157) <0DF27AD6-ED64-34D7-825D-65297D276652> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff86c43000 -     0x7fff86caaffb  com.apple.datadetectorscore (6.0 - 396.1.1) <80379385-A4EC-3F9B-AFED-9B1DF781943D> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
        0x7fff86cc0000 -     0x7fff86cdaff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff86cdb000 -     0x7fff86ceeff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff8736e000 -     0x7fff87377ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff874ab000 -     0x7fff874d8fff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff874d9000 -     0x7fff874d9fff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff874da000 -     0x7fff874e4ff7  com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff874e5000 -     0x7fff8787bfff  com.apple.CoreFoundation (6.9 - 1152) <CBD1591C-405E-376E-87E9-B264610EBF49> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff87a7d000 -     0x7fff87a97fff  com.apple.AppleVPAFramework (1.2.10 - 1.2.10) <DC3D5A44-AB1E-32A9-9D22-FC922B52346A> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff88381000 -     0x7fff884c3fff  libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
        0x7fff884c4000 -     0x7fff8853afe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff8853b000 -     0x7fff8853ffff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff88549000 -     0x7fff8854dfff  com.apple.TCC (1.0 - 1) <61F36A72-B983-3A2D-9D37-A2F194D31E7D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff887df000 -     0x7fff8890ffff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
        0x7fff88a11000 -     0x7fff88af5fff  libcrypto.0.9.8.dylib (52.10.1) <2A2924DE-63FB-37F6-B102-84D69240675B> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff88b03000 -     0x7fff88b04ff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff88cc1000 -     0x7fff88d5ffff  com.apple.Metadata (10.7.0 - 917.1) <46BE997C-B1F4-3BED-9332-FAC87297C87A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff88d60000 -     0x7fff88d62fff  libCVMSPluginSupport.dylib (11.1.1) <DA0706C5-F02A-3F3D-8EBA-18C04313CA2C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
        0x7fff8942a000 -     0x7fff8943bff3  libsystem_coretls.dylib (35.10.1) <3EAED90A-7AA0-323C-A52B-E16477981D59> /usr/lib/system/libsystem_coretls.dylib
        0x7fff895af000 -     0x7fff895dffff  com.apple.GSS (4.0 - 2.0) <FD154E62-F4CF-339D-B66C-AF4AED6A94A6> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff895e0000 -     0x7fff89606ff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
        0x7fff89615000 -     0x7fff89616fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
        0x7fff896aa000 -     0x7fff896c3ff7  com.apple.CFOpenDirectory (10.10 - 187) <0F9747EF-12A3-3694-984D-0B8352CA6C0F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff896c4000 -     0x7fff896c7fff  com.apple.IOSurface (97.0.1 - 97.0.1) <0C9ED49D-AADB-3CB9-9A11-F5D765253548> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff897bb000 -     0x7fff8982ffff  com.apple.ApplicationServices.ATS (360 - 375) <2824D38D-460D-353C-9D18-499B4BEEABB7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff89830000 -     0x7fff8983ffff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
        0x7fff89840000 -     0x7fff89842fff  libRadiance.dylib (1232) <E670DDEF-60F8-3AEB-B6A2-B20A1340634C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff89843000 -     0x7fff89a3d46f  libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
        0x7fff89a3e000 -     0x7fff89a69ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff89a70000 -     0x7fff89ac4fff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff89dc9000 -     0x7fff89f34ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff89f35000 -     0x7fff89f7bff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff89f7c000 -     0x7fff89fb4ffb  libsystem_network.dylib (411.1) <2EC3A005-473F-3C36-A665-F88B5BACC7F0> /usr/lib/system/libsystem_network.dylib
        0x7fff89fb5000 -     0x7fff8a004ff7  libstdc++.6.dylib (104.1) <803F6AC8-87DC-3E24-9E80-729B551F6FFF> /usr/lib/libstdc++.6.dylib
        0x7fff8a005000 -     0x7fff8a0c5fff  com.apple.backup.framework (1.6.2 - 1.6.2) <63E8CA47-B7B8-3A63-B505-D1622CE52527> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8a0d7000 -     0x7fff8a136ff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff8a137000 -     0x7fff8a143ff7  com.apple.OpenDirectory (10.10 - 187) <8B98ECCB-7EFA-3A58-BD2B-A0835D869B1A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8a144000 -     0x7fff8a25bfe7  libvDSP.dylib (516) <DFEDB210-49D1-3803-88A2-C61DB6A45C3D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff8a25f000 -     0x7fff8a25ffff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <B92888D0-ED3F-3430-8F3A-6E56FD16C5F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
        0x7fff8a260000 -     0x7fff8a260ff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff8a4bf000 -     0x7fff8a4c4ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff8a4c6000 -     0x7fff8a50cffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8a50d000 -     0x7fff8a512ff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff8a5ea000 -     0x7fff8a5eafff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8a5eb000 -     0x7fff8a601ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
        0x7fff8a602000 -     0x7fff8a606fff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff8a607000 -     0x7fff8a60dfff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff8a62e000 -     0x7fff8a648ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff8a8e0000 -     0x7fff8aae3ff3  com.apple.CFNetwork (720.2.4 - 720.2.4) <E550C671-930F-3B12-8798-23898473E179> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8aae4000 -     0x7fff8aae9ffb  libheimdal-asn1.dylib (398.10.1) <A7B6447A-6680-3625-83C3-993B58D5C43F> /usr/lib/libheimdal-asn1.dylib
        0x7fff8aaea000 -     0x7fff8aaf0fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff8ab0a000 -     0x7fff8ac2cff7  com.apple.LaunchServices (644.12.4 - 644.12.4) <59E909E8-ED4A-33EA-B85D-D409BADDF854> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff8b04b000 -     0x7fff8b2c6ff7  com.apple.CoreData (111 - 526.1) <DC4F037B-B7F4-381A-B939-4414489D76BF> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8b2c7000 -     0x7fff8b335ffb  com.apple.Heimdal (4.0 - 2.0) <3E5DA653-A343-3257-ADE1-BA879BAE280F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8b398000 -     0x7fff8b3c0fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff8b966000 -     0x7fff8b978ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff8bbc8000 -     0x7fff8bc45fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <84A91B00-0ED4-350C-B30A-AEAE437AE02A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
        0x7fff8bcbc000 -     0x7fff8bcbdfff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8bda6000 -     0x7fff8bdc9fff  com.apple.Sharing (328.3.2 - 328.3.2) <F555679F-1CD1-3EB2-8E01-FCB80EF07330> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8bdcd000 -     0x7fff8be28fff  libTIFF.dylib (1232) <29A5C7F7-D50B-35B3-8FA2-A55A47E497A6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8be2a000 -     0x7fff8be31fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8be35000 -     0x7fff8be52ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff8be53000 -     0x7fff8bec5ff7  com.apple.framework.IOKit (2.0.2 - 1050.10.8) <FDFB1FBE-6A0E-3D63-828C-CD53500FCB0F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8befe000 -     0x7fff8bf72ff3  com.apple.securityfoundation (6.0 - 55126) <DEC91795-7754-334A-8CDA-B429F41B922D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff8bf85000 -     0x7fff8bfe1fff  com.apple.QuickLookFramework (5.0 - 675.13) <70196DC4-E71B-37E8-AA15-B7FD21EC1012> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8c21d000 -     0x7fff8c335ffb  com.apple.CoreText (352.0 - 454.3) <B3B8C775-14FA-38F3-9CD5-830422AE9C49> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8c336000 -     0x7fff8c337fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff8c338000 -     0x7fff8c392ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
        0x7fff8c3b4000 -     0x7fff8c807fc7  com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff8c808000 -     0x7fff8c812ff7  com.apple.CrashReporterSupport (10.10 - 629) <4BCAA6B5-EC7F-365F-9D3F-BC483B7E956C> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
        0x7fff8c813000 -     0x7fff8cb17ffb  com.apple.HIToolbox (2.1.1 - 757.3) <D827FC03-5668-3AA4-AF0E-46EEF7358EEA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
        0x7fff8cde8000 -     0x7fff8cde8ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff8cde9000 -     0x7fff8ce11fff  libxpc.dylib (559.10.3) <876216DC-D5D3-381E-8AF9-49AE464E5107> /usr/lib/system/libxpc.dylib
        0x7fff8ce53000 -     0x7fff8ce57ff7  libGIF.dylib (1232) <061D5354-FE4F-3C7E-B563-99DC0198062D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8d1a9000 -     0x7fff8d1abfff  libsystem_configuration.dylib (699.1.5) <5E14864E-089A-3D84-85A4-980B776427A8> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8d1c8000 -     0x7fff8d1e1fff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff8d236000 -     0x7fff8d237ff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8d25c000 -     0x7fff8d25cfff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8d25d000 -     0x7fff8d2d5ff7  com.apple.SystemConfiguration (1.14 - 1.14) <E0495F7D-5624-3EF7-B7E5-DA0EE708B6E4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff8d59d000 -     0x7fff8d5eaff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff8d6cb000 -     0x7fff8d73afff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
        0x7fff8d746000 -     0x7fff8d74ffff  libsystem_pthread.dylib (105.10.1) <3103AA7F-3BAE-3673-9649-47FFD7E15C97> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8d750000 -     0x7fff8d842fff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff8d957000 -     0x7fff8d95afff  com.apple.xpc.ServiceManagement (1.0 - 1) <5EFD45BF-B0CD-39F2-8232-6BA33E63E5D4> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
        0x7fff8d973000 -     0x7fff8d978ff7  libsystem_stats.dylib (163.10.18) <9B8CCF24-DDDB-399A-9237-4BEC225D2E8C> /usr/lib/system/libsystem_stats.dylib
        0x7fff8d979000 -     0x7fff8da0dfff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff8da0e000 -     0x7fff8da33ff7  libPng.dylib (1232) <6E72AE55-AFB0-3FC4-80B2-EBC3353436B7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8da34000 -     0x7fff8da4fff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff8da6f000 -     0x7fff8db11ff7  com.apple.Bluetooth (4.3.2 - 4.3.2f6) <95676652-21AB-3FFA-B53D-EBC8BF4E913E> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8db6b000 -     0x7fff8db82ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLinearAlgebra.dylib
        0x7fff8db83000 -     0x7fff8db89ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8db8a000 -     0x7fff8db8aff7  liblaunch.dylib (559.10.3) <DFCDEBDF-8247-3DC7-9879-E7E497DDA4B4> /usr/lib/system/liblaunch.dylib
        0x7fff8db8b000 -     0x7fff8df98ff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fff8dfa1000 -     0x7fff8e040df7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff8e3b4000 -     0x7fff8e3ceff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8e3cf000 -     0x7fff8e420ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8e975000 -     0x7fff8ea69fff  libFontParser.dylib (134.1) <EA8452DB-9221-3608-95BF-496F58106313> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff8ea6a000 -     0x7fff8eaf6ff7  libsystem_c.dylib (1044.10.1) <199ED5EB-77A1-3D43-AA51-81779CE0A742> /usr/lib/system/libsystem_c.dylib
        0x7fff8eb04000 -     0x7fff8ec92fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
        0x7fff8ed4c000 -     0x7fff8f5a3ffb  com.apple.CoreGraphics (1.600.0 - 775.16) <864C1845-C41E-314C-A3B4-438DC39E5FBC> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8f7a6000 -     0x7fff8f828fff  com.apple.PerformanceAnalysis (1.0 - 1) <94F08B1A-F6AF-38D5-BE92-4FED34742966> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
        0x7fff8f837000 -     0x7fff8f842fff  libGL.dylib (11.1.1) <1F0EB9FB-4B0F-349B-80DD-93FD3F45B9C7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8f89b000 -     0x7fff8f8a8ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff8f8f3000 -     0x7fff8f8f3fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <F1B96A61-7E4B-31BD-A35B-BA7EF1F16EF4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff908ae000 -     0x7fff908b6fff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff908b7000 -     0x7fff90b86ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
        0x7fff90b8c000 -     0x7fff90bb6ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff90bb7000 -     0x7fff90c23fff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <37551DDD-C07C-31EB-923A-9721F03D7E29> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff90cf4000 -     0x7fff90d05ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff90e9d000 -     0x7fff90ea0fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
        0x7fff90f81000 -     0x7fff90fa1fff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
        0x7fff91045000 -     0x7fff91086fff  libGLU.dylib (11.1.1) <E9ADAD30-0133-320D-A60E-D1A7F91A7795> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff91087000 -     0x7fff91088fff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff91089000 -     0x7fff910aeff7  libJPEG.dylib (1232) <09466709-4742-3418-A0AC-116EF9714E2D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff910af000 -     0x7fff910dafff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff911aa000 -     0x7fff912e7fff  com.apple.ImageIO.framework (3.3.0 - 1232) <D7AF3CD2-FAB2-3798-9C26-914886852DCD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff912e8000 -     0x7fff91e32ff7  com.apple.AppKit (6.9 - 1344.72) <44EF7DEB-3072-3515-9F34-2857D557E828> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff92835000 -     0x7fff92842ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff92843000 -     0x7fff92851ff7  com.apple.opengl (11.1.1 - 11.1.1) <F79F5FFF-372E-329E-81FB-EE9BD6A2A7A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff92852000 -     0x7fff92866ff7  com.apple.MultitouchSupport.framework (262.33.1 - 262.33.1) <62DF9340-01A1-3E12-A604-C90F6361FD9E> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff92867000 -     0x7fff9295aff7  libJP2.dylib (1232) <10B78725-0B8A-3D87-B2E3-8FEED0C07F21> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff9295b000 -     0x7fff9295bfff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff92d34000 -     0x7fff93067fff  libmecabra.dylib (666.2) <F757CABA-3EDB-3ABA-A378-A7C574EA233B> /usr/lib/libmecabra.dylib
        0x7fff93068000 -     0x7fff93218ff7  com.apple.QuartzCore (1.10 - 361.15) <72A78C43-30DF-3748-9015-4B28119DB27B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff93219000 -     0x7fff9323afff  com.apple.framework.Apple80211 (10.1 - 1010.64) <A7378C4B-FFD3-35B9-93E8-0534A2A7B51F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff9323b000 -     0x7fff93248fff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecogn itionCore
        0x7fff93292000 -     0x7fff93294ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff93295000 -     0x7fff9329efff  libGFXShared.dylib (11.1.1) <7AE7D152-597E-3B27-A52C-8DA76760B61C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff932a8000 -     0x7fff932b3ff7  libkxld.dylib (2782.10.72) <68E07A32-28F5-3FBB-9D74-00B4F53C2FD4> /usr/lib/system/libkxld.dylib
        0x7fff93561000 -     0x7fff935f6ff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff935f7000 -     0x7fff935ffffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff93638000 -     0x7fff93673fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
        0x7fff93674000 -     0x7fff9367ffff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff93680000 -     0x7fff936c0ff7  libGLImage.dylib (11.1.1) <3986BFA3-4F55-380F-B01D-91BA9785D70C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff936c1000 -     0x7fff936c2ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff936c3000 -     0x7fff93af3fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff93b3a000 -     0x7fff93b63ffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff93c4b000 -     0x7fff93c5cfff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff93c8e000 -     0x7fff93d51ff7  libvMisc.dylib (516) <A84F3A3B-D349-3FBC-B5A6-E0F572734073> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
        0x7fff93d52000 -     0x7fff93d56fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff93d57000 -     0x7fff93d5ffff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff93d60000 -     0x7fff93d68ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framewor k/Versions/A/FSEvents
        0x7fff93d69000 -     0x7fff93d74ff7  com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) <7DF3C68C-B219-3E13-AE72-24B8606A1560> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis

    Hi Amanda,
    Try updating the Java for the OS. It has helped other. Then reset the Illustrator preferences.
    https://jdk8.java.net/download.html 
    http://helpx.adobe.com/illustrator/kb/preference-file-location-illustrator.html
    If you are still having the issue. Then uninstall the software using the Adobe Clean tool. Then reinstall the software
    http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    Scott

  • Adobe Illustrator CC crashes on splash screen

    Hi there,
    I couldn't find a similar thread with similar solutions so here we go, about 2 months ago my Adobe Illustrator CC stopped opening. It will start up and show the splash screen but then stops while "Reading Fonts" (see image below)
    I hadn't changed anything or downloaded anything that I know and I assumed it would start working again but alas.
    I have a MacBook Pro (15-inch, Late 2011) running Yosemite 10.10.1
    Things I have tried so far to fix the problem:
    Uninstalled / reinstalled AI twice.
    Restarted my computer a million times.
    Cleared cache folders as per other forums suggestions.
    Reset system fonts and deleted all non system fonts (Through Font Book, if there's another way to solve the font issue please let me know)
    Please help if you can, I'm at a complete loss.
    Thanks.
    Screen it gets stuck on:

    Alice,
    Item 1) and 11) under 5) in the following list may be relevant (I am unsure whether FontBook serves you well), and the full 6), too.
    The following is a general list of things you may try when the issue is not in a specific file, and when it is not caused by issues with opening a file from external media. You may have tried/done some of them already; 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible), for CS3 - CC you may find the folder here:
    https://helpx.adobe.com/illustrator/kb/preference-file-location-illustrator.html
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall (ticking the box to delete the preferences), run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Adobe Illustrator close in Mac

    Hi, guys.
    I have installed in my work, on  my Mac, the Adobe Illustrator. But ever I try save everything, the Illustrator show me this message: Unkown error occurred.
    I used Illustrator in portuguese. Grateful now to any help.
    The error is attached.

    jaclinton,
    Unless someone presents a brighter suggestion, you may try the list:
    The following is a general list of things you may try when the issue is not in a specific file, and when it is not caused by issues with opening a file from external media. You may have tried/done some of them already; 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible), for CS3 - CC you may find the folder here:
    https://helpx.adobe.com/illustrator/kb/preference-file-location-illustrator.html
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall (ticking the box to delete the preferences), run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Why the step-and-repeat function (command+d) isn't working in Illustrator CS5?

    Why the step-and-repeat function (command+d) isn't working in Illustrator CS5?
    I am trying this. Take an object, move it some inches on the right while holding the option key, so I duplicate it.
    Usually, I pressed on command+d to duplicate this action on and on (duplicate the object and moving it some inches away), but now it is not working.
    any idea?

    kwakoo,
    It may be time for the list:
    The following is a general list of things you may try when the issue is not in a specific file, and when it is not caused by issues with opening a file from external media. You may have tried/done some of them already; 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible), for CS3 - CC you may find the folder here:
    https://helpx.adobe.com/illustrator/kb/preference-file-location-illustrator.html
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall (ticking the box to delete the preferences), run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

Maybe you are looking for