Constructor in document class runs twice?

Hi Folks,
I'm working on my document class and the contructor is running twice, hence it is running almost all of my code twice.  I'm not quite sure why this is the case.  Any help is appreciated.
I've attached my code below.
package {
import flash.display.MovieClip;
import flash.display.DisplayObject;
import flash.events.*;
import flash.geom.*;
import flash.net.*;
import flash.utils.getDefinitionByName;
public class ASIFL048_DND extends MovieClip {
  private var startDragX:Number = new Number();
  private var startDragY:Number = new Number();
  private var xmlPath:String = "../ObjectFiles/xmlIFL0480016.xml";
  private var itemList:Array = new Array();
  private var targetList:Array = new Array();
  private var gameArray:Array = new Array();
  private var myXML:XML = new XML();
  private var myTargetName:String = new String();
  private var XMLLoader:URLLoader = new URLLoader();
  private var XMLRequest:URLRequest = new URLRequest(xmlPath);
  trace("RUNNING ONCE!");
  public function ASIFL048_DND() {
   stage.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
   stage.addEventListener(MouseEvent.MOUSE_UP, mouseUpHandler);
   XMLLoader.addEventListener(Event.COMPLETE, completeHandler);
   trace("RUNNING TWICE?");
   loadXML();
  private function loadXML():void {
   //var XMLLoader:URLLoader = new URLLoader();
   //var XMLRequest:URLRequest = new URLRequest(xmlPath);
   XMLLoader.load(XMLRequest);
   //XMLLoader.addEventListener(Event.COMPLETE, completeHandler);
  private function completeHandler(e:Event):void {
   myXML = XML(e.target.data);
   var i:int = 0;
   var j:int = 0;
   for each (var item:XML in myXML..equip) {
    itemList[i] = item.@name;
    for each (var target:XML in item..myTarget) {
     targetList[j] = [i,target];
     j++;
    i++;
   //trace(targetList);
   selectDragItems(10);
  private function selectDragItems(gameLength:int):void {
   var randomSeed:Number = new Number();
   var randomItem:Number = new Number();
   for (var k:int = 0; k<gameLength; k++) {
    randomSeed = targetList.length;
    randomItem = Math.floor(Math.random() * targetList.length);
    gameArray = targetList.splice(randomItem, 1);
    trace(gameArray+"\n");
    //display game array
    //trace("CLASS:\t"+itemList[gameArray[k][0][0]]);
         //var ClassReference:Class = getDefinitionByName(itemList[gameArray[k][0]]) as Class;
    //var instance:Object = new ClassReference();
    //addChild(DisplayObject(instance));
  private function mouseDownHandler(e:MouseEvent):void {
   startDragX = e.target.x;
   startDragY = e.target.y;
   trace(startDragX + " " + startDragY);
   e.target.startDrag(true,new Rectangle(e.target.width/2,e.target.height/2, stage.stageWidth-e.target.width, stage.stageHeight-e.target.height));
  private function mouseUpHandler(e:MouseEvent):void {
   stopDrag();
   myTargetName = "fwdLHWindscreen_mc";
   var myTarget:DisplayObject = getChildByName(myTargetName);
   //trace(" TARGET VAR: "+myTarget.name);
   if (e.target.dropTarget != null && e.target.dropTarget.parent == myTarget) {
    trace("correct");
    e.target.x = e.target.dropTarget.parent.x;
    e.target.y = e.target.dropTarget.parent.y;
    e.target.removeEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
    e.target.removeEventListener(MouseEvent.MOUSE_UP,mouseUpHandler);
   } else {
    trace("incorrect");
    e.target.x = startDragX;
    e.target.y = startDragY;

My bad. The order of output is:
RUNNING ONCE!
RUNNING TWICE?
The first trace is a static initializer, while the second is in the constructor.

Similar Messages

  • ADDED event in document class after removed from Stage

    Hi All,
    I am currently play with the document class (the class acts as main) constructor for a SWF file.
    package {
      import flash.display.*;
      import flash.events.*;
      public class TestSymbol extends MovieClip
        public function TestSymbol()
          this.addEventListener(Event.ADDED, function(event:Event) { trace(event.eventPhase, event.target, event.currentTarget, "added triggered"); });
          trace("parent", this.parent);
          this.stage.removeChild(this);
          trace("stage", this.stage);
    In frame script 1, i put
    trace("1");
    trace("parent", this.parent);
    After i run TestSymbol.swf and  i got
    parent [object Stage]
    stage null
    2 [object TestSymbol] [object TestSymbol] added triggered
    1
    parent null
    I wonder where is this ADDED event coming from? If the document class is added to some other objects, why its parent is null after the event?
    Thanks in advance
    Sam

    By wrapper do you mean they are the same object or the MainTimeLine is a separate object being added to DocumentClass, as it triggers the ADDED event? I know that framescript can be accessed as documentClass functions, so I thought they are the same object, maybe i was wrong.
    I did a new test within some more listeners
    package {
      import flash.display.*;
      import flash.events.*;
      public class TestSymbol extends MovieClip
        public function TestSymbol()
          this.addEventListener(Event.ADDED_TO_STAGE, addedToStageListener);
          this.addEventListener(Event.ADDED, addedListener)
          this.addEventListener(Event.REMOVED_FROM_STAGE, removedFromStageListener);
          this.addEventListener(Event.REMOVED, removedListener);
          trace("parent", this.parent);
          this.stage.removeChild(this);
          trace("stage", this.stage);
         private function addedListener(event:Event):void {
           trace(event.eventPhase, event.target, event.currentTarget, "added triggered");
         private function addedToStageListener(event:Event):void {
           trace(event.eventPhase, event.target, event.currentTarget, "addedToStage triggered");
         private function removedListener(event:Event):void {
           trace(event.eventPhase, event.target, event.currentTarget, "removed triggered");
         private function removedFromStageListener(event:Event):void {
           trace(event.eventPhase, event.target, event.currentTarget, "removedFromStage triggered");
    and this is the output
    parent [object Stage]
    2 [object TestSymbol] [object TestSymbol] removed triggered
    2 [object TestSymbol] [object TestSymbol] removedFromStage triggered
    stage null
    2 [object TestSymbol] [object TestSymbol] added triggered
    As the remove listeners are fired immediately, i don't think the queue is waiting until the end of the constructor.

  • Children swf timeline code vs document class.

    Hey all,
    I am loading a swf into another and had a question that I can't seem to find an answer to.
    I am trying to find out why when I place trace(parent); in the timeline of my child swf I get [object Loader]
    but if i place  trace(parent); in the constructor of the child swf's document lcass I get null.
    Why is this and how would I access the parent swf  from the child document class if it shows as null?
    Thanks

    The constructor is running before the swf has been added to the stage of the parent. Use the Event.ADDED_TO_STAGE event in the document class of the swf being loaded, and once it fires trace parent.

  • Problem with constructor of inner class.

    Hi everybody!
    I have an applet which loads images from a database.
    i want to draw the images in a textarea, so i wrote an inner class, which extends textarea and overrides the paint method.
    but everytime i try to disply the applet in the browser this happens:
    java.lang.NoClassDefFoundError: WohnungSuchenApplet$Malfl�che
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Class.java:1590)
    at java.lang.Class.getConstructor0(Class.java:1762)
    at java.lang.Class.newInstance0(Class.java:276)
    at java.lang.Class.newInstance(Class.java:259)
    at sun.applet.AppletPanel.createApplet(AppletPanel.java:567)
    at sun.plugin.AppletViewer.createApplet(AppletViewer.java:1778)
    at sun.applet.AppletPanel.runLoader(AppletPanel.java:496)
    at sun.applet.AppletPanel.run(AppletPanel.java:293)
    at java.lang.Thread.run(Thread.java:536)
    so my class has no own constructor, it just has the paint method overwritten.
    my class looks like this:
    public class Malfl�che extends javax.swing.JTextArea{
    public void paint(Graphics g){
    Color grey=new Color(220,220,220);
    g.drawImage(img,10,10,null);
    how should a constructor for this class look like?
    sorry i am quite new to this, so i really dont have a clue!
    my class does not have any attributes or requires any so it doesnt need a constructor, doesnt it?
    thanks a lot
    tim

    First off, unlike regular classes, inner classes can be declared public, private, protected, and default.
    Secondly, why are you using the JTextArea to display an image, why not use a JLabel, which takes an Image object as its constructor.
    Thirdly, when you drew your image you did not give it a width and height
    g.drawImage(img, 0,0, img.getWidth(null), img.getHeight(null), null);
    otherwise it will make your image 1 X 1 pixels. not big enough to see.

  • TREX does not index all documents fro document class SOLARGNSRC

    Hi all,
    I've setup a connection between a TREX server (which is also used by a portal system) and Solution Manager. I've gone through the settings in SAP Note 750623 and I was able to create a index, the queue and even bypass the basic authentication in the preprocessing for document class SOLARGNSRC
    According to everything I've read, this should be enough to be able to index all documents in Solution Manager and find them with Full Tex Search. But this doesn't work. From the 50.000 documents in de class (35.000 English and 15.000 German) only 6300 documents are passed to TREX. Most of them are German HTML links to help.sap.com. I can see in the trace files that the URL's to some documents in the content server are passed to TREX. I can open dthe document using the links but I cannot find the documents using the full text search which I think means that nothing was really indexed.
    Questions:
    1. Has anyone been able to succesfully index Solution Manager documents for full text search purposes?
    2. Why are only 10% of the documents passed to TREX? Is there a specific setting for this?
    3. Why does TREX use the Content Server HTTP links to index the documents and not the RFC connection?
    Cheers
    Marcel Rabe

    Yep, all lights green
    SSR maintained. DRFUZZY as Search Engine (I have not tried Verity)
    Return Code? Interesting, I don't get an return code when I trigger the Index/Deindex. I just see the hourglass for about 5 minutes (when I run it in the foreground) and after that its back to the way it was. No messages. Nothing appears in the application logs as far as I can see.
    The program RSTIRIDX  is scheduled in the background and runs every hour minutes for about 10 seconds without an error.
    TREX Version 7.00.39.00
    Five languages actived, including German and English. In SKPR07 under Indexed documents I can see that 300 German and 6000 English documents have status indexed.
    No proxy server. Systems sit within the same network segment
    Thnx for your help. I posted a message with SAP as well as this seems strange to me.
    Marcel

  • NewInstance & constructor of base class

    When I instantiate a sub class directly (using new), the code in the constructor method of both base and sub classes run.
    When I instantiate using java.lang.reflect.Constructor.newInstance, only the sub class's constructor method is invoked. Is there a way to force running the constructor method of the base class as well?
    Thanks & Regards.

    when I tried to build a simple code to show the problem, I realised that the problem is somewhere else - Still not solvable by me - Please help.
    Irrespective of whether new or Constructor.newInstance -
    The constructor method with appropriate signature is invoked from child class.
    The constructor method without any arguments is invoked from parent class. - This is the reason for my original problem.
    In the attached code, the variable xyz is not getting assigned proper value (from the argument a).
    public class Mainer {
       public static void main(String args[]) throws ClassNotFoundException, NoSuchMethodException, InstantiationException, IllegalAccessException, IllegalArgumentException, java.lang.reflect.InvocationTargetException
           int inArg = 5;
           System.out.println("With new");
           ChldClass chld1 = new ChldClass(inArg);
           chld1.m1();
           System.out.println("With Constructor.newInstance");
           java.lang.reflect.Constructor ArgsConstructor;
           Class[] argsClass = new Class[] {int.class};
           Class chld2Class = Class.forName("ChldClass");
           ArgsConstructor = chld2Class.getConstructor(argsClass);
           Object[] argsObject = new Object[] {5};
           ChldClass chld2 = (ChldClass)ArgsConstructor.newInstance(argsObject);
           chld2.m1();
    class PrntClass
        int xyz;
            public PrntClass(int a)
                xyz = a;
                System.out.println("Int Arg Constructor within Parent Class <<<" + xyz + ">>>");
            public PrntClass()
                System.out.println("Default Constructor within Parent Class");
         public void m1()
              System.out.println("M1 of Parent Class");
    class ChldClass extends PrntClass
        public ChldClass(int a)
            System.out.println("Int Arg Constructor within Child");
         public void m1()
              System.out.println("Value of xyz "+xyz);
         public void m2()
              System.out.println("M2 of ChldClass");
    The result displayed:
    With new
    Default Constructor within Parent Class
    Int Arg Constructor within Child
    Value of xyz 0
    With Constructor.newInstance
    Default Constructor within Parent Class
    Int Arg Constructor within Child
    Value of xyz 0
    Thanks & Regards.

  • Document Class {add image library + preloader}

    Hi there,
    I'm learning AS3 and want to use a document class to control
    my Flash movie (i.e. I want the time line to be completely empty).
    I've run into two problems.
    1.) I have a large image in the Flash library which I setup
    with "Export for ActionScript", but I was unable to work out how to
    add the image to the displaylist as i think it needs to be added as
    BitmapData? Can anyone advise how best to do this and provide an
    example please.
    2.) I have yet to find a simple example of creating a
    preloader in a document class? There was a BizTalk website tutorial
    but I don't think that explained very well what the code was doing
    - so I'm hoping someone here can provide a code example with
    comments (if the code example could tie into the point 1. above
    that would be brilliant).
    Finally, also I'm unsure of how a document class can preload
    content that doesn't actually exist until the class itself creates
    the content, just seems a bit odd?
    Any help with these two issues would be greatly appreciated!
    Thank you :)
    Kind regards,
    M.

    Hi there,
    I'm learning AS3 and want to use a document class to control
    my Flash movie (i.e. I want the time line to be completely empty).
    I've run into two problems.
    1.) I have a large image in the Flash library which I setup
    with "Export for ActionScript", but I was unable to work out how to
    add the image to the displaylist as i think it needs to be added as
    BitmapData? Can anyone advise how best to do this and provide an
    example please.
    2.) I have yet to find a simple example of creating a
    preloader in a document class? There was a BizTalk website tutorial
    but I don't think that explained very well what the code was doing
    - so I'm hoping someone here can provide a code example with
    comments (if the code example could tie into the point 1. above
    that would be brilliant).
    Finally, also I'm unsure of how a document class can preload
    content that doesn't actually exist until the class itself creates
    the content, just seems a bit odd?
    Any help with these two issues would be greatly appreciated!
    Thank you :)
    Kind regards,
    M.

  • IPM & CIS and Document Class creation

    If I've to setup a new Content Management System with process management, what are the advantages I get if I integrate UCM with IPM?
    1. Can't IPM provide the versioning and document management features?
    2. How can I create various document classes (as in Documentum, FileNet)? The idea is to create various document classes and associate folders and workflows with those classes. Thus once created, documents automatically go into workflow. Note that workflows can be associated with folders. I want them to be associated with document types.
    Thanks

    Its more along the lines of how do I get started. This is part of my homework for my Intro to Programming class. What I have so far is
    package cardCode
         import flash.display.MovieClip;
         public class Card extends MovieClip
              public var cardValue:Number;
              public var cardSuit:String;
              public function card() {
              // constructor code
    I don't know how to go about assigning values and suits. The final outcome wil be so that you can compare two cards and a trace statement will appear stating which card wins.

  • Organising document class?

    Hi team,
    I am using a document class for a project to keep the code off the main timeline - only problem is now my document class is running to almost 2000 lines of code and becoming unwieldy to scroll through and find stuff.  Is there any way I can better organise this? Or should I be building in some other way?
    I am really not very sure on how classes actually work.  I have got this document class working but that is about as good as it gets. Any help would be greatly appreciated.
    cheers
    Sub

    When you are getting into thousands of lines of code, there is not alot you can do to avoid having to scroll thru it to find things, though you can do things to reduce the amount of scrolling needed. 
    What you could do is go thru the code and organize it into functional sections.  To aid in the need to scroll to find things, you can make use of keywords as comments in combination with the Find tool (the magnifying glass in the toolbar), and use it to jump to sections.
    You could probably break it all down into separate class files, but then it might be even moreso unwieldy for you to have to remember which file you need to look at for different things.  Still, for major functional divisions this can be useful.

  • Document class problem

    I'm working out of Colin Moock's Essential ActionScript 3.0
    and I get this message when I try to save my file: "A definition
    for the document class could not be found in the classpath, so one
    will be automatically generated in the SWF file upon export." The
    document class is set to zoo.VirtualZoo
    My .fla file sits on the desktop. Also on the desktop, there
    is a folder named zoo. Within this folder named zoo there are
    several .as files, one of the is named VirtualZoo.as
    Even when I try to run the completed file that he provides I
    get this same message. I'm running MacOS10.4.11, using Flash CS3,
    and have already reset all of my ActionScript settings within my
    preferences.
    Here's the link to the files:
    http://moock.org/eas3/examples/moock_eas3_examples/virtualzoo_Flash_authoring/
    Any help would be much appreciated,
    Joe

    I tried it from you're link and it still gave me the same
    problem. Do you think that I've changed some setting? Is there a
    way to completely reset all the defaults in flash? This sucks.
    Joe

  • Constructor of derived-class has to call constructor  of super-class?

    In java, constructor of derived-class has to call constructor of super-class? there is no way to omit this step?

    Correct. If you do not explicitly call the constructor, a call to the no-arg c'tor, super(), is automatically inserted.
    It would be a mess to have it any other way. You'd be creating objects that are not completely initialized. They'd be in an invalid state.
    Constructor rules:
    1) Every class has at least one ctor.
    1.1) If you do not define an explicit constructor for your class, the compiler provides a implicit constructor that takes no args and simply calls super().
    1.2) If you do define one or more explicit constructors, regardless of whether they take args, then the compiler no longer provides the implicit no-arg ctor. In this case, you must explicitly define a public MyClass() {...} if you want one.
    1.3) Constructors are not inherited.
    2) The first statement in the body of any ctor is either a call to a superclass ctor super(...) or a call to another ctor of this class this(...) 2.1) If you do not explicitly put a call to super(...) or this(...) as the first statement in a ctor that you define, then the compiler implicitly inserts a call to super's no-arg ctor super() as the first call. The implicitly called ctor is always super's no-arg ctor, regardless of whether the currently running ctor takes args.
    2.2) There is always exactly one call to either super(...) or this(...) in each constructor, and it is always the first call. You can't put in more than one, and if you put one in, the compiler's implicitly provided one is removed.

  • Can defualt inherited the Super Class constructor to sub class ?

    Hi,
    is it passible to inherit the super class constructor by defualt when extends the super class.
    Thanks
    MerlinRoshina

    Constructor rules:
    1) Every class has at least one ctor.
    1.1) If you do not define an explicit constructor for your class, the compiler provides a implicit constructor that takes no args and simply calls super().
    1.2) If you do define one or more explicit constructors, regardless of whether they take args, then the compiler no longer provides the implicit no-arg ctor. In this case, you must explicitly define a public MyClass() {...} if you want one.
    1.3) Constructors are not inherited.
    2) The first statement in the body of any ctor is either a call to a superclass ctor super(...) or a call to another ctor of this class this(...) 2.1) If you do not explicitly put a call to super(...) or this(...) as the first statement in a ctor that you define, then the compiler implicitly inserts a call to super's no-arg ctor super() as the first call. The implicitly called ctor is always super's no-arg ctor, regardless of whether the currently running ctor takes args.
    2.2) There is always exactly one call to either super(...) or this(...) in each constructor, and it is always the first call. You can't put in more than one, and if you put one in, the compiler's implicitly provided one is removed.

  • Generate document classes when creating WebService from WSDL using JAXRPC

    Can anybody tell me how i can generate request response document classes.Response is return type and request is its parameter of method (service provided by webservice).
    I had used cmd:
    wscompile -keep -gen:both -d src config.xml
    My config.xml is:
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config">
    <wsdl
    location="wsdl\TroubleTicket\v1-2\JVTTroubleTicketSession.wsdl"
    packageName="src">
    <handlerChains>
    </handlerChains>
    <namespaceMappingRegistry>
    </namespaceMappingRegistry>
    </wsdl>
    </configuration>
    After running the wscompile command, i was able to generate SOAPBuilder classes, LiteralSerialiser files, Request-Response-Exception classes and the Tie, stub, Port and Impl classes.
    How can i procedd furthur???

    Arushi,
    I would refer to the online tutorial for JWSDP, which walks you through creating a web service and a Client to the service.

  • OS X Yosemite: Finder crashing / running twice

    Hi,
    Since I upgraded to Yosemite on my MBA mid 2011 Finder keeps crashing every day. Suddenly it stops working. You cannot click on the icon to open a new Finder or you can not empty the trash the message is not appearing.
    Sometimes it helps to "killall Finder" via terminal. But it takes forever to restart the Finder.
    Today I realized that the Finder is running twice (process overview to kill apo).
    Any ideas what happened here?
    JJ

    11/11/14 7:47:52.709 PM com.apple.xpc.launchd[1]: (com.apple.Finder) ThrottleInterval set to zero. You're not that important. Ignoring.
    11/11/14 7:48:00.715 PM Finder[318]: lock contention for shared file list item 0x6380001729c0
    11/11/14 7:48:00.751 PM Finder[318]: lock contention for shared file list item 0x638000172a80
    11/11/14 7:48:00.753 PM Finder[318]: lock contention for shared file list item 0x638000172c00
    11/11/14 7:48:00.753 PM Finder[318]: lock contention for shared file list item 0x638000172cc0
    11/11/14 7:48:00.755 PM Finder[318]: lock contention for shared file list item 0x638000172e40
    11/11/14 7:48:00.803 PM Finder[318]: lock contention for shared file list item 0x638000172f00
    11/11/14 7:48:10.583 PM Finder[318]: Can't open input server /Library/InputManagers/CTLoader
    11/11/14 7:48:14.014 PM Finder[318]: assertion failed: 14A389: libxpc.dylib + 97940 [9437C02E-A07B-38C8-91CB-299FAA63083D]: 0x89
    11/11/14 7:48:17.016 PM Finder[318]: CoreDockSetTrashFull returned error -4956
    11/11/14 7:48:19.000 PM kernel[0]: Sandbox: Finder(318) System Policy: deny file-write-unlink /Users/vadik/Library/Saved Application State/com.apple.finder.savedState/restorecount.plist
    11/11/14 7:48:20.671 PM Finder[318]: CoreDockSetTrashFull returned error -4956
    11/11/14 7:48:23.676 PM Finder[318]: CoreDockSetTrashFull returned error -4956
    11/11/14 7:49:49.409 PM Finder[318]: objc[318]: Class ACCFinderObject is implemented in both /Applications/Utilities/Adobe Creative Cloud/CoreSyncExtension/ACCFinderBundleLoader_64.app/Contents/Frameworks/ACCFin derExtension.bundle/Contents/MacOS/ACCFinderExtension and /Applications/Utilities/Adobe Creative Cloud/CoreSyncExtension/ACCFinderBundleLoader_64.app/Contents/Frameworks/ACCFin derInnerExtesion.bundle/Contents/MacOS/ACCFinderInnerExtesion. One of the two will be used. Which one is undefined.
    11/11/14 7:49:58.583 PM Google Drive[458]: GsyncAppDeletegate.py : Finder debug level logs : False
    11/11/14 7:51:06.320 PM WindowServer[227]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    11/11/14 7:51:06.368 PM WindowServer[227]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.05 seconds (server forcibly re-enabled them after 1.00 seconds)
    11/11/14 7:51:13.305 PM WindowServer[227]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    11/11/14 7:51:15.237 PM WindowServer[227]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 2.93 seconds (server forcibly re-enabled them after 1.00 seconds)
    11/12/14 7:14:19.590 AM com.apple.xpc.launchd[1]: (com.apple.Finder) ThrottleInterval set to zero. You're not that important. Ignoring.
    11/12/14 7:14:25.046 AM Finder[324]: Can't open input server /Library/InputManagers/CTLoader
    11/12/14 7:14:25.741 AM Finder[324]: assertion failed: 14A389: libxpc.dylib + 97940 [9437C02E-A07B-38C8-91CB-299FAA63083D]: 0x89
    11/12/14 7:14:29.712 AM Finder[324]: CoreDockSetTrashFull returned error -4956
    11/12/14 7:14:32.714 AM Finder[324]: CoreDockSetTrashFull returned error -4956
    11/12/14 7:14:35.719 AM Finder[324]: CoreDockSetTrashFull returned error -4956
    11/12/14 7:14:38.725 AM Finder[324]: CoreDockSetTrashFull returned error -4956
    11/12/14 7:15:11.140 AM Google Drive[444]: GsyncAppDeletegate.py : Finder debug level logs : False
    11/12/14 7:15:33.042 AM Finder[324]: objc[324]: Class ACCFinderObject is implemented in both /Applications/Utilities/Adobe Creative Cloud/CoreSyncExtension/ACCFinderBundleLoader_64.app/Contents/Frameworks/ACCFin derExtension.bundle/Contents/MacOS/ACCFinderExtension and /Applications/Utilities/Adobe Creative Cloud/CoreSyncExtension/ACCFinderBundleLoader_64.app/Contents/Frameworks/ACCFin derInnerExtesion.bundle/Contents/MacOS/ACCFinderInnerExtesion. One of the two will be used. Which one is undefined.
    11/12/14 7:37:21.306 AM SubmitDiagInfo[448]: Submitted problem report file:///Library/Logs/DiagnosticReports/Finder_2014-11-11-172718_G5.hang
    11/12/14 7:37:21.347 AM SubmitDiagInfo[448]: Submitted problem report file:///Library/Logs/DiagnosticReports/Finder_2014-11-11-184341_G5.hang
    11/12/14 8:21:55.671 AM Finder[324]: *** remoteObjectProxyWithErrorHandler failed: Error Domain=NSCocoaErrorDomain Code=4097 "Couldn’t communicate with a helper application." (connection to service named com.apple.internetaccounts) UserInfo=0x630000070780 {NSDebugDescription=connection to service named com.apple.internetaccounts}; {
        NSDebugDescription = "connection to service named com.apple.internetaccounts";
    11/12/14 8:24:11.107 AM Google Chrome[751]: Cannot find function pointer SampleCMPluginFactory for factory 3487BB5A-3E66-11D5-A64E-003065B300BC in CFBundle/CFPlugIn 0x83c79d40 </Users/vadik/Library/Contextual Menu Items/A Better Finder Context Menu.plugin> (not loaded)
    Process:               dynamiclinkmanager [5355]
    Path:                  /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/MacOS/dynamiclinkmanager
    Identifier:            com.adobe.dynamiclinkmanager
    Version:               6.0.0 (6.0.0)
    Code Type:             X86 (Native)
    Parent Process:        ??? [1]
    Responsible:           dynamiclinkmanager [5355]
    User ID:               501
    Date/Time:             2014-11-08 15:29:51.218 -0800
    OS Version:            Mac OS X 10.10 (14A389)
    Report Version:        11
    Anonymous UUID:        6FC7D8D0-AFED-A5D3-1480-74806996DAC2
    Time Awake Since Boot: 21000 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_CRASH (SIGABRT)
    Exception Codes:       0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    terminating
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x9035c69e __pthread_kill + 10
    1   libsystem_pthread.dylib       0x91f94fd5 pthread_kill + 101
    2   libsystem_c.dylib             0x9a4aaefe abort + 156
    3   libc++abi.dylib               0x956162f9 abort_message + 169
    4   libc++abi.dylib               0x956393a2 default_terminate_handler() + 47
    5   libc++abi.dylib               0x95636ac0 std::__terminate(void (*)()) + 14
    6   libc++abi.dylib               0x95636b5e std::terminate() + 94
    7   com.adobe.dynamiclinkmanager   0x00006714 main + 772
    8   com.adobe.dynamiclinkmanager   0x00003c26 start + 54
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x9035d8d2 kevent64 + 10
    1   libdispatch.dylib             0x9048973f _dispatch_mgr_invoke + 245
    2   libdispatch.dylib             0x904893a2 _dispatch_mgr_thread + 52
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0xa0e426d0  ecx: 0xbffff1fc  edx: 0x00000000
      edi: 0xa05231d4  esi: 0x00000006  ebp: 0xbffff218  esp: 0xbffff1fc
       ss: 0x00000023  efl: 0x00000206  eip: 0x9035c69e   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xa0e40a00
    Logical CPU:     0
    Error Code:      0x00080148
    Trap Number:     132
    Binary Images:
        0x1000 -    0x53ff3 +com.adobe.dynamiclinkmanager (6.0.0 - 6.0.0) <182DDE06-F536-C156-6D32-4C0725A3C4E2> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/MacOS/dynamiclinkmanager
       0xe5000 -    0xebff7 +com.adobe.boost_date_time.framework (6.0.0 - 6.0.0.0) <09A2FC8A-015D-10D9-E24E-31E02B370F7F> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/boost_date_time.fram ework/Versions/A/boost_date_time
      0x10b000 -   0x119ff3 +com.adobe.boost_threads.framework (6.0.0 - 6.0.0.0) <E64D388C-A773-3232-BF7C-7A822E5C919D> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/boost_threads.framew ork/Versions/A/boost_threads
      0x13d000 -   0x2f7fef +com.adobe.dvacore.framework (6.0.0 - 6.0.0.0) <7B46AC03-C7A1-4647-C60A-764C1CD2FC43> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/dvacore.framework/Ve rsions/A/dvacore
      0x50d000 -   0x510fff +com.adobe.boost_system.framework (6.0.0 - 6.0.0.0) <FFA9E16A-F75C-0926-6A9A-454E173B2906> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/boost_system.framewo rk/Versions/A/boost_system
      0x518000 -   0x541ff3 +com.adobe.dvamediatypes.framework (6.0.0 - 6.0.0.0) <99FECDBB-2293-8336-9EB9-C5E7903F1006> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/dvamediatypes.framew ork/Versions/A/dvamediatypes
      0x578000 -   0x5d5ffb +com.adobe.dvatransport.framework (6.0.0 - 6.0.0.0) <4EAE9BF9-5CBC-A2C4-2F15-C39E4A178F12> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/dvatransport.framewo rk/Versions/A/dvatransport
      0x655000 -   0x68dfff +com.adobe.dvamarshal.framework (6.0.0 - 6.0.0.0) <75D2CE81-FEED-DD94-3028-AAC6B79A8DAA> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/dvamarshal.framework /Versions/A/dvamarshal
      0x726000 -   0x906fe7 +com.adobe.dynamiclink.framework (6.0.0 - 6.0.0.0) <D57C61FB-C2D2-836D-8AB7-5C2C84B3066B> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/dynamiclink.framewor k/Versions/A/dynamiclink
    0x8fe7e000 - 0x8feb1e03  dyld (353.2.1) <EBFF7998-58E8-32F5-BF0D-9690278EC792> /usr/lib/dyld
    0x90008000 - 0x9005efff  libc++.1.dylib (120) <D8DE4962-66CD-3491-904E-9291EEE5E570> /usr/lib/libc++.1.dylib
    0x9005f000 - 0x90065ff3  libsystem_platform.dylib (63) <509993B7-3F26-3360-B899-0BBB15152516> /usr/lib/system/libsystem_platform.dylib
    0x90066000 - 0x900d2ffb  com.apple.datadetectorscore (6.0 - 396.1) <77C29022-34D1-3556-95F6-FDBE4576CAF9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x900d6000 - 0x901cdfff  libFontParser.dylib (134) <95F8F2D1-B28D-3687-95A9-45033FEE0504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x901ce000 - 0x901cffff  libremovefile.dylib (35) <49DCAF7B-4466-3775-9E58-EA5D7CBA8AE0> /usr/lib/system/libremovefile.dylib
    0x901d0000 - 0x9022bffb  libTIFF.dylib (1231) <14F5E31A-4ABC-3DF7-AB85-9DB406D3613C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9022c000 - 0x9022efff  libCVMSPluginSupport.dylib (11.0.7) <A87C589A-DA64-3D62-8BDE-065784993B1A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x90343000 - 0x90362fff  libsystem_kernel.dylib (2782.1.97) <9F86CA37-93FC-31F0-8ACC-53D244AF9EC2> /usr/lib/system/libsystem_kernel.dylib
    0x90363000 - 0x903b6ff7  com.apple.HIServices (1.22 - 519) <5B54AB76-C487-367B-ACD5-2AF6BC85E1B9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x903b7000 - 0x903d6ffb  libresolv.9.dylib (57) <C2C3810A-A45E-3375-B41D-6E1BECE1BA3C> /usr/lib/libresolv.9.dylib
    0x90427000 - 0x90484ff3  com.apple.print.framework.PrintCore (10.0 - 451) <2563665B-7B7F-3B8A-83B1-E5AC8D389909> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90485000 - 0x904acfff  libdispatch.dylib (442.1.4) <B26A176C-39F7-3362-B128-27B1211068B9> /usr/lib/system/libdispatch.dylib
    0x904ad000 - 0x904c4ff3  libLinearAlgebra.dylib (1128) <B20FAAAA-1C76-3B20-B100-5FC90F7FE023> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
    0x90e74000 - 0x90e7fff7  com.apple.NetAuth (5.0 - 5.0) <D6C31218-47E4-3553-9208-D1091A81044E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x90f71000 - 0x90f73ff7  libsystem_sandbox.dylib (358.1.1) <12A90EA1-A218-3B6B-A441-E1A8F866FA44> /usr/lib/system/libsystem_sandbox.dylib
    0x90f90000 - 0x90f98ffb  com.apple.NetFS (6.0 - 4.0) <141BFE7E-634E-32A0-8EC9-0A1A4DFEA7D9> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x90f99000 - 0x910afff7  com.apple.CoreText (352.0 - 454.1) <02F310BE-E185-328C-A461-6D6B762D4A6D> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x910b0000 - 0x910b0fff  liblaunch.dylib (559.1.22) <2FDDB7A5-C022-3C40-A263-1DC74F0B446D> /usr/lib/system/liblaunch.dylib
    0x910b1000 - 0x910b2fff  libSystem.B.dylib (1213) <77FA0B3F-4412-31F6-A798-21D068AE16C3> /usr/lib/libSystem.B.dylib
    0x91129000 - 0x91129fff  libunc.dylib (29) <CE960997-9D4A-3848-BAC7-B2255E6765FD> /usr/lib/system/libunc.dylib
    0x911b9000 - 0x911d2fff  libsystem_malloc.dylib (53.1.1) <58CD8BC7-55D1-3862-8E5D-728EE2EBE447> /usr/lib/system/libsystem_malloc.dylib
    0x911eb000 - 0x91318ff7  com.apple.coreui (2.1 - 305) <8D2978A1-8152-32CB-B265-4C923FDF3017> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91319000 - 0x9135cfff  libGLU.dylib (11.0.7) <3519CD46-386A-3702-A5EE-AE59923C5AA7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91381000 - 0x91383ffb  libRadiance.dylib (1231) <2F86BE82-404D-335C-B83E-F71D3C4969B8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x9143e000 - 0x91444ff7  libsystem_trace.dylib (72.1.3) <E1985F9C-78FC-3098-8683-81F0DCEE54BB> /usr/lib/system/libsystem_trace.dylib
    0x91445000 - 0x9144eff7  libsystem_notify.dylib (133.1.1) <B8503E99-214B-3AC3-A7CA-CC837ABD7B25> /usr/lib/system/libsystem_notify.dylib
    0x9156c000 - 0x91586ff7  liblzma.5.dylib (7) <D0BC984D-5B33-328C-8F1E-7E9C41813433> /usr/lib/liblzma.5.dylib
    0x91587000 - 0x91589fff  libsystem_configuration.dylib (699.1.5) <CDD8D1DA-3414-3A19-B340-EA116D52EA21> /usr/lib/system/libsystem_configuration.dylib
    0x9158a000 - 0x9159bff3  libsystem_coretls.dylib (35.1.2) <87AE2CBB-A397-3392-A152-02AEA6D194D6> /usr/lib/system/libsystem_coretls.dylib
    0x9159c000 - 0x91636fff  com.apple.ColorSync (4.9.0 - 4.9.0) <091CDCEC-1B25-3FE7-94C2-8AEFA6564E95> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x918ff000 - 0x918fffff  libOpenScriptingUtil.dylib (162) <9872C464-DF90-37C2-9871-8A3F53C615EC> /usr/lib/libOpenScriptingUtil.dylib
    0x91900000 - 0x91909fff  libGFXShared.dylib (11.0.7) <AFC7CCD1-D935-3968-8CE3-303C13354F2B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9190a000 - 0x9195bfff  libcups.2.dylib (408) <08C5D411-533C-345A-B820-092C96215F2E> /usr/lib/libcups.2.dylib
    0x9195c000 - 0x919d6fff  com.apple.ApplicationServices.ATS (360 - 375) <7E075657-314E-3130-97A7-AFD826000C7B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x919d7000 - 0x919e3ff3  libcommonCrypto.dylib (60061) <024B3913-15C6-3005-9E5A-EB24918F6977> /usr/lib/system/libcommonCrypto.dylib
    0x919e4000 - 0x919e8fff  libheimdal-asn1.dylib (398.1.2) <71FCB9F7-A330-3C02-89F3-B483B1C67E54> /usr/lib/libheimdal-asn1.dylib
    0x919e9000 - 0x91a3cfff  libstdc++.6.dylib (104.1) <D0EB2C99-5939-3ABA-9C18-D9AD75CE23A1> /usr/lib/libstdc++.6.dylib
    0x91a3d000 - 0x91a7dfff  com.apple.Symbolication (1.4 - 56045) <BE1C4846-DA11-365D-9B46-3FF130401839> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x91a7e000 - 0x91eb9feb  com.apple.vImage (8.0 - 8.0) <56F6B317-9D70-3DC5-9868-BB6D7CB6E55D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91eba000 - 0x91ebbfff  libsystem_blocks.dylib (65) <5D98F022-E863-31D4-8ADE-D53B2AE0D331> /usr/lib/system/libsystem_blocks.dylib
    0x91ef1000 - 0x91f55ff7  com.apple.AE (681 - 681) <EEE62980-421B-33BD-BB88-6BDE269A3060> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91f56000 - 0x91f59fff  libdyld.dylib (353.2.1) <6533C0BC-6FE5-3E43-A44D-EF2193978EC0> /usr/lib/system/libdyld.dylib
    0x91f90000 - 0x91f98fff  libsystem_pthread.dylib (105.1.4) <D90BD4F4-8DFA-3683-9C26-313D2F4F8C41> /usr/lib/system/libsystem_pthread.dylib
    0x91f99000 - 0x91fc8fff  com.apple.CoreVideo (1.8 - 145.1) <A59466FC-6B5A-3B36-BDD4-AC9CD581B7A1> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91fc9000 - 0x91ff3fff  libxslt.1.dylib (13) <0F55B64A-6C55-304E-ACE0-B531027AA066> /usr/lib/libxslt.1.dylib
    0x92026000 - 0x9206dff3  com.apple.AppleJPEG (1.0 - 1) <C14A2B49-A664-3EDE-9B9B-6A678ED7F8DE> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x9206e000 - 0x92070ffb  libsystem_secinit.dylib (18) <3CBA3BD3-8BA2-358D-BD1A-A1C3DF5D84E6> /usr/lib/system/libsystem_secinit.dylib
    0x92071000 - 0x920abff7  com.apple.DebugSymbols (115 - 115) <D01FFA10-1734-31C5-B5A1-9CB61463FC15> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x920ac000 - 0x920befff  com.apple.Sharing (328.3 - 328.3) <460DD833-B33A-369E-A5EF-B21D5AA231EF> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x920bf000 - 0x9212aff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <632A811D-4706-3ED7-85E3-DD2CDB47CF8F> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x9212b000 - 0x9212dfff  libsystem_coreservices.dylib (9) <20E66A47-8D67-344A-A393-73926F0E5FB2> /usr/lib/system/libsystem_coreservices.dylib
    0x9212e000 - 0x92420ffb  com.apple.CoreImage (10.0.33) <75B23F45-8D99-3521-89AE-AF2AF4487096> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x92422000 - 0x924d1fff  com.apple.Bluetooth (4.3.0 - 4.3.0f10) <6BE1AED1-C590-36BE-B796-2F3856318633> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x92533000 - 0x9270f2ef  libobjc.A.dylib (646) <EF789AF0-508F-3D49-A988-376CE2E1107C> /usr/lib/libobjc.A.dylib
    0x92710000 - 0x927b0fff  com.apple.QD (301 - 301) <4DFE3689-59DE-3FBC-806B-6A4056573E52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x927b2000 - 0x9289efe7  libvMisc.dylib (512) <56B7DE45-36B1-32BE-B823-DB14F315EEB9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x928ee000 - 0x929fafe3  libvDSP.dylib (512) <54403134-29AE-3806-89D7-2CBA7B455736> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92a51000 - 0x92a8eff7  libsystem_network.dylib (411) <4D5BCDE3-5155-3D97-84C5-778D56A5122A> /usr/lib/system/libsystem_network.dylib
    0x9339d000 - 0x933adff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <DBECFAD5-DB53-390C-AE92-09549733C861> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x933e5000 - 0x933eefff  com.apple.CommonAuth (4.0 - 2.0) <88D8A3D8-5F27-3545-8CD2-456FFDE5383D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x933ef000 - 0x93465ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <B6F346D2-BF88-3925-B962-E59267FA2268> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x937e9000 - 0x938e9ff7  com.apple.LaunchServices (644.10 - 644.10) <9A64517C-7DAE-3247-AD6E-FD3FB49A54D8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x938fa000 - 0x93908ff3  libxar.1.dylib (254) <D7C4FDEB-61AA-3FC1-8B7B-0AE3A3A64492> /usr/lib/libxar.1.dylib
    0x93909000 - 0x939a6fff  com.apple.ink.framework (10.9 - 213) <F47949BC-ABEE-329B-B568-71C6FEF761F6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x939a7000 - 0x939d6ff7  com.apple.DictionaryServices (1.2 - 229) <1F5C35C7-67AA-30A0-A366-EB4B361152A3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93f41000 - 0x94329ff7  libLAPACK.dylib (1128) <4E3D1289-2C98-3E53-BB8D-AD911357FF66> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9432a000 - 0x9432cfff  com.apple.loginsupport (1.0 - 1) <47A71885-BB14-3DB8-AE19-F74ABA120290> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
    0x94335000 - 0x94361fff  com.apple.ChunkingLibrary (2.1 - 163.1) <2B0CBB85-EF91-351A-8750-A185996E4CDB> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x94364000 - 0x943cdff7  libcorecrypto.dylib (233.1.2) <F188C1A7-E88F-3EC5-A6AA-22C02E3F0C93> /usr/lib/system/libcorecrypto.dylib
    0x94e3c000 - 0x94e44fff  com.apple.CoreServices.FSEvents (1210 - 1210) <FC372799-6E8E-3290-9816-6981D39BC9D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
    0x94e45000 - 0x94e52ff7  com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <DD10F01B-45E7-31A0-A19B-2AEEB689C6C4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x950d9000 - 0x950e8ff3  com.apple.opengl (11.0.7 - 11.0.7) <C4738E5F-C178-3A01-B941-C638E6A14D7C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x950e9000 - 0x9522dfff  com.apple.ImageIO.framework (3.3.0 - 1038) <98EC2248-5270-3CB5-84FD-CD225A9875D4> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x9522e000 - 0x9525cff7  libarchive.2.dylib (30) <8758D35F-ADF8-30F6-8EB2-9B852876EAC8> /usr/lib/libarchive.2.dylib
    0x9525d000 - 0x952aefff  com.apple.opencl (2.4.2 - 2.4.2) <33B19D84-C463-3762-B1AB-C5CB8F7DC87F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x952af000 - 0x952b2fff  com.apple.xpc.ServiceManagement (1.0 - 1) <942B9491-B97C-36DB-A9F0-3EA3273FCD2C> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x952b3000 - 0x952b8ff7  libcompiler_rt.dylib (35) <6630682F-AB76-3E55-BE51-0A3E61B6CFC2> /usr/lib/system/libcompiler_rt.dylib
    0x953c8000 - 0x953d5fff  com.apple.OpenDirectory (10.10 - 187) <94A3ED17-CD64-3D4A-8470-69C937CABF50> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x953d6000 - 0x95409fe3  libsystem_m.dylib (3086.1) <951F633F-57B7-398B-912F-F6ED4DB1C597> /usr/lib/system/libsystem_m.dylib
    0x9540a000 - 0x95418ff7  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <637E7AB2-1077-319C-A6A2-D0D0F01951BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
    0x95419000 - 0x9541dffb  libGIF.dylib (1231) <9DE811E6-6151-32B2-8C89-AD97EC7815B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9541e000 - 0x95614fff  libicucore.A.dylib (531.30) <BD09E200-FF42-3E9D-814C-0BC8F2C0EAC9> /usr/lib/libicucore.A.dylib
    0x95615000 - 0x9563bff3  libc++abi.dylib (125) <E9AF8CA1-D54D-37E3-8363-A3E8C0840F71> /usr/lib/libc++abi.dylib
    0x95666000 - 0x9568cffb  libPng.dylib (1231) <A9ACFC7E-9F25-3F15-AFAB-C74C3DAA1D06> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95790000 - 0x95b86ff3  com.apple.CoreGraphics (1.600.0 - 772) <0D322365-219E-3D67-96BB-2B2416ACB4F5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x95cfd000 - 0x95da2fff  com.apple.Metadata (10.7.0 - 916) <2776B7E6-9047-3E30-9297-DD5CF53D7C42> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95da3000 - 0x95dc2ff7  com.apple.GenerationalStorage (2.0 - 209.11) <34CF76B2-8052-359D-816D-092608FB6919> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x95dc3000 - 0x961f6ff3  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <EF92C25B-3E33-379F-A862-75C2FCA8B386> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x961f7000 - 0x961feff3  libunwind.dylib (35.3) <29D9343F-9A0A-3535-B0AE-E7CC761D95EE> /usr/lib/system/libunwind.dylib
    0x96221000 - 0x9623afff  com.apple.Kerberos (3.0 - 1) <92735F11-CF1C-3FA6-8682-9A30AC9E2651> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9623b000 - 0x9623efff  libextension.dylib (55) <E191881E-EAFD-3FD4-A8C1-7620DDC6F125> /usr/lib/libextension.dylib
    0x964db000 - 0x964dbfff  com.apple.ApplicationServices (48 - 48) <76C301A4-705B-33DE-BA11-C89DCF1EDCDD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x964dc000 - 0x96502ffb  libxpc.dylib (559.1.22) <CB6B442F-8BE4-37B6-9A00-4753BC1C368C> /usr/lib/system/libxpc.dylib
    0x96503000 - 0x96707ff3  com.apple.CFNetwork (720.0.9 - 720.0.9) <7CDEA161-4DDC-381D-A2EF-B5F7B2154B8A> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x96708000 - 0x96715ff7  libbz2.1.0.dylib (36) <6BC7B049-8F03-3217-9840-B1804CCBF742> /usr/lib/libbz2.1.0.dylib
    0x96716000 - 0x9672bffb  com.apple.MultitouchSupport.framework (260.30 - 260.30) <2E28AF1C-AC6C-364F-B181-C5926A7F5A4D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x96761000 - 0x96765ffb  libcache.dylib (69) <55501A00-AF64-3554-8F46-8D5AFEDEC332> /usr/lib/system/libcache.dylib
    0x96766000 - 0x9676ffff  com.apple.DiskArbitration (2.6 - 2.6) <D906604A-1D8C-31BF-8F22-EA219FFC858F> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x97815000 - 0x97b6dfff  libmecabra.dylib (666) <2248841A-A8F6-3F98-AFA2-F60F7539B788> /usr/lib/libmecabra.dylib
    0x97b6e000 - 0x97baeffb  libGLImage.dylib (11.0.7) <1F2F2EFE-1EFA-398F-80D6-8AC6EA5160DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x97baf000 - 0x97bbffff  libGL.dylib (11.0.7) <2AF64D8C-3447-3C85-B4A1-77F03456E402> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x97bc6000 - 0x97be9ffb  com.apple.framework.Apple80211 (10.0 - 1000.57.3) <73620B5D-1E69-37DE-B186-AE9E8E7834D8> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x97bea000 - 0x97bfbfff  libbsm.0.dylib (34) <C9F0C608-2794-3F6B-8078-583FC0046039> /usr/lib/libbsm.0.dylib
    0x97bfc000 - 0x97c08ff7  libkxld.dylib (2782.1.97) <779DF7F9-9B34-3FD9-9BC1-482CDA59E17A> /usr/lib/system/libkxld.dylib
    0x97c09000 - 0x97c09fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <180BFBE5-2218-3A6F-A1B2-CCA1C92B66F7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x97c0a000 - 0x97c27fff  libCRFSuite.dylib (34) <781A92EF-410E-39B2-953D-FEE12748D834> /usr/lib/libCRFSuite.dylib
    0x97c28000 - 0x97c30fff  libsystem_dnssd.dylib (561.1.1) <45CDAF46-03DE-33DB-A627-14F245993EF2> /usr/lib/system/libsystem_dnssd.dylib
    0x97c31000 - 0x97ca7fff  com.apple.securityfoundation (6.0 - 55126) <64E4CE02-8BE6-3408-99A5-23E5CF7545BC> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x97ca8000 - 0x97ca9fff  libDiagnosticMessagesClient.dylib (100) <3EE83437-AA9C-356B-810B-589346B73797> /usr/lib/libDiagnosticMessagesClient.dylib
    0x97cc5000 - 0x97ce2ffb  com.apple.Ubiquity (1.3 - 313) <9ED23769-0725-3D4B-B7F4-AF08020D73C3> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x97ce3000 - 0x97cf6fff  libcmph.dylib (1) <2449B048-208E-36FB-9DFA-47E0F3BCF132> /usr/lib/libcmph.dylib
    0x97cf7000 - 0x97cfbffb  com.apple.IOSurface (97 - 97) <ADB57CD2-455A-317C-818E-6379BF427D10> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x97d30000 - 0x97e34ff7  libJP2.dylib (1231) <77B25D2E-F9DE-3565-894A-970DE207B0EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x97e5f000 - 0x97e5ffff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <64ED443E-25D5-3A2C-A028-0D0C7FAF57C6> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x97e60000 - 0x98a4cfff  com.apple.AppKit (6.9 - 1343.14) <8A4EA92C-E6DE-3F03-9B88-A183FCDD6644> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x98a4d000 - 0x98b63ff3  com.apple.desktopservices (1.9 - 1.9) <01A07F2E-9F9A-3847-AB11-C550827B3778> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x98b64000 - 0x98ba4fff  libauto.dylib (186) <1609D0F9-6E3A-3C67-87EF-BB0BD93EDAC9> /usr/lib/libauto.dylib
    0x98ba5000 - 0x98f7bff7  com.apple.HIToolbox (2.1.1 - 756) <5204085A-4D56-3430-889F-11C42E43729B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x98f7c000 - 0x98fd1ff3  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <F5A586C3-A440-3E0E-966A-7841A182E5B2> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x98fd2000 - 0x99161ff3  libsqlite3.dylib (168) <C3F78985-C19B-3320-9F71-543969632128> /usr/lib/libsqlite3.dylib
    0x99172000 - 0x99176ffb  com.apple.TCC (1.0 - 1) <BFA66EA1-2839-3648-80F6-96AE136A6838> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x99177000 - 0x99177fff  com.apple.CoreServices (62 - 62) <FF296ED2-0F90-3055-BBE4-7BF9E42322EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x99178000 - 0x9917ffff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <5D268178-3812-3777-92A6-D7D3395405B8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x99180000 - 0x992f1ffb  libBLAS.dylib (1128) <ACEF468C-5DB1-38F3-BCB2-6F3D7F2B2040> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9930b000 - 0x99319ff7  libz.1.dylib (55) <DF3B8F77-8931-3A6B-8BDF-DB67315050E6> /usr/lib/libz.1.dylib
    0x9931a000 - 0x99324ffb  com.apple.audio.SoundManager (4.2 - 4.2) <4312D0A7-4B6F-3A1E-9A47-24C6E8C65E51> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x99353000 - 0x994deffb  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <44BCEAB8-306D-307F-92C8-6656F3578220> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x994df000 - 0x996a3ff3  com.apple.QuartzCore (1.10 - 361.11) <9CED60CF-9B7F-3288-A7E9-3AE087F9E076> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x99757000 - 0x99757fff  libkeymgr.dylib (28) <06DDCEF8-EB84-3F68-9E19-FD1A12B764FD> /usr/lib/system/libkeymgr.dylib
    0x99758000 - 0x9975bfff  libpam.2.dylib (20) <E2F34522-448A-3392-BC1D-6625BEB612B9> /usr/lib/libpam.2.dylib
    0x999f6000 - 0x99a7dfff  com.apple.CoreServices.OSServices (640.3 - 640.3) <8DD52AC8-238C-3E5C-ADBB-ABDA770D708A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x99a7e000 - 0x99a84ff7  libsystem_networkextension.dylib (167.1.10) <FC20E3AD-A53D-3346-AC71-829E82832AE8> /usr/lib/system/libsystem_networkextension.dylib
    0x99a85000 - 0x99af9fff  com.apple.Heimdal (4.0 - 2.0) <5D2BE254-CFCD-3A15-9A89-1CBBDE0FF265> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x99b16000 - 0x99b93ff3  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <C3A9E799-0B67-3292-AF44-43CCA846C169> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x99c60000 - 0x99c86ff7  com.apple.IconServices (47.1 - 47.1) <9C537499-B375-3F84-BF4A-EEF757FC26A9> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x99d4b000 - 0x99e3cffb  libiconv.2.dylib (42) <4AF77F10-0BEC-3BE0-99DF-C5170EDB316B> /usr/lib/libiconv.2.dylib
    0x99e3d000 - 0x99eb0ffb  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <F46A7092-ADC6-3596-B046-8026F2814D8D> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x99eb1000 - 0x99ebafff  libcopyfile.dylib (118.1.2) <FAF3268F-C580-33D3-A5B4-74B8A8713216> /usr/lib/system/libcopyfile.dylib
    0x99ece000 - 0x99f4dfff  com.apple.SystemConfiguration (1.14 - 1.14) <89A67A1E-850F-3ED1-AB7D-9057A5B0FF0D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x99f4e000 - 0x9a080ffb  com.apple.UIFoundation (1.0 - 1) <00A59CFF-A217-3998-B22E-6E452278A302> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
    0x9a081000 - 0x9a085fff  libCoreVMClient.dylib (79) <85CBF1F3-3CE1-304F-88DF-15608C9A2367> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9a39b000 - 0x9a3befff  libJPEG.dylib (1231) <33D03A5B-CED8-3FDC-8892-723DD6E423FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9a3bf000 - 0x9a44bff3  com.apple.PerformanceAnalysis (1.0 - 1) <CB175B15-8AA3-3ECA-88ED-E561D7722DFB> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x9a44c000 - 0x9a4e1ff3  libsystem_c.dylib (1044.1.2) <819FD4E2-3B29-38F0-AC5C-BEE865489F5F> /usr/lib/system/libsystem_c.dylib
    0x9a4e2000 - 0x9a895fff  com.apple.CoreFoundation (6.9 - 1151.16) <2F4FE1E8-D09B-3C62-B884-7A41111F4FBB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9ab8f000 - 0x9ae8dff7  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <C18EC809-6E67-3D9C-82D5-34170A81254C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9ae8e000 - 0x9aeb7ff7  libsystem_info.dylib (459) <4F7A7111-7F0D-3891-9DC9-41F5D79949FE> /usr/lib/system/libsystem_info.dylib
    0x9aeb8000 - 0x9aed3ff7  com.apple.CFOpenDirectory (10.10 - 187) <12F3D599-88CE-3952-8987-7F6CEA2A809A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9aed4000 - 0x9b233ffb  com.apple.Foundation (6.9 - 1151.16) <76BF64BB-34C4-3409-BB6F-CAACDEE7681A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9b234000 - 0x9b4c7ff7  com.apple.CoreData (110 - 526) <C2C79A0B-70B1-3D88-951D-1C19D35B78E1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9b975000 - 0x9b975fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <96675103-6E3D-326A-83C0-82D3A34C3A1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9b976000 - 0x9b9a8ff7  com.apple.GSS (4.0 - 2.0) <36CBBD76-19AC-333E-AB52-A93800ABC89A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9b9a9000 - 0x9ba72fff  com.apple.backup.framework (1.6 - 1.6) <3CE096B0-65A6-3696-8726-E0B28D062834> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9ba73000 - 0x9ba78ff7  libmacho.dylib (862) <48DE74F8-09E3-344F-A82F-665083A3BF8F> /usr/lib/system/libmacho.dylib
    0x9ba9c000 - 0x9bd18ff3  com.apple.security (7.0 - 57031.1.35) <4721C22E-D6C2-3202-B80D-5E67169466D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9bd19000 - 0x9bd74fff  com.apple.LanguageModeling (1.0 - 1) <9B39E059-F48E-31AF-B1B3-B0872F362627> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
    0x9bd75000 - 0x9be6bff7  libxml2.2.dylib (26) <2F37833C-4D55-3A09-9A0C-5904E8B6892A> /usr/lib/libxml2.2.dylib
    0x9be6c000 - 0x9beb5ffb  libFontRegistry.dylib (134) <023BB8A2-8BBA-30DC-B0C2-A5F0AE3667D8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9c020000 - 0x9c05cff3  com.apple.RemoteViewServices (2.0 - 99) <2839C2F1-88DA-3843-87BF-441A374A8967> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x9c05d000 - 0x9c0effff  com.apple.CoreSymbolication (3.1 - 56072) <BADFFEF1-5CD8-37BC-B8FD-7C955EF0D0A1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x9c144000 - 0x9c14fff7  com.apple.CrashReporterSupport (10.10 - 629) <BB92BB57-6F2F-3348-BEF4-58036DF40FA4> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9c153000 - 0x9c154fff  liblangid.dylib (117) <34A0F807-755F-300B-B01F-AABAE3838451> /usr/lib/liblangid.dylib
    0x9c155000 - 0x9c168fff  com.apple.CoreBluetooth (1.0 - 1) <DF406F6F-C173-3598-8785-8A2014F770EF> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x9c172000 - 0x9c174fff  libquarantine.dylib (76) <9ADD861F-A66E-3AD1-A77E-C622E91BD203> /usr/lib/system/libquarantine.dylib
    0x9c324000 - 0x9c33bfff  libsystem_asl.dylib (267) <85BD88AD-618E-3325-AC31-10DBAB8E9AF3> /usr/lib/system/libsystem_asl.dylib
    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: 11908
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=152.7M resident=48.7M(32%) swapped_out_or_unallocated=104.0M(68%)
    Writable regions: Total=61.0M written=1708K(3%) resident=2060K(3%) swapped_out=0K(0%) unallocated=59.0M(97%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    Kernel Alloc Once                     4K
    MALLOC                             51.7M
    MALLOC (admin)                       48K
    Stack                              64.1M
    VM_ALLOCATE                        1212K
    VM_ALLOCATE (reserved)               16K        reserved VM address space (unallocated)
    __DATA                             6576K
    __IMAGE                             528K
    __LINKEDIT                         47.0M
    __OBJC                             2208K
    __TEXT                            105.8M
    __UNICODE                           544K
    mapped file                       103.1M
    shared memory                         4K
    ===========                      =======
    TOTAL                             382.4M
    TOTAL, minus reserved VM space    382.4M
    System Profile:
    Network Service: Ethernet 1, Ethernet, en0
    Bluetooth: Version 4.3.0f10 14890, 3 services, 19 devices, 1 incoming serial ports
    PCI Card: NVIDIA GeForce GT 120, Display Controller, Slot-1
    PCI Card: CalDigit USB3 Adapter, USB eXtensible Host Controller, Slot-2@9,0,0
    PCI Card: pci1b4b,9123, AHCI Controller, Slot-2@8,0,0
    PCI Card: pci1b4b,91a4, IDE Controller, Slot-2@8,0,1
    Thunderbolt Bus:
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: > LaCie d2 DVD-RW Firewire, LaCie Group SA, Up to 400 Mb/sec
    FireWire Device: My Book, WD, Up to 800 Mb/sec
    Memory Module: DIMM 1, 1 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x394A53463132383732415A2D314731443120
    Memory Module: DIMM 2, 2 GB, DDR3 ECC, 1066 MHz, 0x857F, 0x463732353655363446393333334700000000
    Memory Module: DIMM 3, 1 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x394A53463132383732415A2D314731443120
    Memory Module: DIMM 4, 1 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x394A53463132383732415A2D314731443120
    Memory Module: DIMM 5, 2 GB, DDR3 ECC, 1066 MHz, 0x857F, 0x463732353655363446393333334700000000
    Memory Module: DIMM 6, 1 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x394A53463132383732415A2D314731443120
    Memory Module: DIMM 7, 1 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x394A53463132383732415A2D314731443120
    Memory Module: DIMM 8, 1 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x394A53463132383732415A2D314731443120
    USB Device: My Book
    USB Device: Hub
    USB Device: Keyboard Hub
    USB Device: Apple Keyboard
    USB Device: Vendor-Specific Device
    USB Device: HP USB Laser Mouse
    USB Device: Hub
    USB Device: Display iSight
    USB Device: Apple LED Cinema Display
    USB Device: Display Audio
    USB Device: BRCM2046 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Backup+ Desk
    USB Device: USB-SATA Bridge
    Serial ATA Device: HL-DT-ST DVD-RW GH41N
    Serial ATA Device: Hitachi HDS723020BLA642, 2 TB
    Serial ATA Device: WDC WD10EADS-00L5B1, 1 TB
    Serial ATA Device: Hitachi HDS722020ALA330, 2 TB
    Serial ATA Device: WDC WD20EADS-11R6B1, 2 TB
    Serial ATA Device: MARVELL VIRTUALL
    Model: MacPro4,1, BootROM MP41.0081.B07, 8 processors, Quad-Core Intel Xeon, 2.26 GHz, 10 GB, SMC 1.39f5
    Graphics: NVIDIA GeForce GT 120, NVIDIA GeForce GT 120, PCIe, 512 MB

  • Flash breaks randomly, won't compile, ignores document class?

    I have run into a strange and annoying problem since updating to Flash Professional CS5.5 on my work computer.
    Sometimes, seemingly randomly, Flash stops compiling things correctly. I Test Movie by hitting Cmd+Return and it just displays what's on the stage, frame 1. The document class is never initialized, no errors at all, no trace statements print out; it acts as if there is no code at all. After this happens once, it will continue to do this until I restart Flash, which fixes the problem. However, restarting Flash every 10 - 15 minutes is very annoying.
    It seems to happen regardless of what project I'm working on or what state the project is in (i.e. if the code contains errors or not). All of our projects use external AS3 classes (no code on the timeline).
    Has anyone else encountered this problem?
    I'm using an iMac running OSX 10.6.8.

    I haven't run into this with CS5.5 yet, but it used to happen to me all the time in CS4.  Simply moving the .fla to a different folder (and make sure it publishes to a new folder) solved the problem every time.  In CS5.5, prior to the recent update to CS5.5.1, I would also sometimes have my exported swf not reflect changes I made.  I fixed that by first saving as xfl, then resaving as fla. 

Maybe you are looking for

  • Adobe Creative Suite 2 Will not work after deactivation

    First off, I don't get this company. I had to let that out. I had an issue I started out with by not knowing which computer had my Adobe Photoshop on so I ended up Googling an answer over how to deactivate my product. It led me to a chat with a repre

  • MacBook Pro, OS 10.6.8/2.8 GHz/Intel Core 2 Duo/with 4 G memory and would like to hook up an external monitor.

    I have a MacBook Pro, OS 10.6.8/2.8 GHz/Intel Core 2 Duo/with 4 G memory and would like to add an external monitor.  I have the usual ports; 2 USBs, Ethernet, as well as a couple small ports that I do not know what they are for...  sorry .  First of

  • How do I stop Determining Gapless Playback?

    Yet again, another iTunes upgrade has caused the horrible gapless playback scan to occur on my iTunes library. As a result, iTunes is totally unresponsive until this action completes. In my case, it's really slow as I'm accessing my files wirelessly

  • GTK burning application (graveman not working insinde)

    Well, I'm in troubles with graveman for past few months, so I searched for a replacing application. It must burn CD/DVD and have a GTK frontend (not gnome-dependant). A graveman working ^^ (all my burns fail at the end, CD or DVD)

  • Maximum Paper Size?

    I have Adobe Acrobat X Std running on Windows 7.  I'm thinking about upgrading to XI.  The key will be paper size.  I create large data models.  Up to 60" X 240".  I know Adobe used to have a 200" limit.  Is it stll the case?   After experimenting wi