Migrating a Flash CS4 project to FlashBuilder

I'm migrating a Flash CS4 project  to Flash Builder.  My CS4 project has a lot of assets that are assigned  classes in the Flash library.  For example, a graphic in the library has  a class name of MyBitmap, and a base class of  flash.display.BitmapData.  I've built my CS4 project as a SWC file and  included it as a library in my Flash Builder project.  The project  builds fine, but when it runs, it says MyBitmap is not defined.  Is  there a way to resolve this?
Thanks,
Brian

The class was in the SWC, but I looks like the problem occured because I didn't declare any variables referring to the SWC assets (didn't need to do this in CS4).  Once I declared a variables, I was able to use the SWC classes.  I'll probably move most of these directly to the Flash Builder project using the [EMBED ...] tag anyway.
-- Brian
Jason San Jose wrote:
That's odd that it would fail at runtime. Can you make sure the SWC contains what you expect? In Flash Builder, in Package Explorer, look for your SWC under "Referenced Libraries". Perhaps the class wasn't actually compiled into the SWC.
Jason San Jose
Software Engineer, Flash Builder

Similar Messages

  • Flash CS4 Link to a Movie Clip from inside another Movie Clip

    I am working on a Flash CS4 project which has 5 buttons with 5 corresponding movie clips all on the main timeline. Everything in functional so far.
    My problem is this: I want to be able to mouse click on a particular word in the text inside movie clip 4 ("mc4") and have it link to movie clip 3 ("mc3") (on the main timeline).
    I've tried many things, and I can't get it working.
    I have tried to highlight the word then link it to "mc3" in the properties panel where it says link (I successfully linked to an email address and to an outside website in other parts of the project)....
    I tried to link it in the properties panel to "mc3", I tried & "parent.mc3", "root.mc3";
    Linking it this ways seems to be the simplest, logical thing to do, but I don't know what kind of prefix it needs.
    Then, I tried making the word (inside mc4) an invisible button (button6) then linking it to the mc3, with it's actionscript in the main timeline with the other button functions.
    I tried duplicating mc3 and duplicating invisible button 3 and moving it's hotspot to over the word.
    I tried putting a copy of mc3 and the button inside mc4, with the actionscript also inside mc4.
    I tried duplicating mc3 and calling it mc6, and putting that inside mc4, with the actions back on the main timeline, and tried again with the actions inside mc4.
    I tried with mc6 and invisible button 6 on the main timeline, but that doesn't seem possible.
    I tried using this code from Adobe Actionscript 3.0:
    button6.addEventListener(MouseEvent.CLICK, startMovie);
    function startMovie(e:MouseEvent):void
            this.play("mc6"); [and I also tried with "mc3"]
    Nothing works!! Please, I would appreciate any suggestions!!
    Thanks,
    Suzanne

    If I limit my attention to the second sentence of your posting, then I suggest the following (borrowing from the rest of your posting)...
    If that invisible button6 is inside MC3 (on MC3's main timeline), atop the word you are trying to link to the movieclip, and you just want to make mc4 play by clicking that invisible button6, then assign the following code to the button6 inside MC3...
    button6.addEventListener(MouseEvent.CLICK, startMovie);
    function startMovie(e:MouseEvent):void
            MovieClip(this.parent).MC4.play();
    If I missed, then I missed following your explanation.

  • Flash CS4 Link to a printable pdf file

    First of all, I am having trouble importing a pdf file into my Flash CS4 project's library.
    I need assistance making a link to a pdf file that is not currently on the internet.
    That is, the end result I am looking for, is for someone to mouse click on a button which takes them to view a printable pdf file.
    Any advise?
    Suzanne

    I don't have experience with incorporating pdf into Flash, but I found this blog/article that may be useful for you regarding pdf's and CS3... read thru the comments that others added as they identify a few options...
    http://www.pixelwit.com/blog/2008/02/flash-cs3-pdf-integration/

  • How to use embedded font (CFF) for Flash CS4?

    Hi,
    I am trying to embed "Arial Unicode MS" for use by TLF in my Flash CS4 project. As I googled around, I am using the "Flex SWC" approach, only not having any luck. Here is what I got:
    //Code in Flex ActionScript project:
    package
        public class FontEmbeds
            [Embed(source='C:/Windows/Fonts/ARIALUNI.TTF',
                    fontFamily='ArialUnicodeMS',
                    embedAsCFF='true'
            public const Font1:Class;
    When I am trying to instantiate this class, I have AS code in my Flash main timeline:
    var font:Font = new FontEmbeds_Font1();
    Flash compiler says: "1067: Implicit coercion of a value of type FontEmbeds_Font1 to an unrelated type flash.text:Font."
    Ok. Now after I changed it to:
    var font:FontEmbeds_Font1 = new FontEmbeds_Font1();
    Flash gives 3 errors:
    "VerifyError: Error #1014: Class mx.core::FontAsset could not be found.
    ReferenceError: Error #1065: Variable TextLayout is not defined.
    ReferenceError: Error #1065: Variable MainTimeline is not defined."
    I am assuming I have to create a Font1 object in order to use the embedded font. Is this assumption correct? As I've tried to use the "fontFamily" directly but Flash didn't seem to find the font at all:
    charFormat.fontFamily = "ArialUnicodeMS";
    Thanks.

    Hi Eric,
    Thanks for the info.
    I've tried to use the "fontFamily" directly but Flash didn't seem to  find the font at all:
    charFormat.fontFamily = "ArialUnicodeMS";
    In one fla where I used pure TFL, nothing gets rendered at all in the container Sprite. Flash doesn't throw any errors either. In another fla where I used a ComboBox, etc. along with TFL, it throws an error says it can't compile since "there is no ActionScript found" and I got a screen where all the Flash components were  flickering. After several attempts, Flash crashed.
    Also as a side note, the swc gets generated by Flash Builder Beta 2, at first it was 18mb and the second time I complied it become 9mb and stayed 9mb afterwards. Not sure if that's a concern.
    Geng

  • How to fix corrupted Flash cs5 Project?

    I should have known better than to attempt to copy MovieClips from a Flash cs4 project that got converted into a Flash cs5 project, I copied a couple MovieClips to my flash cs5 project and then it asked me if I want to overwrite the components or not. I choose not to the first time, then I got tons of warnings and so I tried again, this time I overwrite when prompted.
    Then after the save, flash cs5 crashed. "An error occured while opening the file". "flash cannot parse this file" error. My client doesn't want me showing any of this project to any third parties and I'm upset and so is he that this could happen.

    Ya I beleive my flash .fla file is a gonner

  • Weird AIR problem in Flash CS4.

    I have an AIR 1.5 Flash CS4 project that utilizes the new facebook api.  While the project works as expected by using "Test Movie" inside flash,  when I compile it it gives the error:
    VerifyError: Error #1014: Class flash.html::HTMLLoader could not be found.
    at com.facebook.graph::FacebookDesktop$/login()
    at SonyEricsson_fla::MainTimeline/frame17()
    I have read various posts about swc prioritization but even that doesn't  help, I have compiled the project by using the trial of CS5 but the  same problem persists. It is as if during compilation the  flash.html.HTMLLoader class is omitted. Could you suggest anything  please? Thank you.

    Ned Murphy-
    Thanks for your response. Yes I created a roll-over button of the photo in the graphic I made and then I was trying to create an ActionScript to play the movie (zoomout effect of the text on the graphic) when the mouse rolled over the photo (button). But I have been having a hard time implementing this action. I am trying to follow directions according to my book but making this ActionScript has been another problem I am having. I don't know how to view code in Flash. This graphic is intended for  a website I am creating in Dreamweaver so I'm just adding the button, zoomout effect and actionscript in Flash. Is there a way to undo the current actionscript applied and try again? Do you have any tips for creating this kind of ActionScript using the Action panel? Maybe once I get the ActionScript right the movie will play as it should in Test Movie??
    Thanks for your help.
    ashmic19

  • Working on a CS4 project in CS5.5 - Flash won't let me save FLA normally (ctrl+s)

    I started working on a Flash project and I'll be moving it back and  forth between two different computers. The project was originally  started in Flash CS4. The other computer has Flash CS5.5 installed. So  when in CS5.5 I save the fla as a CS4 version FLA.
    I hit Save As... and  then from the Save As Type pull-down menu I selected CS4 Fla document and I  assumed that from then on I could just hit ctrl+s to save the project  and it would maintain the CS4 version. But that isn't quite what's  happening. Every time I hit ctrl+s a Flash Compatibility Warning pops up  and tells me that I need to use Save As... and then Save As Type again  to keep it a CS4 document.
    So basically, from what I understand, when working on a CS4 project in CS5.5 - I can't use Save. I can only use Save as...
    This is really annoying because I am accustomed to hitting ctrl+s pretty often.
    And  now EVERY TIME I wish to do a simple save, I need to hit ctrl+shift+s,  then select CS4 from the Save As Type menu, then hit save, and then  click YES when asked if to overwrite the previous file with the same  name.
    Is this a bug?

    Flash will let me Embed the FLV but not let me use it for playback.

  • Flash CS4 IDE based project and embed metadata tags

    I posted this in one of the other sub-forums before I realised this one was available.
    I am moving over to using the Flex based embed metadata tags to import assets into my Flash CS4 IDE based project. This is working very well but I have hit one small problem - how do you now create a pre-loader? I've done the usual google to look for a solution and found many Flex based solutions and tried them all out but they do not appear to work from within a CS4 IDE based project - even when tried out on a web page.
    Is there a solution to this?

    I'm doing the same thing, it's great to have the embed function, but the swf loads all embed content before anything else.  This for me makes the feature useless. I make games and game sites want everything in one swf, so making a separate swf preloader wont work for me.  Hope Adobe creates a solution for this. 
    Here are my post on the subject:
    http://forums.adobe.com/thread/499997?tstart=0
    and
    http://forums.adobe.com/thread/499994?tstart=0
    Also I submitted a feature request with Adobe, I suggest you do the same.
    good luck!

  • Migrated Flash CS4 to another computer and it won't startup now

    Using Migration Assistant on my mac I transferred all my files to another computer. All the other Adobe programs are starting up no problem (Photoshop, Illustrator, etc.) When I try to start up Flash CS4, it just freezes with the message "copying first run files.." and then it crashes.
    I don't have the install discs unfortunately (or I would try to re-install) because this was given to me by a company I work for remotely. Any thoughts on how I can fix this? Thanks!

    I am having the same problem now - everything else migrated fine (even  Illustrator 10), but CS4 crashes on opening. I have uninstalled it and re-installed it as I do have the disks. I have deleted the preferences and .plst file as suggested in other forums. Still no luck. Hopefully someone will some day reply with an answer!!

  • Flash CS4 Tween Migration

    Hi,
    I just wanted to get the thoughts of the expert here. I played around with the new tween tool in CS4, and it seems that the difference is I dont see the tween arrow anymore in the timeline; and there is an easing in the property that has been added. How this has changed from the old concept finally?
    I see this just like putting some icing on the cake, and nothing would wow me to use this tool.
    Please correct me if I am wrong, especially those of you who have utilized this tool in a different manner.
    Looking forward for an open discussions.
    Thank you
    uxk

    Hi Uxk,
    I'm actually glad that you're finding the workflow similar - because it's actually a rather massive two-cycling change behind the scenes, and we typically hear something a bit different. Here are some of the changes and benfits between old and new:
    you cannot break a new motion tween - no more “dashed arrows”
    as such, new tweens are easier to use: you directly manipulate objects on the Stage without needing to always think about keyframes. You don’t even need to add keyframes - just manipulate the object and the keyframes are inserted for you.
    granular control over each part of a tween.
    motion paths are shown right on the Stage for all tweens. Highly visual, and directly editable.
    you can use the new Motion Editor with new tweens
    as such, the Motion Editor means tweens are more powerful in general: each property and keyframe on each property is accessible and editable independently. You can tween alpha separately from rotation separately from scale (etc).
    in that Motion Editor you can edit individual properties on a graph
    you can use the new 3D model with new tweens
    you can give your tween an instance name and then give other instances that same tween at runtime
    new tweens are easy to stretch by just dragging the span in the timeline
    new tweens have new eases, which have advanced (and very cool, better, enhanced) eases
    you can create/apply custom eases that do not need to end at 100%
    you can save a tween as a preset and reuse it in that or other documents
    new tweens are easy to move now - either on the timeline (drag the tween span around), or on the stage by selecting the motion path and just moving it on the Stage (lets just say it is WAY easier than edit multiple frames).
    motion paths in general are easier, and you no longer need motion guides. The motion path for a tween is attached right to the tween.
    you can apply a new instance to an existing tween by just pasting it onto a tween to swap it out, drag a new instance from the Library, or use Swap Symbol. you can even have a tween without an instance applied to it, and all properties of that tween will be saved until you apply an instance to it.
    (From my blog post here: http://flashthusiast.com/2008/09/22/the-new-way-of-tweening-in-flash-cs4-or-new-motion-in- flash-cs4-makes-your-animations-better-faster-stronger/)
    You may want to check out the Motion Migration guide here: http://www.adobe.com/devnet/flash/articles/motion_migration_guide.html  -- this article outlines the changes between the two models.
    Some of the bigger new features to check out are: Motion Presets (pre-made and custom), the Motion Editor (it ain't small...), preset eases (these made a radical difference in how quickly I could do certain animations), and tween instances (tons of new capabilities here, and reductions in amt of scripted code you have to write). Here are some blog posts on them:
    Tween instances:
    http://flashthusiast.com/2008/12/10/flash-cs4-example-spray-brush-tween-instance-new-motio n-as3-fancy-jsfl-profit/
    http://flashthusiast.com/2008/10/12/new-motion-and-tween-instances-flash-cs4-presentation- flashcamp/
    Motion editor and custom eases:
    http://flashthusiast.com/2008/11/20/flash-cs4-modifying-and-applying-a-custom-ease-in-the- motion-editor/
    You may also want to adapt how you use F6 with tweens:
    http://flashthusiast.com/2009/01/09/flash-cs4-using-f6-with-new-motion-tweens/
    Entire Animation guide:
    http://www.adobe.com/devnet/flash/learning_guide/animation/
    Let me know if you have any questions,
    Jen.

  • Unable to import xml into my CS4 project

    Hi folks,
    I am trying to embed a 3rd party flash component into my current flash project.  As a stand alone, the component works fine but when I try and import the xml file for the component into my current flash project library, the message I get:
    " one or more files were not imported because there were problems reading them"!!!
    I have tried importing the xml file into another dummy cs4 project on another machine and again no success, so I believe there are elements within the xml file that will not work with cs4.  Below is the xml file code.  I would appreciate if anyone can spot anything wrong with this file as to why it wont import into flash.  Even try and import it yourself and see what I mean.
    Hope someone can help.
    Regards
    Volterony22
    <?xml version="1.0" encoding="UTF-8"?>
    <!--
    There are 9 positions available :
    1. TL: top-left
    2. TC: top-center
    3. TR: top-right
    4. ML: middle-left
    5. MC: middle-center
    6. MR: middle-right
    7. BL: bottom-left
    8. BC: bottom-center
    9. BR: bottom-right
    If you set randomizePositions to true, it will overwrite the values you pass for each item
    startZoom: the zoom value to start with
    endZoon: the zoom value to end with
    transitionTime: the time for the slide to reach from property A to property B
    slideShowTime: the time the slide stays on screen
    disablePauseButton: it needs to be set to true if you want to have links on the slideshow
    -->
    <!--
    NOTE: The transition time must be higher than the slideshow time for each item! (make sure the difference is at least alphaTime value)
      The reason is so the zoom effect doesn't end before the transition does.
    -->
    <kenburns width = "1000" height = "348"
    backgroundColor = "0x000000"
    backgroundTransparency = "0"
    startWith = "1"
    randomSlideshow = "true"
    loop = "true"
    randomizeImagePosition = "false"
    alphaTime = "2"
    textX = "10"
    textY = "10"
    overColor = "0x000000"
    overAlpha = "20"
    disablePauseButton = "true">
    <!--
    <item>
    <title><![CDATA[<font size="16" color="#ffffff">Sand beach in the morning</font>]]></title>
    <path>content/images/image1.jpg</path>
    <link></link>
    <target>_blank</target>
    <transitionTime>12</transitionTime>
    <slideShowTime>8</slideShowTime>
    <startZoom>80</startZoom>
    <endZoom>100</endZoom>
    <startPosition>MC</startPosition>
    <endPosition>MC</endPosition>
    </item>
    <item>
    <title></title>
    <path>content/images/image2.jpg</path>
    <link></link>
    <target>_blank</target>
    <transitionTime>25</transitionTime>
    <slideShowTime>22</slideShowTime>
    <startZoom>100</startZoom>
    <endZoom>55</endZoom>
    <startPosition>MC</startPosition>
    <endPosition>MC</endPosition>
    </item>
    <item>
    <title><![CDATA[<font size="18" color="#ffffff">Waves and wind</font>]]></title>
    <path>content/images/image3.jpg</path>
    <link></link>
    <target>_blank</target>
    <transitionTime>27</transitionTime>
    <slideShowTime>20</slideShowTime>
    <startZoom>70</startZoom>
    <endZoom>100</endZoom>
    <startPosition>TC</startPosition>
    <endPosition>BC</endPosition>
    </item>
    <item>
    <title><![CDATA[<font size="18" color="#224F91">No words needed..</font>]]></title>
    <path>content/images/image4.jpg</path>
    <link></link>
    <target>_blank</target>
    <transitionTime>12</transitionTime>
    <slideShowTime>9</slideShowTime>
    <startZoom>80</startZoom>
    <endZoom>80</endZoom>
    <startPosition>BL</startPosition>
    <endPosition>TR</endPosition>
    </item>
    <item>
    <title></title>
    <path>content/images/image5.jpg</path>
    <link></link>
    <target>_blank</target>
    <transitionTime>35</transitionTime>
    <slideShowTime>32</slideShowTime>
    <startZoom>55</startZoom>
    <endZoom>100</endZoom>
    <startPosition>BC</startPosition>
    <endPosition>TC</endPosition>
    </item>
    -->
    <item>
    <title></title>
    <path>content/images/image6.jpg</path>
    <link>http://www.flabell.com</link>
    <target>_blank</target>
    <transitionTime>10</transitionTime>
    <slideShowTime>8</slideShowTime>
    <startZoom>40</startZoom>
    <endZoom>35</endZoom>
    <startPosition>ML</startPosition>
    <endPosition>MR</endPosition>
    </item>
    <item>
    <title></title>
    <path>content/images/image7.jpg</path>
    <link></link>
    <target>_blank</target>
    <transitionTime>20</transitionTime>
    <slideShowTime>8</slideShowTime>
    <startZoom>70</startZoom>
    <endZoom>55</endZoom>
    <startPosition>MR</startPosition>
    <endPosition>ML</endPosition>
    </item>
    <item>
    <title></title>
    <path>content/images/image3.jpg</path>
    <link></link>
    <target>_blank</target>
    <transitionTime>20</transitionTime>
    <slideShowTime>8</slideShowTime>
    <startZoom>50</startZoom>
    <endZoom>60</endZoom>
    <startPosition>ML</startPosition>
    <endPosition>MR</endPosition>
    </item>
    </kenburns>

    Hi there,
    Thank you for responding.  When I say component, I have purchased a flash component from a company called www.flabell.com.  When you buy the component, you get the as, swf, assest, images, fla etc etc. 
    My goal is to embed this component into a flash project that I am working on at the moment which involves importing the assets/resources from the flabell component folder into the library of my current flash project.
    My folder structure at the moment is that I have top level folder call project.  In this folder is my actual flash project folder and the flabell component folder.  So no the html that embeds my main swf is not in the same folder as my 3 party swf - they are in two different locations.  However should this be an issue if I am importing the xml into my main project library anyway?
    Hope this info shines more light.
    Regards
    volterony22

  • Need to import from Maya 3D model in an Air-flash cs4 desktop application without loosing quality

    Hello everybody,
    We developed an air flash cs4 desktop application for the medical industry.
    Our application is too large because instead of using the 3 D model made via Maya, we use many images to simulate the rotation in order to keep the hight quality of the images.
    When we first developed the application we used C++ but we were loosing too much quality because we could not import the texture and the light effect at the same time - we could import only one of them.
    Now that we are using flash cs4 do you know if we could import in flash cs4 the 3D model which contains a hight amount of polygone with the texture and the light effect without any problem ? that could solve maybe our issu regarding the size of our application.
    Any help would be greatly appreciated.
    Best regards
    Rachel

    I would look into using Papervision 3D, a full 3D engine for Flash.  This is built by a 3rd party, but is the current standard for doing these types of things.
    You can export the Maya project out to a compatible format for use in Papervision.
    http://blog.papervision3d.org/

  • Can't create Flash Pro projects in Flash Builder

    In the most basic of Flash Pro/Flash Builder Projects, I get this error when I compile.
    My .fla is just in a folder...Please help. It will not publish at all.
    These are the contents of the flashExport.jsfl file:
    function testMovie( flaURI, projectName, clearErrors )
         var doc = fl.openDocument(flaURI);
         if(doc != null && doc.canTestMovie())
              doc.testMovie("flashbuilder-4.0", true, clearErrors);
              finishExport(projectName);
    function debugMovie( flaURI, projectName, clearErrors )
         var doc = fl.openDocument(flaURI);
         if(doc != null && doc.canTestMovie())
              doc.debugMovie("flashbuilder-4.0", true, clearErrors);
              finishExport(projectName);
    function publishMovie( flaURIArray, incremental, outputURIArray, profileURIArray, projectName )
         if(incremental)
              if(flaURIArray.length == outputURIArray.length && outputURIArray.length == profileURIArray.length )
                   for(var i = 0; i < flaURIArray.length; i++)
                        var outputURI = outputURIArray[i];
                        if(outputURI != null && outputURI.length > 0)
                             var pubProfileStr = fl.exportPublishProfileString(flaURIArray[i]);
                             if(pubProfileStr != null && pubProfileStr.length > 0)
                                  // first fix up the SWF export location                         
                                  var swfLocationURI = outputURIArray[i] + ".swf";
                                  var swfLocation = FLfile.uriToPlatformPath(swfLocationURI);
                                  var newFlashFileName = "<flashFileName>" + swfLocation + "</flashFileName>";
                                  pubProfileStr = pubProfileStr.replace(/<flashFileName>.+<\/flashFileName>/i, newFlashFileName);
                                  // fix up the HTML export location
                                  var htmlLocationURI = outputURIArray[i] + ".html";
                                  var htmlLocation = FLfile.uriToPlatformPath(htmlLocationURI);
                                  var newHtmlFileName = "<htmlFileName>" + htmlLocation + "</htmlFileName>";
                                  pubProfileStr = pubProfileStr.replace(/<htmlFileName>.+<\/htmlFileName>/i, newHtmlFileName);
                                  // fix up the Permit Debugging setting
                                  pubProfileStr = pubProfileStr.replace(/<DebuggingPermitted>.+<\/DebuggingPermitted>/i, "<DebuggingPermitted>1</DebuggingPermitted>");
                                  // fix up default flags
                                  pubProfileStr = pubProfileStr.replace(/<defaultNames>.+<\/defaultNames>/i, "<defaultNames>0</defaultNames>");
                                  pubProfileStr = pubProfileStr.replace(/<flashDefaultName>.+<\/flashDefaultName>/i, "<flashDefaultName>0</flashDefaultName>");
                                  pubProfileStr = pubProfileStr.replace(/<htmlDefaultName>.+<\/htmlDefaultName>/i, "<htmlDefaultName>0</htmlDefaultName>");
                                  // and fix up the profile name attribute, and add the xml decl header
                                  // we know the first instance of "name=" has to be the profile name - the other usages are
                                  // within the rest of the tree
                                  pubProfileStr = pubProfileStr.replace(/<flash_profile.+>/i, "<?xml version=\"1.0\"?>\n<flash_profile version=\"1.0\" name=\"FlashBuilder-Debug\">");
                                  // now save the new profile in the .settings folder
                                  FLfile.write(profileURIArray[i], pubProfileStr);
         fl.publishDocument("", "", flaURIArray, profileURIArray);
         // once the publish is complete, save out the errors and let Builder know (this will only occur when
         // projectName is non-null. so in the Test/Debug Movie case, the finishExport call here won't do anything,
         // and the one in testMovie/debugMovie will.
         finishExport(projectName);
    function finishExport(projectName)
         if (projectName == null || projectName.length == 0)
              return;
         var errorsXMLURI = fl.configURI + "ActionScript 3.0/FlashBuilderInfo.txt";
         var errorsXMLPath = FLfile.uriToPlatformPath(errorsXMLURI);
         var errorsPanel = fl.compilerErrors;
         errorsPanel.save(errorsXMLURI, false, false, true, false);
         fl.queueBridgeTalkScript('flashbuilder-4.0', "fb.loadCompilerErrors('" + errorsXMLPath + "', '" + projectName + "');");
    function toggleBreakpoint( filename, lineNumber, enable )
         fl.toggleBreakpoint(filename, lineNumber, enable);
    function getAppConfig()
         var appConfig = fl.applicationURI + "Common/Configuration/";
         // do a little reformatting to get the slashes right, plus
         // we want an OS path
         appConfig = FLfile.uriToPlatformPath(appConfig);
         fl.queueBridgeTalkScript('flashbuilder-4.0', "fb.setAppConfig('" + appConfig + "');");
    function getFLABuildPaths(projectName, targetFlaURI, flaURIArray)
         var sourcePath = new String();
         var libPath = new String();
         var script = "fb.setFLABuildPaths(" + projectName + ", " + targetFlaURI;
         for(var i = 0; i < flaURIArray.length; i++)
              var flaURI = flaURIArray[i];
              sourcePath = fl.getCompilerPath(flaURI, "source", false, true);
              libPath = fl.getCompilerPath(flaURI, "library", false, true, true);
              script += ", " + flaURI + ", " + sourcePath + ", " + libPath;
         script += ");";
         fl.queueBridgeTalkScript('flashbuilder-4.0', script);

    I have the same issue. My project is super simple. All the files are in the same directory. The doc class and the .fla have the same name. The project publishes without a hitch in Flash Professional CC. When I try to add the project to Flash Builder 4.7 it give me:
    Exception in BridgeTalk call
    Function: getFLABuildPaths
    Error message: Error. Cannot find the file ....
    I have checked the path to the .fla twice and scrutinized the spellings and they are correct. It is pointing right to the correctly named .fla, but for some reason it fails. I'll post if I find out something usefull.

  • AIR no longer works after installing Flash CS4

    I recently upgraded Flash to CS4. After installing using AIR
    has been impossible. I've uninstalled and reinstalled numerous
    times. Tried removing all references to AIR within the registry and
    reinstalling. Regardless, if I try to open an *.air installer file
    in opens the dialog asking me to choose the file to run the file
    type with. I can't find AIR anywhere in the list. I'm using Windows
    Vista.
    This is a giant problem because I've become very accustomed
    to using an AIR debugging app for my Flash development projects.
    Has anyone else had this problem, and if so were you able to
    resolve it?
    Thanks

    By when you write "click on the address book", I'll presume you mean you click on the Address Book icon in the Dock.  Did you ever move around things in the Applications folder?  In general, it's not a good idea to move Apple's applications from their normal locations.
    To verify this, click-and-hold on the Address Book icon, then when the pop-up menu appears, roll to "Options", then to "Show in Finder".  I'll guess that the folder of the resulting window is not of the Applications folder.
    To fix the problem in the short run, drag the Address Book icon out of the Dock.  Then open the Applications folder, find Address Book, and drag it to the Doc.  Eventually you'll want to delete the old applications, but in Lion that's harder to do than previously.

  • FLASH CS4 Projector won't run on Mac OS 10.9.1

    I'm producing a projector out of Flash CS4 on an iMac running 10.6.8 OS. The projector along with supporting files gets burned to a DVD. When the DVD is placed into a machine with Mac OS 10.9.1, it fails to launch. Flash Player quits unexpectedly and it throws an EXC_BAD_ACCESS (SIGBUS) KERN_PROTECTION_FAILURE exception error. I've had no problem in the past and have produced several DVDs using the same process and software. But now all of a sudden, these errors have been happening. My client is the one doing QA testing on the DVDs. I'm working on a freelance project and deadline is at my door. Any help would be greatly appreciated!!!
    The Error:
    Process:    
    Flash Player [332]
    Path:       
    /Volumes/VOLUME/Start_Here.app/Contents/MacOS/Flash Player
    Identifier: 
    com.macromedia.Flash Player.app
    Version:    
    10.0.22.87 (10.0)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [160]
    Responsible:
    Flash Player [332]
    User ID:    
    501
    Date/Time:  
    2014-02-10 12:29:32.319 -0800
    OS Version: 
    Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  3D2BEA26-21EB-69B0-826F-D2B19415B172
    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  /Volumes/VOLUME/Start_Here.app/Contents/MacOS/Flash Player
    __TEXT            
    0000000000001000-00000000005f4000 [ 6092K] r-x/rwx SM=COW  /Volumes/VOLUME/Start_Here.app/Contents/MacOS/Flash Player
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib        
    0x9ae36785 strlcpy + 53
    1   com.apple.CoreServices.CarbonCore
    0x932e8901 UTF8ToFSSpecName + 50
    2   com.apple.CoreServices.CarbonCore
    0x9328706d FSRefCreate + 423
    3   com.apple.CoreServices.CarbonCore
    0x93287510 PBGetCatalogInfoSync + 1025
    4   com.apple.CoreServices.CarbonCore
    0x93287107 FSGetCatalogInfo + 53
    5   com.apple.CoreFoundation 
    0x91ac5b5e filePathToHFSPath + 526
    6   com.apple.CoreFoundation 
    0x91ac4a27 URLPathToHFSPath + 151
    7   com.apple.CoreFoundation 
    0x91997e3d CFURLCreateStringWithFileSystemPath + 477
    8   com.apple.CoreFoundation 
    0x9199450a CFURLCopyFileSystemPath + 426
    9   com.macromedia.Flash Player.app
    0x002ab2e0 0x1000 + 2794208
    10  com.macromedia.Flash Player.app
    0x002acd44 0x1000 + 2800964
    11  com.macromedia.Flash Player.app
    0x002c68b1 main + 2001
    12  com.macromedia.Flash Player.app
    0x00002892 0x1000 + 6290
    13  com.macromedia.Flash Player.app
    0x000027b9 0x1000 + 6073
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x9598a992 kevent64 + 10
    1   libdispatch.dylib        
    0x94ebf8bd _dispatch_mgr_invoke + 238
    2   libdispatch.dylib        
    0x94ebf556 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib   
    0x9598a046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x9514cdcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib  
    0x95150cce start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib   
    0x9598a046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x9514cdcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib  
    0x95150cce start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib   
    0x9598a046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x9514cdcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib  
    0x95150cce start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib   
    0x9598a046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x9514cdcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib  
    0x95150cce start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib   
    0x9598a046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x9514cdcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib  
    0x95150cce start_wqthread + 30
    Thread 7:
    0   libsystem_kernel.dylib   
    0x95984f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x9598416c mach_msg + 68
    2   com.macromedia.Flash Player.app
    0x004ced34 main + 2133076
    3   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    4   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    5   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib   
    0x959897ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x9514dd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x9514ffa3 pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app
    0x002b835f 0x1000 + 2847583
    4   com.macromedia.Flash Player.app
    0x002cc22c main + 24908
    5   com.macromedia.Flash Player.app
    0x002b87ff 0x1000 + 2848767
    6   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    7   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    8   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib   
    0x959897ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x9514dd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x9514ffa3 pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app
    0x002b835f 0x1000 + 2847583
    4   com.macromedia.Flash Player.app
    0x002cc22c main + 24908
    5   com.macromedia.Flash Player.app
    0x002b87ff 0x1000 + 2848767
    6   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    7   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    8   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib   
    0x959897ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x9514dd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x9514ffa3 pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app
    0x002b835f 0x1000 + 2847583
    4   com.macromedia.Flash Player.app
    0x002cc22c main + 24908
    5   com.macromedia.Flash Player.app
    0x002b87ff 0x1000 + 2848767
    6   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    7   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    8   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib   
    0x959897ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x9514dd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x9514ffa3 pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app
    0x002b835f 0x1000 + 2847583
    4   com.macromedia.Flash Player.app
    0x002cc22c main + 24908
    5   com.macromedia.Flash Player.app
    0x002b87ff 0x1000 + 2848767
    6   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    7   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    8   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib   
    0x959897ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x9514dd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x9514ffa3 pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app
    0x002b835f 0x1000 + 2847583
    4   com.macromedia.Flash Player.app
    0x002cc22c main + 24908
    5   com.macromedia.Flash Player.app
    0x002b87ff 0x1000 + 2848767
    6   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    7   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    8   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib   
    0x959897ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x9514dd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x9514ffa3 pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app
    0x002b835f 0x1000 + 2847583
    4   com.macromedia.Flash Player.app
    0x002cc22c main + 24908
    5   com.macromedia.Flash Player.app
    0x002b87ff 0x1000 + 2848767
    6   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    7   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    8   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib   
    0x959897ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x9514dd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x9514ffa3 pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app
    0x002b835f 0x1000 + 2847583
    4   com.macromedia.Flash Player.app
    0x002cc22c main + 24908
    5   com.macromedia.Flash Player.app
    0x002b87ff 0x1000 + 2848767
    6   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    7   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    8   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib   
    0x959897ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x9514dd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x9514ffa3 pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app
    0x002b835f 0x1000 + 2847583
    4   com.macromedia.Flash Player.app
    0x002cc22c main + 24908
    5   com.macromedia.Flash Player.app
    0x002b87ff 0x1000 + 2848767
    6   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    7   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    8   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xedd897c3  ebx: 0x00000000  ecx: 0x00000400  edx: 0x00000005
      edi: 0xbfff9f28  esi: 0x00000000  ebp: 0xbfffa338  esp: 0xbfff9f00
       ss: 0x00000023  efl: 0x00010216  eip: 0x9ae36785   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU:
    0
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x1000 -   0x5f3fff +com.macromedia.Flash Player.app (10.0.22.87 - 10.0) <F0BA7198-5295-2DCF-61F8-02EE4A1DD571> /Volumes/VOLUME/Start_Here.app/Contents/MacOS/Flash Player
      0x707000 -   0x731fff  com.apple.audio.CoreAudioKit (1.6.6 - 1.6.6) <30C0DC77-EDFD-36B3-AB1C-A520B472A869> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x8fee6000 - 0x8ff18417  dyld (239.3) <4B280BB1-55F8-313F-86A6-8ADD644ED69E> /usr/lib/dyld
    0x90008000 - 0x900d5ff7  com.apple.backup.framework (1.5.1 - 1.5.1) <91998CDF-3547-3183-A962-D9E981C14891> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x900d6000 - 0x900d8ffe  libCVMSPluginSupport.dylib (9.0.83) <BD30BDD1-DD5B-3F31-A09B-C274EA93CD7C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x908eb000 - 0x908ecfff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x908ed000 - 0x908f2ff3  libsystem_platform.dylib (24.1.4) <875321B9-34EF-3FCC-880C-633FA05223F5> /usr/lib/system/libsystem_platform.dylib
    0x908f3000 - 0x908f3fff  libkeymgr.dylib (28) <1B097DEA-011E-3B1C-86D5-6C7FAD5C765A> /usr/lib/system/libkeymgr.dylib
    0x908f4000 - 0x90940ff7  libcups.2.dylib (372) <9A2BE8DC-37E4-3019-B665-1036FE7868EA> /usr/lib/libcups.2.dylib
    0x90941000 - 0x90941fff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90ac1000 - 0x90b36ffb  com.apple.framework.IOKit (2.0.1 - 907.1.13) <86D72735-9DFB-35C8-83F7-CE0DCF17D354> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b37000 - 0x90b3bffc  com.apple.IOSurface (91 - 91) <DECEEB72-3C7E-3C21-9237-E5AD293F8B09> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90b3c000 - 0x90b5fff7  libc++abi.dylib (48) <5367BE5A-D475-3FB4-972D-E1DC999A709A> /usr/lib/libc++abi.dylib
    0x90b60000 - 0x90f58ff3  com.apple.CoreGraphics (1.600.0 - 599.7) <DB004990-F06F-3768-AE4C-191B3C748EFC> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x90f59000 - 0x910cbffb  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <E5FFD35D-18CF-333C-BECE-39F8E47BE707> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x91180000 - 0x911d9ffa  libTIFF.dylib (1038) <691DAAFD-D72B-3BE9-AE5C-84AF86BE66CD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91440000 - 0x91442fff  libsystem_configuration.dylib (596.12) <1C31C3F6-568D-3854-AE03-A5DA2F39297E> /usr/lib/system/libsystem_configuration.dylib
    0x9197a000 - 0x91b7cff7  com.apple.CoreFoundation (6.9 - 855.11) <50F70E07-043A-3A2F-87EF-A36BA6C5C9D9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91b7d000 - 0x91bcdff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x91bce000 - 0x91bd0ffb  libRadiance.dylib (1038) <F0D3F13B-5628-3DF9-8B86-A4D914567B25> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91bd1000 - 0x91beafff  com.apple.Kerberos (3.0 - 1) <91F17EB2-C70C-359C-B09D-96B52D2A9C9F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9218d000 - 0x92196ffa  com.apple.CommonAuth (4.0 - 2.0) <6CB82D57-3C55-39E5-9036-8047DF3E6F57> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x92197000 - 0x921a0fff  com.apple.DiskArbitration (2.6 - 2.6) <6379523D-3196-370C-AE4A-8EA586E36909> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x921a1000 - 0x921a2fff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x921ab000 - 0x9229ffff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x922a0000 - 0x92665ff6  libLAPACK.dylib (1094.5) <E6286E68-3501-31AC-813E-75B3B3968011> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x926c5000 - 0x92827ff3  com.apple.CFNetwork (673.0.3 - 673.0.3) <5E0E9AE8-073B-3F2B-B0C7-A0129DE787F6> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x928f0000 - 0x92963fff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x92964000 - 0x92964ffd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x92973000 - 0x92977ff7  libmacho.dylib (845) <D8E93E59-1F80-3413-B9CF-78B848F6E873> /usr/lib/system/libmacho.dylib
    0x92978000 - 0x92979fff  libSystem.B.dylib (1197.1.1) <C58F0CC9-C1FD-3024-9358-D3359A6BBCAD> /usr/lib/libSystem.B.dylib
    0x9297a000 - 0x92b224af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x92b23000 - 0x92b40ffb  libresolv.9.dylib (54) <3EC12A7F-6BA1-3976-9F1F-6A4B76303028> /usr/lib/libresolv.9.dylib
    0x92b4b000 - 0x92b4efff  libdyld.dylib (239.3) <729B32AC-EEE2-3739-8CE3-F90838D51906> /usr/lib/system/libdyld.dylib
    0x92b9d000 - 0x92cd4ff3  com.apple.desktopservices (1.8 - 1.8) <4D853961-F911-3FE2-A7DF-3130EA1D8CEB> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x92cd5000 - 0x92e9bffb  libicucore.A.dylib (511.27) <653147E9-7326-337A-99E1-B42E4D801E53> /usr/lib/libicucore.A.dylib
    0x92e9c000 - 0x92ef8ffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x92f0d000 - 0x92f43fff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x92fca000 - 0x93010ff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x93011000 - 0x9307cff9  com.apple.Heimdal (4.0 - 2.0) <E3091095-A893-3089-8DA1-8705B3BE5BF9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9307d000 - 0x930abff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x9327f000 - 0x93580ff7  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <42E10BD1-995B-3FB4-8A6D-5FD071FB8BD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x93597000 - 0x939cbff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x939cc000 - 0x939d9ff7  com.apple.AppleFSCompression (56 - 1.0) <0C44B3E4-C4A7-3A65-9C1A-334CA3E35BDB> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x939da000 - 0x939e7fff  com.apple.Librarian (1.2 - 1) <F85681E3-3398-327B-829B-1D8078C38C22> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x93a94000 - 0x93a94fff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93a95000 - 0x93a9aff6  libcompiler_rt.dylib (35) <9924DF2E-D80B-3A21-920D-544A4597203F> /usr/lib/system/libcompiler_rt.dylib
    0x94416000 - 0x9447ffff  com.apple.SystemConfiguration (1.13 - 1.13) <542075CD-9085-3F30-B84B-DD0277D6A40E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x946bc000 - 0x94725fff  com.apple.datadetectorscore (5.0 - 354.0) <0C6C812D-3E7A-31A4-BFDE-CD3316AA35B6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x947e9000 - 0x94880ff7  com.apple.ink.framework (10.9 - 207) <EF00BCCB-B270-3F3D-9424-EF5F4BC23E25> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x94bc8000 - 0x94ebaff8  com.apple.CoreImage (9.0.54) <D7BC3E53-EF5B-3A14-8808-8D45EE505B48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x94ebc000 - 0x94ed4ffd  libdispatch.dylib (339.1.9) <6249BAE5-044F-3A7A-9CCC-03FF7E6B405B> /usr/lib/system/libdispatch.dylib
    0x94ed5000 - 0x94f13ff7  com.apple.NavigationServices (3.8 - 215) <A093AAF0-248E-313E-BA82-01F69E269895> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x94fba000 - 0x94fbafff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <DDAC0B59-F886-3AB1-98E8-C71FFF161CD4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x94fbb000 - 0x950cdffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x950ce000 - 0x950d9fff  com.apple.CrashReporterSupport (10.9 - 538) <7A5FF845-433C-33E3-99B5-F6AA5B825734> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    0x950db000 - 0x950deff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x950df000 - 0x950f7fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <630A5CCF-8FC3-379D-B0BD-41DCE1F0B624> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x950f8000 - 0x950f9fff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x950fa000 - 0x95149fff  com.apple.opencl (2.3.57 - 2.3.57) <93385E1C-00D9-31BE-9652-7F3C09484B3E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9514a000 - 0x95151ffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0x9532a000 - 0x95352ff7  libRIP.A.dylib (599.7) <461297C0-DDA9-3613-8F27-D7F1AC57208F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95353000 - 0x954ffff1  com.apple.QuartzCore (1.8 - 332.0) <07F9B77F-35A2-3D21-99FA-CD3FCE5B9C7B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95500000 - 0x95598ff7  com.apple.Metadata (10.7.0 - 800.12.2) <5E9EA0AC-EE9E-362E-9DAC-9B7D21A53A2A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x95599000 - 0x9567fff7  com.apple.coreui (2.1 - 231) <1C1AE894-C5C2-3F1C-BF29-B152ECD9BD88> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95680000 - 0x9568afff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x9568b000 - 0x95690ff7  com.apple.print.framework.Print (9.0 - 260) <A6C465F6-C5D1-353A-9F33-19B9CEDBBC2A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x95691000 - 0x956efffd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x956f0000 - 0x956f4fff  com.apple.CommonPanels (1.2.6 - 96) <E7CA63C6-CEE9-3F0A-93A7-C12C653FFB80> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x9579f000 - 0x957dcffb  libGLImage.dylib (9.0.83) <FA15FEB5-54E4-313B-8E78-A2D2E6C88FE1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x958c1000 - 0x95936ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <5C9BC698-0CC1-3F6A-9F9D-BCC3A9C3D6DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x95937000 - 0x95937fff  com.apple.Carbon (154 - 157) <6E680560-FD53-3C00-BDF7-7AFA28747DC8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x95970000 - 0x95971ffa  libsystem_sandbox.dylib (278.10) <F3C9C427-AF9F-3CE0-95FF-DC9ACA0B5760> /usr/lib/system/libsystem_sandbox.dylib
    0x95972000 - 0x9598fff4  libsystem_kernel.dylib (2422.1.72) <C5641F6C-E271-380A-A656-AE4C04345602> /usr/lib/system/libsystem_kernel.dylib
    0x95990000 - 0x9599cff7  com.apple.OpenDirectory (10.9 - 173.1.1) <2AA24814-2DC6-3E28-B71B-186B686F0F19> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x95ae1000 - 0x95aedffc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0x95aee000 - 0x95af7fff  libsystem_notify.dylib (121) <623269F5-1518-3035-A916-8AF83C972154> /usr/lib/system/libsystem_notify.dylib
    0x95af8000 - 0x95bd3ff7  com.apple.LaunchServices (572.23 - 572.23) <7E52FB5C-9ECF-3CB9-BF18-6652B8D8CDE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x95bd4000 - 0x95c4aff3  com.apple.securityfoundation (6.0 - 55122) <25149798-A37E-316F-84AB-93029EAF33D8> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x95c65000 - 0x95c68ffa  libCGXType.A.dylib (599.7) <2738FF52-4B47-31AD-B7E5-412F6AFACC2A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x95ccc000 - 0x95ff7ff6  com.apple.Foundation (6.9 - 1056) <C8AE9C03-3460-354A-A8B6-EF4955BE600D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9604e000 - 0x9605cff3  com.apple.opengl (9.0.83 - 9.0.83) <16CFFD50-217E-3E18-88AF-7F2AD980628B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9605d000 - 0x96065fff  liblaunch.dylib (842.1.4) <3798500D-4436-3AEB-B273-7F2428C33A4A> /usr/lib/system/liblaunch.dylib
    0x96066000 - 0x96097ffd  com.apple.GSS (4.0 - 2.0) <6BA01155-4DAD-30EE-B480-D224650EA010> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x96098000 - 0x960acff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <6860A0D0-3654-3B02-B2E9-C4D2637167B8> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x960ad000 - 0x960b5fff  libcopyfile.dylib (103) <1B1484BD-08B6-3BA9-94CA-A7C24B610EB3> /usr/lib/system/libcopyfile.dylib
    0x960b6000 - 0x960e1ff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0x9643d000 - 0x9648bff9  com.apple.HIServices (1.22 - 466) <30636237-408A-3552-90C1-1279348DF7CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x964f5000 - 0x964fbffb  libunwind.dylib (35.3) <099D1A6F-A1F0-3D05-BF1C-0A7BB32D39C2> /usr/lib/system/libunwind.dylib
    0x964fc000 - 0x96527ff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x96528000 - 0x9656afff  libGLU.dylib (9.0.83) <0D9BFE5A-435E-3C66-AF96-D3567B8FC87B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x97d92000 - 0x97fffff6  com.apple.security (7.0 - 55471) <5FCF76B2-92C6-3404-87D3-91B3F6E203AA> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x980d9000 - 0x980fdfff  libxpc.dylib (300.1.17) <252BC88F-A5CA-3E67-AEDB-3D7B9F4537E2> /usr/lib/system/libxpc.dylib
    0x98199000 - 0x98483fd2  com.apple.vImage (7.0 - 7.0) <256972F0-3DBC-3CE1-9EE8-B48243868729> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x98484000 - 0x98492ff7  libz.1.dylib (53) <858B4D9F-D87E-3D81-B07A-DF9632BD185F> /usr/lib/libz.1.dylib
    0x98496000 - 0x984a6ff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x984a7000 - 0x984fafff  com.apple.htmlrendering (77 - 1.1.4) <408FA30F-4FE9-3162-9FFD-677E8569C1EA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x984fb000 - 0x98505ff7  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <16E20DCD-89F4-3C8E-9DBA-EED359807038> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x9855c000 - 0x98648ff7  libxml2.2.dylib (26) <32040145-6FD6-3AD2-B98B-39F73BF9AC47> /usr/lib/libxml2.2.dylib
    0x98761000 - 0x98789fff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x9878a000 - 0x987b1fff  com.apple.CoreVideo (1.8 - 117.2) <A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9889e000 - 0x9889fffd  libunc.dylib (28) <22A126A1-DCFB-3BE5-A66B-C973F0A5D839> /usr/lib/system/libunc.dylib
    0x988a0000 - 0x988f6ff6  com.apple.ScalableUserInterface (1.0 - 1) <2C81641B-FA30-32FF-8B3E-3CB9BF53B2D9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x988f7000 - 0x9894cff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <0F1C111F-1E64-33BB-A69F-14643B3037D5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9894d000 - 0x9894effc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x989b3000 - 0x98d28ff9  com.apple.HIToolbox (2.1 - 696) <43CB31D6-4C2B-30FA-A374-DB7C5728E7AD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x98d29000 - 0x98d35ffe  libkxld.dylib (2422.1.72) <F9B35FA5-C936-3286-A055-2B0780A674AC> /usr/lib/system/libkxld.dylib
    0x98d36000 - 0x98d60fff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x98d61000 - 0x98d63fff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x98db3000 - 0x98db7ffa  libcache.dylib (62) <9730D7F2-D226-3F30-8D26-BF598CB781F6> /usr/lib/system/libcache.dylib
    0x98db8000 - 0x98df5ff7  libauto.dylib (185.5) <CD008E66-4A0C-35F5-8D72-80D76A716A03> /usr/lib/libauto.dylib
    0x98df6000 - 0x98e27ffa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x98e8c000 - 0x98e94ffe  libGFXShared.dylib (9.0.83) <35644AAA-B1E7-367C-90C0-378024F8A46A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x98e95000 - 0x98e99fff  libheimdal-asn1.dylib (323.12) <9EA2A221-301B-3B9A-BBF2-38134145B5A8> /usr/lib/libheimdal-asn1.dylib
    0x98e9c000 - 0x98efdff7  com.apple.Symbolication (1.4 - 129) <E5948C08-6ADF-3D86-9134-6AE49CF1DA0F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x98efe000 - 0x98efffff  libDiagnosticMessagesClient.dylib (100) <B936B1D4-90BB-395D-8EA9-E1237608E7D0> /usr/lib/libDiagnosticMessagesClient.dylib
    0x98f00000 - 0x98f51ff1  libstdc++.6.dylib (60) <354F284B-2343-3810-9CA2-E28038824F6E> /usr/lib/libstdc++.6.dylib
    0x98f82000 - 0x98fbeff4  com.apple.RemoteViewServices (2.0 - 94) <BEEE6ADF-7DA3-3D68-BCB0-9863BE1A1F46> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x98fbf000 - 0x98fcefff  libGL.dylib (9.0.83) <E76D1F2A-D98B-3464-AD0B-FC1EBBADF027> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x98fcf000 - 0x98fe1fff  libbsm.0.dylib (33) <1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450> /usr/lib/libbsm.0.dylib
    0x9937f000 - 0x9937fffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <8A37963C-DF6F-3DFF-94E9-407DC5DFEDA9> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x99380000 - 0x993acff7  com.apple.DictionaryServices (1.2 - 208) <33873336-BECD-3F62-A315-C45F24C1818C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x99643000 - 0x9965eff6  libPng.dylib (1038) <F39168D4-ABEB-3C2D-A763-B9D3E1EF43BC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x99666000 - 0x99702fff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x99703000 - 0x99706ff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x99707000 - 0x99790fff  com.apple.CoreSymbolication (3.0 - 141) <178DDF5C-B6DA-39BD-84F5-FD3FA7E93BF8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x99791000 - 0x9a3acff3  com.apple.AppKit (6.9 - 1265) <AE258D94-0272-394F-BBB7-9B5C165A4A78> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9a3ad000 - 0x9a503ff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x9a504000 - 0x9a508ffe  libCoreVMClient.dylib (58.1) <0EB8FFD7-AFED-3A63-810E-29629831D43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x9a509000 - 0x9a509fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9a831000 - 0x9a849ff7  libsystem_malloc.dylib (23.1.10) <69F485C9-B3E7-3E36-A06C-D7DFD29D22E1> /usr/lib/system/libsystem_malloc.dylib
    0x9a84a000 - 0x9a956fff  com.apple.ImageIO.framework (3.3.0 - 1038) <0B4A6607-9FBC-3A6C-984A-0542DE8385FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x9a957000 - 0x9a971ff7  com.apple.GenerationalStorage (2.0 - 160.2) <8755F7F1-2402-387C-A32A-2270E7D680C8> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x9a972000 - 0x9a97dff6  com.apple.NetAuth (5.0 - 5.0) <3B2E9615-EE12-38FC-BDCF-09529FF9464B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9a97e000 - 0x9a999ff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x9a9a1000 - 0x9aa32fff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x9ad71000 - 0x9ae34ff1  com.apple.CoreText (352.0 - 367.15) <746AD442-F7B4-3273-A36D-C7103D26F727> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x9ae35000 - 0x9aec7ffe  libsystem_c.dylib (997.1.1) <D06FD754-8CE3-3EB7-BE05-2EF939BBE05F> /usr/lib/system/libsystem_c.dylib
    0x9aed2000 - 0x9afc2ffb  libiconv.2.dylib (41) <848FEBA7-2E3E-3ECB-BD59-007F32468787> /usr/lib/libiconv.2.dylib
    0x9afc3000 - 0x9b227fff  com.apple.CoreData (107 - 481) <F699EC21-57D9-3AE6-A17B-C1D1092780BD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9b228000 - 0x9b236ff7  com.apple.Sharing (132.2 - 132.2) <87DBFC7A-9689-3B8E-AD16-5A9DFF9DE625> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x9b237000 - 0x9b253fff  libCRFSuite.dylib (34) <FFF76EBA-DF35-3A5F-857F-3F4B1C9F4C77> /usr/lib/libCRFSuite.dylib
    0x9b257000 - 0x9b25eff2  com.apple.NetFS (6.0 - 4.0) <915AA303-C02B-3B0C-8208-D8AAA4350DB4> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9b25f000 - 0x9b29eff7  com.apple.bom (12.0 - 192) <50F9D23C-9C9A-38BF-B4E2-66D93BE2A174> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9b306000 - 0x9b30affc  libpam.2.dylib (20) <50623D44-795F-3E28-AA85-23E0E7E2AE0E> /usr/lib/libpam.2.dylib
    0x9b30b000 - 0x9b314fff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x9b3b2000 - 0x9b3fafff  com.apple.PerformanceAnalysis (1.47 - 47) <16935C0F-7F9F-316E-9D46-11973DE0904A> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x9b3fb000 - 0x9b4cbfef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x9b4cc000 - 0x9b4dafff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0x9b4db000 - 0x9b4edfff  libsystem_asl.dylib (217.1.4) <51EB17C9-9F5B-39F3-B6CD-8EF238B05B89> /usr/lib/system/libsystem_asl.dylib
    0x9b58f000 - 0x9b68dfff  libJP2.dylib (1038) <EE0B9985-625D-39E6-B425-03FB75BA2594> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9bc25000 - 0x9bc49fff  libJPEG.dylib (1038) <212B0986-9227-397C-9493-BCB190EC020E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9bc4a000 - 0x9bc7aff7  com.apple.CoreServicesInternal (184.8 - 184.8) <88528205-9452-3EEC-BB27-DAAA7EC81E04> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x9bce3000 - 0x9bcf6fff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x9bcf7000 - 0x9bcfeffe  com.apple.agl (3.2.3 - AGL-3.2.3) <E26A1D2C-596E-31F0-8E70-FC381874F8DA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9bd01000 - 0x9bd09fff  libsystem_dnssd.dylib (522.1.11) <1C015806-B971-34F9-B162-3DF7897351D0> /usr/lib/system/libsystem_dnssd.dylib
    0x9bd0a000 - 0x9bd15ffb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x9bd16000 - 0x9bd16fff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x9bd17000 - 0x9bf93ff7  com.apple.QuickTime (7.7.3 - 2826.0.1) <42542002-DCFF-3675-B919-440EC5057D56> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9bf94000 - 0x9bfb0ff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9bfb7000 - 0x9c063ffb  libvMisc.dylib (423.32) <43873EFF-FB43-3301-BEE8-F2C3A046D7A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x9c064000 - 0x9c066fff  com.apple.securityhi (9.0 - 55005) <51765C73-80D1-33E3-9589-3E88380CE007> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x9c067000 - 0x9c06fff7  libCGCMS.A.dylib (599.7) <A7404924-9A2B-3324-A934-BD08953E7098> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
    0x9c12d000 - 0x9c131ffa  libGIF.dylib (1038) <5CEB4EDF-B0B6-33A6-BDDE-8C0D3226FA72> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9c132000 - 0x9c13bfff  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <CF8E5706-F744-3139-8A51-D52BF055D19F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x9c13c000 - 0x9c191fff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x9c2a5000 - 0x9c325ff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <1227DF22-E2DA-3764-A1CA-10CC0CEBE377> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    External Modification Summary:
      Calls made by other processes targeting this process:
    task_for_pid: 1
    thread_create: 0
    thread_set_state: 0
      Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
      Calls made by all processes on this machine:
    task_for_pid: 155
    thread_create: 0
    thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=139.0M resident=46.6M(34%) swapped_out_or_unallocated=92.3M(66%)
    Writable regions: Total=85.3M written=2272K(3%) resident=2832K(3%) swapped_out=0K(0%) unallocated=82.5M(97%)
    REGION TYPE                 
    VIRTUAL
    ===========                 
    =======
    CG backing stores              
    180K
    CG shared images               
    172K
    Kernel Alloc Once                
    4K
    MALLOC                        
    51.7M
    MALLOC (admin)                  
    48K
    Memory Tag 242                  
    12K
    Memory Tag 249                 
    156K
    Stack                         
    71.2M
    VM_ALLOCATE                   
    32.4M
    __DATA                        
    14.6M
    __IMAGE                        
    528K
    __IMPORT                         
    8K
    __LINKEDIT                    
    43.1M
    __OBJC                        
    1792K
    __PAGEZERO                       
    4K
    __TEXT                        
    95.8M
    __UNICODE                      
    544K
    mapped file                  
    157.1M
    shared memory                    
    4K
    ===========                 
    =======
    TOTAL                        
    469.3M

    The Projector along with supporting files get burned in to a dvd from an .toast file, flash player quits unexpectedly in mac osx 10.9 and the same works fine with all previous versions of mac osx. Please find the below error message displayed
    Process:         Flash Player [82598]
    Path:            /Volumes/VOLUME/Learning Stars Digibook 1.app/Contents/MacOS/Flash Player
    Identifier:      com.macromedia.Flash Player.app
    Version:         10.1.52.14 (10.1)
    Code Type:       X86 (Native)
    Parent Process:  launchd [1970]
    Responsible:     Flash Player [82598]
    User ID:         502
    Date/Time:       2014-03-04 11:24:49.862 +0530
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  D91EDEA5-A44E-E604-4F0A-B66399043F54
    Sleep/Wake UUID: 3D1F1CE2-FC9E-461F-AAE9-A3D182BD5ED0
    Crashed Thread:  0 Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000008
    VM Regions Near 0x8:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Volumes/VOLUME/Learning Stars Digibook 1.app/Contents/MacOS/Flash Player
    __TEXT 0000000000001000-000000000085f000 [ 8568K] r-x/rwx SM=COW  /Volumes/VOLUME/Learning Stars Digibook 1.app/Contents/MacOS/Flash Player
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0 com.macromedia.Flash Player.app     0x00425034 main + 226004
    1 libobjc.A.dylib                  0x975bf2af -[NSObject performSelector:withObject:] + 70
    2 com.apple.AppKit                       0x9079cb9a forwardMethod + 142
    3 com.apple.AppKit                       0x907c380b -[NSResponder mouseMoved:] + 23
    4 libobjc.A.dylib                  0x975bf2af -[NSObject performSelector:withObject:] + 70
    5 com.apple.AppKit                       0x9079cb9a forwardMethod + 142
    6 com.apple.AppKit                       0x907c380b -[NSResponder mouseMoved:] + 23
    7 com.apple.AppKit                       0x9079e41e -[NSWindow sendEvent:] + 1154
    8 com.macromedia.Flash Player.app     0x00422e04 main + 217252
    9 com.apple.AppKit                       0x9073c1ed -[NSApplication sendEvent:] + 1282
    10 com.apple.AppKit                      0x905813bc -[NSApplication run] + 823
    11 com.apple.AppKit                      0x9056a1f8 NSApplicationMain + 1165
    12 com.macromedia.Flash Player.app    0x00002802 0x1000 + 6146
    13 com.macromedia.Flash Player.app    0x00002729 0x1000 + 5929
    Thread 1:
    0 libsystem_kernel.dylib               0x9c032046 __workq_kernreturn + 10
    1 libsystem_pthread.dylib             0x9718fdcf _pthread_wqthread + 372
    2 libsystem_pthread.dylib             0x97193cce start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0 libsystem_kernel.dylib               0x9c032992 kevent64 + 10
    1 libdispatch.dylib              0x921bd8bd _dispatch_mgr_invoke + 238
    2 libdispatch.dylib              0x921bd556 _dispatch_mgr_thread + 52
    Thread 3:
    0 libsystem_kernel.dylib               0x9c032046 __workq_kernreturn + 10
    1 libsystem_pthread.dylib             0x9718fdcf _pthread_wqthread + 372
    2 libsystem_pthread.dylib             0x97193cce start_wqthread + 30
    Thread 4:
    0 libsystem_kernel.dylib               0x9c032046 __workq_kernreturn + 10
    1 libsystem_pthread.dylib             0x9718fdcf _pthread_wqthread + 372
    2 libsystem_pthread.dylib             0x97193cce start_wqthread + 30
    Thread 5:
    0 libsystem_kernel.dylib               0x9c0317ca __psynch_cvwait + 10
    1 libsystem_pthread.dylib             0x97190d8a _pthread_cond_wait + 837
    2 libsystem_pthread.dylib             0x97192fa3 pthread_cond_wait + 48
    3 com.macromedia.Flash Player.app     0x003cdb6f 0x1000 + 3984239
    4 com.macromedia.Flash Player.app     0x00018f2c 0x1000 + 98092
    5 com.macromedia.Flash Player.app     0x003cdc4c 0x1000 + 3984460
    6 com.macromedia.Flash Player.app     0x003cdc7a 0x1000 + 3984506
    7 com.macromedia.Flash Player.app     0x003cdd5b 0x1000 + 3984731
    8 libsystem_pthread.dylib             0x9718e5fb _pthread_body + 144
    9 libsystem_pthread.dylib             0x9718e485 _pthread_start + 130
    10 libsystem_pthread.dylib           0x97193cf2 thread_start + 34
    Thread 6:
    0 libsystem_kernel.dylib               0x9c0317ca __psynch_cvwait + 10
    1 libsystem_pthread.dylib             0x97190d8a _pthread_cond_wait + 837
    2 libsystem_pthread.dylib             0x97192fa3 pthread_cond_wait + 48
    3 com.macromedia.Flash Player.app     0x003cdb6f 0x1000 + 3984239
    4 com.macromedia.Flash Player.app     0x00018f2c 0x1000 + 98092
    5 com.macromedia.Flash Player.app     0x003cdc4c 0x1000 + 3984460
    6 com.macromedia.Flash Player.app     0x003cdc7a 0x1000 + 3984506
    7   com.macromedia.Flash Player.app     0x003cdd5b 0x1000 + 3984731
    8 libsystem_pthread.dylib             0x9718e5fb _pthread_body + 144
    9 libsystem_pthread.dylib             0x9718e485 _pthread_start + 130
    10 libsystem_pthread.dylib           0x97193cf2 thread_start + 34
    Thread 7:
    0 libsystem_kernel.dylib               0x9c0317ca __psynch_cvwait + 10
    1 libsystem_pthread.dylib             0x97190d8a _pthread_cond_wait + 837
    2 libsystem_pthread.dylib             0x97191042 pthread_cond_timedwait_relative_np + 47
    3 com.macromedia.Flash Player.app     0x003cdb38 0x1000 + 3984184
    4 com.macromedia.Flash Player.app     0x002dc988 0x1000 + 2996616
    5 com.macromedia.Flash Player.app     0x003cdc4c 0x1000 + 3984460
    6 com.macromedia.Flash Player.app     0x003cdc7a 0x1000 + 3984506
    7 com.macromedia.Flash Player.app     0x003cdd5b 0x1000 + 3984731
    8 libsystem_pthread.dylib             0x9718e5fb _pthread_body + 144
    9 libsystem_pthread.dylib             0x9718e485 _pthread_start + 130
    10 libsystem_pthread.dylib           0x97193cf2 thread_start + 34
    Thread 8:
    0 libsystem_kernel.dylib               0x9c0317ca __psynch_cvwait + 10
    1 libsystem_pthread.dylib             0x97190d8a _pthread_cond_wait + 837
    2 libsystem_pthread.dylib             0x97191042 pthread_cond_timedwait_relative_np + 47
    3 com.macromedia.Flash Player.app     0x003cdb38 0x1000 + 3984184
    4 com.macromedia.Flash Player.app     0x001b99be 0x1000 + 1804734
    5 com.macromedia.Flash Player.app     0x003cdc4c 0x1000 + 3984460
    6 com.macromedia.Flash Player.app     0x003cdc7a 0x1000 + 3984506
    7 com.macromedia.Flash Player.app     0x003cdd5b 0x1000 + 3984731
    8 libsystem_pthread.dylib             0x9718e5fb _pthread_body + 144
    9 libsystem_pthread.dylib             0x9718e485 _pthread_start + 130
    10 libsystem_pthread.dylib           0x97193cf2 thread_start + 34
    Thread 9:
    0 libsystem_kernel.dylib               0x9c02cf7a mach_msg_trap + 10
    1 libsystem_kernel.dylib               0x9c02c16c mach_msg + 68
    2 com.apple.CoreFoundation                  0x93f5df69 __CFRunLoopServiceMachPort + 169
    3 com.apple.CoreFoundation                  0x93f5d541 __CFRunLoopRun + 1393
    4 com.apple.CoreFoundation                  0x93f5cd5a CFRunLoopRunSpecific + 394
    5 com.apple.CoreFoundation                  0x93f5cbbb CFRunLoopRunInMode + 123
    6 com.apple.AppKit                       0x90738f18 _NSEventThread + 283
    7 libsystem_pthread.dylib             0x9718e5fb _pthread_body + 144
    8 libsystem_pthread.dylib             0x9718e485 _pthread_start + 130
    9 libsystem_pthread.dylib             0x97193cf2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000  ebx: 0x00aab260  ecx: 0xbffff5f0  edx: 0x00aab260
    edi: 0x00ada530  esi: 0x910c38d5  ebp: 0xbffff678  esp: 0xbffff5d0
    ss: 0x00000023  efl: 0x00010282  eip: 0x00425034   cs: 0x0000001b
    ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
    cr2: 0x00000008
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
    0x1000 -   0x85efd3 +com.macromedia.Flash Player.app (10.1.52.14 - 10.1) <A242A6CE-9B6A-6F7F-1D92-AE8DF6D7EC32> /Volumes/VOLUME/Learning Stars Digibook 1.app/Contents/MacOS/Flash Player
    0xf16000 -   0xf1affd  com.apple.audio.AppleHDAHALPlugIn (2.5.3 - 2.5.3fc1) <DAF7D11D-7AC8-38EA-AE89-903A9C59E1BB> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0xf4e000 -   0xf73ff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0xfb3000 -   0xfbeffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x8feec000 - 0x8ff1e417  dyld (239.3) <4B280BB1-55F8-313F-86A6-8ADD644ED69E> /usr/lib/dyld
    0x90008000 - 0x90032ff7  libsandbox.1.dylib (278.10) <28813216-B652-3E4D-B0D5-BE49B385C6EC> /usr/lib/libsandbox.1.dylib
    0x90033000 - 0x9006bff7  com.apple.MediaKit (15 - 709) <82E0F8C0-313C-379C-9994-4D21587D0C0C> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x90118000 - 0x90120ff7  libCGCMS.A.dylib (599.7) <A7404924-9A2B-3324-A934-BD08953E7098> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
    0x90121000 - 0x901a1ff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <1227DF22-E2DA-3764-A1CA-10CC0CEBE377> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x901a2000 - 0x90567ff6  libLAPACK.dylib (1094.5) <E6286E68-3501-31AC-813E-75B3B3968011> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x90568000 - 0x91183ff3  com.apple.AppKit (6.9 - 1265) <AE258D94-0272-394F-BBB7-9B5C165A4A78> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91184000 - 0x911d9ff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <0F1C111F-1E64-33BB-A69F-14643B3037D5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9128f000 - 0x913e5ff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x913e6000 - 0x913eefff  libsystem_dnssd.dylib (522.1.11) <1C015806-B971-34F9-B162-3DF7897351D0> /usr/lib/system/libsystem_dnssd.dylib
    0x9141b000 - 0x91425ff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <D6735614-EF4B-389F-BF99-7D8416A504BA> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x91426000 - 0x91426fff  com.apple.quartzframework (1.5 - 1.5) <5BB3FDD4-4727-3D1B-9582-C96F36DA1542> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x91427000 - 0x91428ffc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x91429000 - 0x91451ff7  libRIP.A.dylib (599.7) <461297C0-DDA9-3613-8F27-D7F1AC57208F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91452000 - 0x9145effc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0x9145f000 - 0x9148aff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x914bc000 - 0x914e7ff7  libpcap.A.dylib (42) <66FBEAD3-FE91-3A89-8706-FB95229068AC> /usr/lib/libpcap.A.dylib
    0x914e8000 - 0x914e8fff  libkeymgr.dylib (28) <1B097DEA-011E-3B1C-86D5-6C7FAD5C765A> /usr/lib/system/libkeymgr.dylib
    0x91caa000 - 0x91ce9ff7  com.apple.bom (12.0 - 192) <50F9D23C-9C9A-38BF-B4E2-66D93BE2A174> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91cea000 - 0x91d73fff  com.apple.CoreSymbolication (3.0 - 141) <178DDF5C-B6DA-39BD-84F5-FD3FA7E93BF8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x91d74000 - 0x91d81fff  com.apple.Librarian (1.2 - 1) <F85681E3-3398-327B-829B-1D8078C38C22> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x91d82000 - 0x91e52fef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x91e53000 - 0x91e5dfff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x91e5e000 - 0x920cbff6  com.apple.security (7.0 - 55471) <5FCF76B2-92C6-3404-87D3-91B3F6E203AA> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x920cc000 - 0x921b8ff7  libxml2.2.dylib (26) <32040145-6FD6-3AD2-B98B-39F73BF9AC47> /usr/lib/libxml2.2.dylib
    0x921b9000 - 0x921b9fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x921ba000 - 0x921d2ffd  libdispatch.dylib (339.1.9) <6249BAE5-044F-3A7A-9CCC-03FF7E6B405B> /usr/lib/system/libdispatch.dylib
    0x921d3000 - 0x92519ffb  com.apple.MediaToolbox (1.0 - 1273.29) <60F62850-70EC-38E8-9C7F-81204CF9C382> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x92623000 - 0x92698ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <5C9BC698-0CC1-3F6A-9F9D-BCC3A9C3D6DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x92699000 - 0x9272bffe  libsystem_c.dylib (997.1.1) <D06FD754-8CE3-3EB7-BE05-2EF939BBE05F> /usr/lib/system/libsystem_c.dylib
    0x9272c000 - 0x927a1ffb  com.apple.framework.IOKit (2.0.1 - 907.1.13) <86D72735-9DFB-35C8-83F7-CE0DCF17D354> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x927a2000 - 0x927a2ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <8A37963C-DF6F-3DFF-94E9-407DC5DFEDA9> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x927a3000 - 0x9280cfff  com.apple.datadetectorscore (5.0 - 354.0) <A5559FE6-7A00-383D-8665-C0D622409D85> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x9280d000 - 0x928acff7  libCoreStorage.dylib (380) <55467C87-E1A3-3057-B428-9BCEFD39E36D> /usr/lib/libCoreStorage.dylib
    0x92bca000 - 0x92bedff7  libc++abi.dylib (48) <5367BE5A-D475-3FB4-972D-E1DC999A709A> /usr/lib/libc++abi.dylib
    0x92bee000 - 0x92bfbff7  com.apple.AppleFSCompression (56 - 1.0) <0C44B3E4-C4A7-3A65-9C1A-334CA3E35BDB> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x92c05000 - 0x92c08fff  libdyld.dylib (239.3) <729B32AC-EEE2-3739-8CE3-F90838D51906> /usr/lib/system/libdyld.dylib
    0x92c09000 - 0x930b0fe7  com.apple.CoreAUC (6.22.08 - 6.22.08) <3F9E2986-8FF9-3339-A0C8-DC1186C4A5EC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x930b1000 - 0x931a5fff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x931a6000 - 0x931a8fff  libsystem_configuration.dylib (596.12) <1C31C3F6-568D-3854-AE03-A5DA2F39297E> /usr/lib/system/libsystem_configuration.dylib
    0x931a9000 - 0x93355ff1  com.apple.QuartzCore (1.8 - 332.0) <07F9B77F-35A2-3D21-99FA-CD3FCE5B9C7B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9335f000 - 0x93651ff8  com.apple.CoreImage (9.0.54) <D7BC3E53-EF5B-3A14-8808-8D45EE505B48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x93652000 - 0x936a2ff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x936a5000 - 0x936caff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <FCF52905-85B1-375C-B0AA-B8251B614D2D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x936cb000 - 0x936f3fff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x936f4000 - 0x93750ffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x93751000 - 0x93753ffb  libRadiance.dylib (1038) <F0D3F13B-5628-3DF9-8B86-A4D914567B25> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x93754000 - 0x937e5fff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x937e6000 - 0x93a4afff  com.apple.CoreData (107 - 481) <F699EC21-57D9-3AE6-A17B-C1D1092780BD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93b2c000 - 0x93b64fff  com.apple.LDAPFramework (2.4.28 - 194.5) <0C42A932-15E8-3CD1-AC35-1DF7D41B25A2> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x93b65000 - 0x93edaff9  com.apple.HIToolbox (2.1 - 696) <43CB31D6-4C2B-30FA-A374-DB7C5728E7AD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x93edb000 - 0x93ee6ffb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x93ee7000 - 0x940e9ff7  com.apple.CoreFoundation (6.9 - 855.11) <50F70E07-043A-3A2F-87EF-A36BA6C5C9D9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9446f000 - 0x9459cff9  com.apple.avfoundation (2.0 - 651.12) <1AB88210-F2E6-3318-ACB2-41ED5AE6A0EF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x9459d000 - 0x94610fff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x94611000 - 0x94612fff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x94613000 - 0x946b1ff7  com.apple.PDFKit (2.9 - 2.9) <0792168D-320D-33EF-AE24-6CDCB8C1990A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x946b2000 - 0x946b3fff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x946b4000 - 0x946c8ff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <6860A0D0-3654-3B02-B2E9-C4D2637167B8> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x946c9000 - 0x946cdfff  com.apple.CommonPanels (1.2.6 - 96) <E7CA63C6-CEE9-3F0A-93A7-C12C653FFB80> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x946ce000 - 0x94700ffb  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <30CF0E7B-3511-318F-AC31-06C29EDC111E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x94820000 - 0x9483fff9  com.apple.framework.Apple80211 (9.0 - 900.47) <68E399FF-AB98-378D-94AC-D0869A72344F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x94840000 - 0x948a7ffc  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <8DADD7D2-AB98-34ED-8D6F-335338502CBE> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x948a8000 - 0x948aafff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x948ab000 - 0x94a1bfff  com.apple.QTKit (7.7.3 - 2826.0.1) <2C936219-2C31-3912-8CD3-42A16844AFE2> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94a1f000 - 0x94a23ffa  libGIF.dylib (1038) <5CEB4EDF-B0B6-33A6-BDDE-8C0D3226FA72> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94a30000 - 0x94a37ffe  com.apple.agl (3.2.3 - AGL-3.2.3) <E26A1D2C-596E-31F0-8E70-FC381874F8DA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x94a38000 - 0x94a38fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <DDAC0B59-F886-3AB1-98E8-C71FFF161CD4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x94a39000 - 0x94a67ff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x94a68000 - 0x94a93ff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0x94a94000 - 0x94aafff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x94ab0000 - 0x94c22ffb  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <E5FFD35D-18CF-333C-BECE-39F8E47BE707> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94c42000 - 0x94d2dff4  com.apple.DiskImagesFramework (10.9 - 371.1) <FC13BD5A-0FB7-35D5-A8DF-0510CFA996FE> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x94d2e000 - 0x94d2effd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x94d2f000 - 0x94d3dfff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0x94d3e000 - 0x94d49fff  libcsfde.dylib (380) <C9E61AFB-1A9D-324B-9827-06B182CDD7B0> /usr/lib/libcsfde.dylib
    0x94d4a000 - 0x952b7fff  com.apple.QuartzComposer (5.1 - 316) <4FC30662-E3CC-3AE5-88CE-7B271B59EFF0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x952b8000 - 0x952f6ff7  com.apple.NavigationServices (3.8 - 215) <A093AAF0-248E-313E-BA82-01F69E269895> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x952f7000 - 0x95622ff6  com.apple.Foundation (6.9 - 1056) <C8AE9C03-3460-354A-A8B6-EF4955BE600D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95623000 - 0x9562bffe  libGFXShared.dylib (9.0.83) <35644AAA-B1E7-367C-90C0-378024F8A46A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x9565c000 - 0x9565cfff  com.apple.Carbon (154 - 157) <C49AD4A1-8DE3-357D-AEF3-D6CD39EA91EF> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9565d000 - 0x95660ffa  libCGXType.A.dylib (599.7) <2738FF52-4B47-31AD-B7E5-412F6AFACC2A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x95661000 - 0x95987ffd  com.apple.JavaScriptCore (9537 - 9537.73.10) <B5331B86-DEBC-387A-8F3E-5B9FC28E8055> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95988000 - 0x959a0ff7  libsystem_malloc.dylib (23.1.10) <69F485C9-B3E7-3E36-A06C-D7DFD29D22E1> /usr/lib/system/libsystem_malloc.dylib
    0x959a1000 - 0x959f0fff  com.apple.opencl (2.3.57 - 2.3.57) <93385E1C-00D9-31BE-9652-7F3C09484B3E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x959f1000 - 0x959f9fff  liblaunch.dylib (842.1.4) <3798500D-4436-3AEB-B273-7F2428C33A4A> /usr/lib/system/liblaunch.dylib
    0x95c70000 - 0x95c7aff3  com.apple.DisplayServicesFW (2.8 - 360.8.14) <B14B15EC-41BA-37F6-B696-8BBA0E325C0C> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x95c7b000 - 0x95c7bfff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x95c7e000 - 0x95cafffa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x95cb0000 - 0x95cb2fff  com.apple.securityhi (9.0 - 55005) <51765C73-80D1-33E3-9589-3E88380CE007> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x95e45000 - 0x95e5aff3  com.apple.AppContainer (3.0 - 1) <B53ED2AD-9B19-316F-B7B9-80A3A94AC1D3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x960c1000 - 0x960c4ff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x960c5000 - 0x960dcff4  com.apple.CoreMediaAuthoring (2.2 - 947) <BF917B77-0935-3F56-A2B9-E62A58A713B8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x960eb000 - 0x960ebfff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x960ec000 - 0x960fcff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x960fd000 - 0x96100ffb  libutil.dylib (34) <B496031E-E763-3DEB-84D2-85C0F3DF2012> /usr/lib/libutil.dylib
    0x96101000 - 0x961dcff7  com.apple.LaunchServices (572.23 - 572.23) <7E52FB5C-9ECF-3CB9-BF18-6652B8D8CDE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x96b04000 - 0x96be7ff7  libcrypto.0.9.8.dylib (50) <B367D3A3-FC1F-326C-92EC-CAD81666524D> /usr/lib/libcrypto.0.9.8.dylib
    0x96be8000 - 0x96be9fff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x96cc9000 - 0x96ddbffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x96ddc000 - 0x96de1ff3  libsystem_platform.dylib (24.1.4) <875321B9-34EF-3FCC-880C-633FA05223F5> /usr/lib/system/libsystem_platform.dylib
    0x96de2000 - 0x96e30ff9  com.apple.HIServices (1.22 - 466) <30636237-408A-3552-90C1-1279348DF7CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x96e31000 - 0x96e35ffc  libpam.2.dylib (20) <50623D44-795F-3E28-AA85-23E0E7E2AE0E> /usr/lib/libpam.2.dylib
    0x96e9d000 - 0x96e9dfff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96e9e000 - 0x96ea6fff  libcopyfile.dylib (103) <1B1484BD-08B6-3BA9-94CA-A7C24B610EB3> /usr/lib/system/libcopyfile.dylib
    0x96ea7000 - 0x96eb9fff  libsystem_asl.dylib (217.1.4) <51EB17C9-9F5B-39F3-B6CD-8EF238B05B89> /usr/lib/system/libsystem_asl.dylib
    0x96ebf000 - 0x96ec6fff  libMatch.1.dylib (19) <3B3680FC-2AC9-37CC-B262-5ACE2CF8939A> /usr/lib/libMatch.1.dylib
    0x96ec9000 - 0x96fb9ffb  libiconv.2.dylib (41) <848FEBA7-2E3E-3ECB-BD59-007F32468787> /usr/lib/libiconv.2.dylib
    0x96fba000 - 0x9701bff7  com.apple.Symbolication (1.4 - 129) <E5948C08-6ADF-3D86-9134-6AE49CF1DA0F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x9701c000 - 0x97102ff7  com.apple.coreui (2.1 - 231) <1C1AE894-C5C2-3F1C-BF29-B152ECD9BD88> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x97103000 - 0x97105ff2  com.apple.EFILogin (2.0 - 2) <BC558029-74C0-3A69-B376-8F4CBF8C338F> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x97106000 - 0x9710cff7  com.apple.AOSNotification (1.7.0 - 760.3) <63F7E7F8-6FA3-38D3-9907-CDF360CA9354> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification
    0x9718d000 - 0x97194ffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0x97195000 - 0x971ffff7  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <13EE6C12-B981-3132-864A-D493B91AE37E> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x97200000 - 0x9720eff7  libz.1.dylib (53) <858B4D9F-D87E-3D81-B07A-DF9632BD185F> /usr/lib/libz.1.dylib
    0x9720f000 - 0x9720ffff  libodfde.dylib (20) <98FC02AE-C596-3ED5-80D1-C502FF6115ED> /usr/lib/libodfde.dylib
    0x9723a000 - 0x9723bffd  libunc.dylib (28) <22A126A1-DCFB-3BE5-A66B-C973F0A5D839> /usr/lib/system/libunc.dylib
    0x97246000 - 0x9728efff  com.apple.PerformanceAnalysis (1.47 - 47) <16935C0F-7F9F-316E-9D46-11973DE0904A> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x9728f000 - 0x97299ff7  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <16E20DCD-89F4-3C8E-9DBA-EED359807038> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x9729a000 - 0x972ebff1  libstdc++.6.dylib (60) <354F284B-2343-3810-9CA2-E28038824F6E> /usr/lib/libstdc++.6.dylib
    0x972ec000 - 0x973b9ff7  com.apple.backup.framework (1.5.1 - 1.5.1) <91998CDF-3547-3183-A962-D9E981C14891> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x973ba000 - 0x97400fff  libcurl.4.dylib (78) <EC84399F-5EA8-321B-B122-99730CC557C8> /usr/lib/libcurl.4.dylib
    0x97401000 - 0x9740fff3  com.apple.opengl (9.0.83 - 9.0.83) <16CFFD50-217E-3E18-88AF-7F2AD980628B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x97410000 - 0x97441ffd  com.apple.GSS (4.0 - 2.0) <6BA01155-4DAD-30EE-B480-D224650EA010> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x97442000 - 0x975a4ff3  com.apple.CFNetwork (673.0.3 - 673.0.3) <5E0E9AE8-073B-3F2B-B0C7-A0129DE787F6> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x975a5000 - 0x9774d4af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x9774e000 - 0x9779fffb  com.apple.CoreMedia (1.0 - 1273.29) <BE08E6C7-5E6F-3B54-9C17-751CFCBD823D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x977a0000 - 0x97825ffc  com.apple.CorePDF (4.0 - 4) <73557F2A-B0EF-3128-90FE-8EDD7824CE73> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x97826000 - 0x9782ffff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x97830000 - 0x97c55fe3  com.apple.VideoToolbox (1.0 - 1273.29) <200BFEED-8948-3266-A2C4-1DC6A695EC58> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x97c56000 - 0x97d63fe4  com.apple.MediaControlSender (1.9 - 190.4) <DF0B5A99-046A-38C1-B68E-241CB2E622BC> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSen der
    0x97d64000 - 0x97d7cfff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <630A5CCF-8FC3-379D-B0BD-41DCE1F0B624> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x97e18000 - 0x97e5eff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x97e5f000 - 0x97e62ff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x97e63000 - 0x98164ff7  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <42E10BD1-995B-3FB4-8A6D-5FD071FB8BD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x98165000 - 0x98175ff7  libsasl2.2.dylib (170) <CA1C07F6-8E17-315E-AE49-AB696DDE6707> /usr/lib/libsasl2.2.dylib
    0x98176000 - 0x981cbfff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x981cc000 - 0x981f0fff  libxpc.dylib (300.1.17) <252

Maybe you are looking for

  • Really Need Some Help with CME 8.6 using IOS as Firewall and Anyconnect VPN on Phones

    Hello, I have a 2911 Router with IOS Security and Voice enabled and we are using CME 8.6.  I am using a built-in Anyconnect VPN on 3 phones that are for remote users and thus I needed to enable security zones on the router which works because the rem

  • Windows Update Error 0x80070057

    When installing Windows 7 SP 1 I get this error. When not using the Windows Update service, so manually downloading the SP and running it, the setup completes, reboots automaticually, typical "Configuring Windows Updates" screen, reboots again, "Conf

  • Satellite E105-S1402

    Hi! I have a problem! My speaker volume is very low... can any one help me, i tried a couple of things but nothing helped. thanks!

  • IPad Calendar crashes immediately after opening

    Having trouble with the Calendar app. My ipad and my dad's immediately crashes after opening. What should I do? Anyone else having this problem?

  • Weblogic server to server loadbalancing for Http requests

    Hi we have a domain consisting of 3 clusters (weblogic 9.2 mp3) FE--> has a monolithic app using both JSPs ejb JMS--> Provides Messgaing services to FE and hosts dsitributed JMS destinations security --> provides security services to FE (This is a ne