Passing events from externally-loaded SWFs

Hi,
We have an externally-loaded swf that acts as a kind-of-a slide show.  After a user selects a particular subject from a mxml-based "menu" application, they push "buttons" in the SWF to go through a presentation, then on the last frame of the swf, I'd like to unload the swf and replace it with another "mxml" application.  How can this be done?  I have not tried to pass/capture events "up" from an externally-loaded swf before.
Thanks,
Doug

Do you own those SWFs?  If so, they should dispatch an event from a known
place like a SlideShowManager or something like that.
Other folks "cheat" and bubble events or dispatch off of the systemManager
and/or top-level application.

Similar Messages

  • Accessing events from externally loaded swf file

    hello,
    I have an swf file developed in flash 8. After loading that
    file into SWF Loader control in flex builder 3, how can we access
    the controls and events present in that particular file ?

    "surya_dhul" <[email protected]> wrote in
    message
    news:gg84e2$slm$[email protected]..
    > hello,
    > I have an swf file developed in flash 8. After loading
    > that
    > file into SWF Loader control in flex builder 3, how can
    we access the
    > controls
    > and events present in that particular file ?
    I think you'll need to use localConnection.

  • Listening to Events from inside loaded swf

    In Flash Builder 4 I have a swfLoader with which I load swf files. The swf files that get loaded get created in Flash Pro, and I would like to be able to listen for events from the level that they get loaded from. What would I have to specify in the Flash file for the path? Can't seem to be able to specify the right path.
    Thanks a lot for any help!

    I wouldnt say this is elegant but we have been having issues gaining direct access to the SWF's loaded in via OSMF. However I have done setups where I dispatch an event from a SWF and have it bubble up and catch it on the MediaContainer level. Not elegant but works- otherwise may need to make a custom MediaElement and bypass the SWFElement to gain tighter control - seems like there should be a better way, but I havnt found it.

  • Controlling a Movie Clip on the Main Timeline from a loaded SWF?

    Is it possible to control a MovieClip on the main timelne from another loaded clip?
    I see posts that control loaded clips, but most are all from the loader in the main timeline.  I have a moviclip on the main timeline that I want to make visible or invisible depending on what keyframe is playing in another loaded swf.
    If I try to call the movieClip from the loaded SWF I get "error #1119.  Access of possibly undefined property...." because it doesn't exist in the loaded SWF, just the main timeline. 
    The old AS2 way just used "_root".  Since "_root" doesn't exist any more, how do you control items on the main TimeLine from a loaded SWF?

    I am not clear what you mean because you are saying you are trying to target a movieclip that does not exist where you are trying to target it.
    Try using a trace to see what you are targeting when you you target the MovieClip(parent.parent)....
    trace(MovieClip(parent.parent));
    The other approach I mentioned earlier is the more OOP-correct approach if you would rather try that way.  Here's a rough outline of it...
    AS3 - Dispatch Event
    http://forums.adobe.com/thread/470135?tstart=120
    Example:
    Add something to trigger the event in the child (your loaded swf):
    dispatchEvent(new Event("eventTriggered")); (
    if dispatchEvent problem, see: http://www.kirupa.com/forum/showthread.php?p=1899603#post1899603)
    In your loading/parent swf, listen for the complete event on the Loader.contentLoaderInfo.  In the complete event handler, add a listener for the event on the loaded swf.
    // event handler triggered when external swf is loaded
    function loaderCompleteHandler(event:Event) {
        MovieClip(event.currentTarget.content).addEventListener("eventTriggered", eventHandler);
    function eventHandler(event:Event):void {
        trace("event dispatched in loaded swf");
       // this is where your main file can set the visible property of your movieclip

  • Can't target main stage from dynamically loaded swf...

    A part of the Flash app. I'm working on right now does the following -
    Main stage loads an external swf using the following function:
    function loadAsset(evt:String):void{
    var assetName:String = evt;
    if (assetName != null){
      var assetLdr:Loader = new Loader(); 
      var assetURL:String = assetName; 
      var assetURLReq:URLRequest = new URLRequest(assetURL); 
      assetLdr.load(assetURLReq); 
      assetLdr.contentLoaderInfo.addEventListener( Event.INIT , loaded) 
      assetLdr.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, displayAssetLoaderProgress);  
      function loaded(event:Event):void { 
       var targetLoader:Loader = Loader(event.target.loader); 
       assetWindow.addChild(targetLoader);
    The externally loaded swf loads another external swf into itself using the following function:
    function loadQuiz(evt:String):void{   
    var quizName:String = evt;
    if (quizName != null){
      var quizLdr:Loader = new Loader();
      var quizURL:String = quizName;
      var quizURLReq:URLRequest = new URLRequest(quizURL);
      quizLdr.load(quizURLReq);
      quizLdr.contentLoaderInfo.addEventListener( Event.INIT , loaded)       
      quizLdr.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, displayQuizLoaderProgress); 
      function loaded(event:Event):void {
       var targetLoader:Loader = Loader(event.target.loader);
       quizWindow.assetLoader.addChild(targetLoader);     
    Everything loads fine, but from the quizWindow.assetLoader.addChild(targetLoader) level, I want to send a message/fill in a dynamic text box on the Main Stage. I have been "parenting" my brains out and I'm not sure how to communicate with that level.
    can anyone show me the proper path or method based off the above, or have a suggestion?
    Cheers,
    ~Chipleh

    Andrei1,
    Thanks again for your help. I was finally able to get the solution you posted below to work for me.
    Much appreciation,
    ~Chipleh
    "In your loaded movie write:
    function traceMyself(e:MouseEvent):void{
         dispatchEvent(new Event("I_WANT_TEXT"));
    function writeText(text:String):void {
         xmlFileName1.text = text;
    In the top movie that loads external swfs something like that:
    loadedSwf.addEventListener("I_WANT_TEXT", onTextRequest, true);
    function onTextRequest(e:Event):void {
         Object(e.target).writeText(tQuizXmlFile1.theQuizXmlFile.text);
    This way these two entities are independent and, most importantly, don't care who is the parent or grandparent."

  • How can I make my external loaded .SWF file smoothly disappear after 15 seconds?

    Hi,
    How can I make my external loaded .SWF file smoothly disappear after 15 seconds? The following is the code to load an external .SWF file:
    var K:Loader=new Loader();
    addChild(K);
    K.load(new URLRequest("clock.swf"));
    K.x = 165;
    K.y = 247;
    K.contentLoaderInfo.addEventListener(Event.INIT, growLoader);
    function growLoader(evt:Event):void {
         K.width = 130;
         K.height = 130;
    I want to make clock.swf file disappear from the page after 15 seconds using some smooth disappear effect.
    Please help.
    Thanks.

    Something even better:
    http://www.greensock.com/
    Check out TimelineMax I LOVE it...
    The guy that made this (and gives it away for free!) is a saint.

  • Dynamic Text in Externally Loaded swf

    hi. i have a dynamic text field in an externally loaded swf. Its a digital clock so i want the numbers to update in the dynamic text field.
    this is not my exact code but it is very similar. i show below that i add the loader.swf, and once its loading is complete, i can work on its movieclips and add event listeners to its buttons, etc. but i cannot change the dynamic text field (its "classic text" set to "dynamic text"). after running this, the text just stays empty as it is in the external swf).
    here is the sample code:
    var loader:Loader = new Loader();
    loader.load(new URLRequest("loader.swf"));
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loaded);
    function loaded(event:Event):void{
         addChild(loader);
         var loader_mc:MovieClip = (loader.content as MovieClip)
         loader_mc.myMovieClip.gotoAndStop(2);//***this works
         loader_mc.myButton_btn.addEventListener(MouseEvent.CLICK, clickMe);//***this works
         loader_mc.myText_txt.text = "12";//***this doesn't work******
    please help. thanks!

    Did you embed the font in the textfield--it needs to be done in the loaded swf when you create it? One other thing to check is that the color for the textfield is not the same as the background it sits on.

  • Using the DateField in an Externally loaded SWF

    Hello,
    I have been having major trouble trying to get a basic PHP
    contact form to work within an externally loaded SWF file inside of
    a parent SWF. When I test the movie on its own it seems to work
    fine (example: I'm able to select a date from the DateField
    component). However, when I open up the parent SWF file and call
    the external SWF file with the form the DateField is basically
    unusable (example: when you click on it nothing happens, no
    calendar pops up to select a date).
    I have no ActionScript on it yet, simply because I figure I
    need it to work before I tell it what to do with the PHP file. The
    instance name on the DateField is "theDate". Any help is very much
    appreciated. Thank you.
    Also, I have just successfully used the contact form on the
    web. But, the only user interface components I am able to edit are
    the input text boxes, not the DateField or the ComboBox I have in
    it as well. This is very odd, I was not aware that anything special
    had to be done using these UI components within an external file.
    Elijah

    Hello 2m,
    Maybe if you were to see it, it may help you out a bit. If
    you
    click
    here for the external file you will see that the components are
    working. However, if you
    click
    here for the parent file and then click on "Meetings" on the
    top menu you will see that they do not work at all. However, if
    someone were to hit the "send" button, the PHP code would actually
    interact with the form. Let me know if that helps at all. Thanks
    again for replying.
    Elijah

  • Calling a function in the main movie from a loaded swf

    I realize this is probably a very basic question, but I have
    loaded a SWF file into another movie. I now want to call a function
    in the main SWF. Is there a way to do that? Alternatively, I have a
    custom class where I could put the function, but I haven't been
    able to figure out how to call it from the loaded SWF either. Do I
    somehow need to associate the class with the main movie,
    or...?

    Never mind - I was doing something very stupid and wasn't
    calling the function as a method of a movie clip. I was simply
    calling checkTarget(event) rather than
    event.currentTarget.checkTarget(event); which seems to work.

  • Calling a function in a flex app from a loaded SWF

    How can I call a function in a flex application from a loaded
    swf file?

    Two ways:
    Application.application returns a reference to the top-level
    application scope. You can access any public member, var, function,
    component, etc through that reference.
    Dispatch an event event form the loaded swf and use a event
    handler in the main app. All the gurus advise this as best
    practice, to ensure "loose coupling" It is also pretty easy,
    especially if you use a bubbling event.
    Tracy

  • HT5958 FCP 10.1 always crashes when I try to load projects/events from external hard drive

    Since I updated, FCP 10.1 always crashes when I try to load my projects and events from my external hard drive. Any suggestions on what to do?

    I get this.
    Process:         Final Cut Pro [437]
    Path:            /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    Identifier:      com.apple.FinalCut
    Version:         10.1 (238755)
    Build Info:      ProEditor-23875005025000000~5
    App Item ID:     424389933
    App External ID: 223682791
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [142]
    Responsible:     Final Cut Pro [437]
    User ID:         501
    Date/Time:       2013-12-30 14:20:07.256 -0500
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  A6F6AF00-638B-ACA8-0D5A-A48565F5D601
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Application Specific Information:
    objc_msgSend() selector name: countByEnumeratingWithState:objects:count:
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff8e6b6097 objc_msgSend + 23
    1   com.apple.Flexo                         0x00000001016c5ea0 +[FFLibrary replicateOfflineMediaWithNewLibrary:] + 2288
    2   com.apple.Flexo                         0x00000001016b6006 -[FFLibraryDocument initWithURL:isTemporary:createDefaultEvent:error:] + 1414
    3   com.apple.Flexo                         0x00000001016b60c9 -[FFLibraryDocument initWithContentsOfURL:ofType:error:] + 121
    4   com.apple.AppKit                        0x00007fff96e6829b -[NSDocumentController makeDocumentWithContentsOfURL:ofType:error:] + 772
    5   com.apple.AppKit                        0x00007fff96e75e62 -[NSDocumentController(NSDeprecated) openDocumentWithContentsOfURL:display:error:] + 820
    6   com.apple.LunaKit                       0x00000001028ed967 -[LKDocumentController openDocumentWithContentsOfURL:display:error:] + 39
    7   com.apple.FinalCut                      0x00000001004d72a7 -[PEDocumentController openDocumentWithContentsOfURL:display:error:] + 471
    8   com.apple.AppKit                        0x00007fff96e67254 __80-[NSDocumentController openDocumentWithContentsOfURL:display:completionHandler:]_block_invoke_4 + 917
    9   com.apple.AppKit                        0x00007fff96e663f0 -[NSDocumentController _openDocumentWithContentsOfURL:usingProcedure:] + 583
    10  com.apple.AppKit                        0x00007fff96e66e9b __80-[NSDocumentController openDocumentWithContentsOfURL:display:completionHandler:]_block_invoke_3 + 300
    11  com.apple.CoreFoundation                0x00007fff97b117cc __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12
    12  com.apple.CoreFoundation                0x00007fff97b02ee5 __CFRunLoopDoBlocks + 341
    13  com.apple.CoreFoundation                0x00007fff97b02c6e __CFRunLoopRun + 1982
    14  com.apple.CoreFoundation                0x00007fff97b02275 CFRunLoopRunSpecific + 309
    15  com.apple.HIToolbox                     0x00007fff9058bf0d RunCurrentEventLoopInMode + 226
    16  com.apple.HIToolbox                     0x00007fff9058bcb7 ReceiveNextEventCommon + 479
    17  com.apple.HIToolbox                     0x00007fff9058babc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    18  com.apple.AppKit                        0x00007fff969b928e _DPSNextEvent + 1434
    19  com.apple.AppKit                        0x00007fff969b88db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    20  com.apple.AppKit                        0x00007fff969ac9cc -[NSApplication run] + 553
    21  com.apple.prokit                        0x00000001007eef6a NSProApplicationMain + 333
    22  libdyld.dylib                           0x00007fff9119a5fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff95564662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8efc243d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8efc2152 _dispatch_mgr_thread + 52
    Thread 2:: com.apple.ProGL.object-deletion
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c3b _pthread_cond_wait + 727
    2   com.apple.progl.framework               0x00000001029e0522 (anonymous namespace)::threadFunc(void*) + 71
    3   com.apple.procore.framework             0x000000010061d72f PCThread::startup(void*) + 29
    4   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c3b _pthread_cond_wait + 727
    2   com.apogee.ONEPlugIn                    0x00000001285cc707 apogeeDriverPlugInMessageQueue::WaitForNextMessageInList() + 53
    3   com.apogee.ONEPlugIn                    0x00000001285cc923 ClientBiDirConnection::HandlePropertyChanges() + 33
    4   com.apogee.ONEPlugIn                    0x00000001285cc8fa PthreadHandlingPropertyChanges(void*) + 14
    5   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c3b _pthread_cond_wait + 727
    2   com.apogee.ONEPlugIn                    0x00000001285cc014 MessageTX::TXThread() + 74
    3   com.apogee.ONEPlugIn                    0x00000001285cbfc2 TransmitThread(void*) + 14
    4   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff9556391a __recvfrom + 10
    1   com.apogee.ONEPlugIn                    0x00000001285cccd6 ClientBiDirLocalSocketConnection::ReceiveData(void*, int) + 40
    2   com.apogee.ONEPlugIn                    0x00000001285cb8cb MessageRX::RXThread() + 107
    3   com.apogee.ONEPlugIn                    0x00000001285cb7e6 ReceiveThread(void*) + 14
    4   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 6:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c3b _pthread_cond_wait + 727
    2   com.apple.CoreVideo                     0x00007fff8e191a38 CVDisplayLink::runIOThread() + 656
    3   com.apple.CoreVideo                     0x00007fff8e19178f startIOThread(void*) + 147
    4   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 7:: MIO Mounting Thread
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c77 _pthread_cond_wait + 787
    2   com.apple.Foundation                    0x00007fff97fe58d0 -[NSCondition waitUntilDate:] + 344
    3   com.apple.Foundation                    0x00007fff97fdc778 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    4   com.apple.proapps.MIO                   0x00000001024d1c0d -[PluginLockPair scanPaths] + 189
    5   com.apple.Foundation                    0x00007fff9801470b __NSThread__main__ + 1318
    6   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 8:: MIO Mounting Thread
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c77 _pthread_cond_wait + 787
    2   com.apple.Foundation                    0x00007fff97fe58d0 -[NSCondition waitUntilDate:] + 344
    3   com.apple.Foundation                    0x00007fff97fdc778 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    4   com.apple.proapps.MIO                   0x00000001024d1c0d -[PluginLockPair scanPaths] + 189
    5   com.apple.Foundation                    0x00007fff9801470b __NSThread__main__ + 1318
    6   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 9:: MIO Mounting Thread
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c77 _pthread_cond_wait + 787
    2   com.apple.Foundation                    0x00007fff97fe58d0 -[NSCondition waitUntilDate:] + 344
    3   com.apple.Foundation                    0x00007fff97fdc778 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    4   com.apple.proapps.MIO                   0x00000001024d1c0d -[PluginLockPair scanPaths] + 189
    5   com.apple.Foundation                    0x00007fff9801470b __NSThread__main__ + 1318
    6   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 10:: MIO Mounting Thread
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c77 _pthread_cond_wait + 787
    2   com.apple.Foundation                    0x00007fff97fe58d0 -[NSCondition waitUntilDate:] + 344
    3   com.apple.Foundation                    0x00007fff97fdc778 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    4   com.apple.proapps.MIO                   0x00000001024d1c0d -[PluginLockPair scanPaths] + 189
    5   com.apple.Foundation                    0x00007fff9801470b __NSThread__main__ + 1318
    6   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 11:: MIO Mounting Thread
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c77 _pthread_cond_wait + 787
    2   com.apple.Foundation                    0x00007fff97fe58d0 -[NSCondition waitUntilDate:] + 344
    3   com.apple.Foundation                    0x00007fff97fdc778 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    4   com.apple.proapps.MIO                   0x00000001024d1c0d -[PluginLockPair scanPaths] + 189
    5   com.apple.Foundation                    0x00007fff9801470b __NSThread__main__ + 1318
    6   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 12:: com.apple.dvdplayback-DDPTask
    0   libsystem_kernel.dylib                  0x00007fff9555fa56 semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x000000012e1e67b7 semaphore_wait(viona_semaphore_t*) + 39
    2   com.apple.AVCHDPlugin                   0x000000012e1f1fea WinPortServer::ProcessMessages() + 90
    3   com.apple.AVCHDPlugin                   0x000000012e1a2408 0x12e140000 + 402440
    4   com.apple.AVCHDPlugin                   0x000000012e1e6d82 ST20Thread::Run(PThreadRunParams*) + 34
    5   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff9555fa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff9555ed18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff97b03315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff97b02939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff97b02275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff96b591ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff9555fa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff9555ed18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff97b03315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff97b02939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff97b02275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff97bb79d1 CFRunLoopRun + 97
    6   com.apple.DiscRecording                 0x00007fff964cf15e DRWorkLoop::WorkLoop() + 228
    7   com.apple.DiscRecording                 0x00007fff964cf067 DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 9
    8   com.apple.DiscRecording                 0x00007fff964ced77 DRThreadObject::StartRoutine(DRThreadObject*) + 125
    9   com.apple.DiscRecording                 0x00007fff964cec11 DRThreadObject::SymbolRoutine(DRThreadObject*) + 9
    10  libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    11  libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    12  libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff95563e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff936bff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff936c2fb9 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff95563e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff936bff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff936c2fb9 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff95563e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff936bff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff936c2fb9 start_wqthread + 13
    Thread 18:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff95563a3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8ee95e60 nanosleep + 200
    2   libsystem_c.dylib                       0x00007fff8ee95d52 usleep + 54
    3   com.apple.AppKit                        0x00007fff96c1d2ad -[NSUIHeartBeat _heartBeatThread:] + 2132
    4   com.apple.Foundation                    0x00007fff9801470b __NSThread__main__ + 1318
    5   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff95563e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff936bff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff936c2fb9 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff95563e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff936bff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff936c2fb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000060800069ddd0  rcx: 0x00007fff5f74cb30  rdx: 0x00007fff5f74cbb0
      rdi: 0x0000608003243750  rsi: 0x00007fff973e384e  rbp: 0x00007fff5f74d010  rsp: 0x00007fff5f74c378
       r8: 0x0000000000000010   r9: 0x00007fff5f74be00  r10: 0x00007fff973e384e  r11: 0xbadd51da06edbead
      r12: 0x0000000000000002  r13: 0x0000000000000002  r14: 0x0000608003243750  r15: 0x00006000010b20c0
      rip: 0x00007fff8e6b6097  rfl: 0x0000000000010246  cr2: 0x0000600001b61000
    Logical CPU:     0
    Error Code:      0x00000000
    Trap Number:     13
    Binary Images:
           0x1004b1000 -        0x100572ff7  com.apple.FinalCut (10.1 - 238755) <3B91353D-C6DF-3DF6-A26D-F7F2713A41E0> /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
           0x100601000 -        0x1006f0ff7  com.apple.procore.framework (4.0.2 - 23875.5.25) <9E69A9AE-D1FC-3D01-9B84-20CA550B4380> /Applications/Final Cut Pro.app/Contents/Frameworks/ProCore.framework/Versions/A/ProCore
           0x100756000 -        0x10079ffff  com.apple.CoreMedia.ProAppsSupport (1.0 - 1273.26) <677412E1-C337-3EFA-B448-ADC6BF85CBC9> /Applications/Final Cut Pro.app/Contents/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
           0x1007d3000 -        0x100a2cff7  com.apple.prokit (8.0 - 5015) <F9549ADF-6ED0-3319-879C-639DFC4084AE> /Applications/Final Cut Pro.app/Contents/Frameworks/ProKit.framework/Versions/A/ProKit
           0x100ba9000 -        0x101d09fe7  com.apple.Flexo (1.0.0 - 23875.5.25) <83A5AE77-25F8-34DF-B340-7CD31CC62F1A> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Flexo
           0x1024a2000 -        0x10256efff  com.apple.proapps.MIO (2.0 - 23875.5.25) <97F32080-3098-30FC-8C0B-14EFAEF0B7AE> /Applications/Final Cut Pro.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
           0x1025e7000 -        0x102637ff7  com.apple.pro.sharedstudio (1.0 - 23875.5.25) <17543320-CCF7-3E28-8162-89259F85FBB7> /Applications/Final Cut Pro.app/Contents/Frameworks/StudioSharedResources.framework/Versions/A/StudioSh aredResources
           0x102697000 -        0x1027fcfff  com.apple.TLKit (1.0 - 23875.5.25) <A250F427-D9E3-3F70-9FCE-9694DA52F751> /Applications/Final Cut Pro.app/Contents/Frameworks/TLKit.framework/Versions/A/TLKit
           0x1028ae000 -        0x10294cff7  com.apple.LunaKit (1.0 - 23875.5.25) <2A4C3844-D824-3BA8-BE4B-78CF0E14DF6F> /Applications/Final Cut Pro.app/Contents/Frameworks/LunaKit.framework/Versions/A/LunaKit
           0x1029d7000 -        0x102a0cfff  com.apple.progl.framework (1.0 - 23875.5.25) <C9506E82-2D38-329F-A4F2-55B2652922AC> /Applications/Final Cut Pro.app/Contents/Frameworks/ProGL.framework/Versions/A/ProGL
           0x102a4a000 -        0x102b64fff  com.apple.ProAppsFxSupport (4.0.0 - 23875.5.25) <67231727-5373-34E7-8F35-729C33C1A2E5> /Applications/Final Cut Pro.app/Contents/Frameworks/ProAppsFxSupport.framework/Versions/A/ProAppsFxSupp ort
           0x102e7e000 -        0x102e9bfff  com.apple.DeepSkyLite (0.6 - 23875.5.25) <88D1498E-2568-3BB9-9770-875D8813B014> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/DeepSkyLite.f ramework/Versions/A/DeepSkyLite
           0x102eb8000 -        0x103306fe7  com.apple.VideoToolbox.ProAppsSupport (1.0 - 1273.26) <EA9B1333-1A1C-35DF-913D-D5549214BA17> /Applications/Final Cut Pro.app/Contents/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
           0x103361000 -        0x10367cfff  com.apple.MediaToolbox.ProAppsSupport (1.0 - 1273.26) <6FEFA14C-211D-3ABB-AE2D-12B0816A71E1> /Applications/Final Cut Pro.app/Contents/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
           0x103728000 -        0x103865ff7  com.apple.prochannel.framework (4.0.2 - 23875.5.25) <FB948FE7-0940-3829-8954-5355AB7DE6C3> /Applications/Final Cut Pro.app/Contents/Frameworks/ProChannel.framework/Versions/A/ProChannel
           0x103970000 -        0x103970ff7  com.apple.Helium (3.1.0 - 23875.5.25) <7A145546-7E42-3253-915F-759384486430> /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
           0x10397a000 -        0x1039ecfff  com.apple.proinspector.framework (4.0.2 - 23875.5.25) <47A26270-F3B8-3BAF-AD48-BF5F1541CFFF> /Applications/Final Cut Pro.app/Contents/Frameworks/ProInspector.framework/Versions/A/ProInspector
           0x103a4f000 -        0x103a76ff7  com.apple.audio.CoreAudioKit (1.6.6 - 1.6.6) <E6FEB146-1384-3FDE-A9B4-3BC48DCEDC27> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
           0x103a95000 -        0x103ae5fe7  com.apple.proshapes.framework (1.0 - 23875.5.25) <B620D57A-3772-31F2-828E-FAD15F8EE63C> /Applications/Final Cut Pro.app/Contents/Frameworks/ProShapes.framework/Versions/A/ProShapes
           0x103b22000 -        0x103c18fff  com.apple.proosc.framework (3.1.0 - 23875.5.25) <2DA4456B-EFD1-34B9-9DCC-DE7006E64B5F> /Applications/Final Cut Pro.app/Contents/Frameworks/ProOSC.framework/Versions/A/ProOSC
           0x103c83000 -        0x103c9bfff  com.apple.iLifeFaceRecognition (1.0 - 30.11) <D7DE1825-BD61-3383-B3CC-0029E9D7D7F8> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceReco gnition.framework/Versions/A/iLifeFaceRecognition
           0x103cb0000 -        0x103d23fff  com.apple.procurveeditor.framework (3.1.0 - 23875.5.25) <55F08B18-56D6-376B-B96B-ACFFE5381733> /Applications/Final Cut Pro.app/Contents/Frameworks/ProCurveEditor.framework/Versions/A/ProCurveEditor
           0x103d70000 -        0x103d83fff  com.apple.TLKEventDispatcher (1.0 - 23875.5.25) <920DB7C6-A537-3E16-B6BC-E2C57AE94307> /Applications/Final Cut Pro.app/Contents/Frameworks/TLKEventDispatcher.framework/Versions/A/TLKEventDis patcher
           0x103d94000 -        0x1041cffff  com.apple.Helium.HeliumRender (2.1.0 - 23875.5.25) <6BFF8889-37C1-32C4-A523-9FCB6510414E> /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumRender .framework/Versions/A/HeliumRender
           0x1042e5000 -        0x10441dfe7  com.apple.Helium.Heliumfilters (2.1.0 - 23875.5.25) <82B6AD7B-FFFA-350F-A3E2-53327FCDE0E8> /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumFilter s.framework/Versions/A/HeliumFilters
           0x104799000 -        0x104a6afff  com.apple.Helium.HeliumSensoCore (2.0.2 - 23875.5.25) <0BA98B13-850C-3B42-A6CF-E52ECB15468B> /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumSensoC ore.framework/Versions/A/HeliumSensoCore
           0x104af8000 -        0x104b23fff  com.apple.FWAVC (401.47 - 47) <5FACFA64-7FE9-3B4A-B45C-908B5F89A739> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
           0x104b3c000 -        0x104b3efff +eOkaoCom.dylib (1) <393F340C-3AD1-C89B-6C37-9D8ABF4BFFD9> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceReco gnition.framework/Versions/A/Resources/eOkaoCom.dylib
           0x104b44000 -        0x104b6bff2 +eOkaoPt.dylib (1) <E6500FB8-157F-57B5-FE25-2A3A1CB3574C> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceReco gnition.framework/Versions/A/Resources/eOkaoPt.dylib
           0x104b75000 -        0x104baafe7 +eOkaoDt.dylib (1) <7A74253D-8930-6FF1-B513-0929C4E111A2> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceReco gnition.framework/Versions/A/Resources/eOkaoDt.dylib
           0x104bb9000 -        0x104d21fef +eOkaoFr.dylib (1) <510E837E-135A-92C8-9AC0-465691EA43D2> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceReco gnition.framework/Versions/A/Resources/eOkaoFr.dylib
           0x104d2a000 -        0x104d3afff  com.apple.PluginManager (1.7.4 - 23875.5.25) <48C07E45-913F-3916-9890-66C900BC6608> /Applications/Final Cut Pro.app/Contents/Frameworks/PluginManager.framework/Versions/B/PluginManager
           0x104d4c000 -        0x104d6dfff  com.apple.fxplugframework (2.4 - 23875.5.25) <0646BBC8-BEFE-306A-AC9A-D931FB24891D> /Applications/Final Cut Pro.app/Contents/Frameworks/FxPlug.framework/Versions/A/FxPlug
           0x1050f1000 -        0x10513dfff  com.apple.CoreMediaIO.FCPX.Lion (403.0 - 4555) <A43E2779-BADE-3B10-AB0D-DD860052CB61> /Applications/Final Cut Pro.app/Contents/Frameworks/CoreMediaIO.framework/Versions/Current/CoreMediaIO
           0x108b6b000 -        0x108b8cfff  com.apple.QuartzComposer.ExtraPatches (4.1 - 316) <2E4C3E98-2F12-3BFB-BA37-8F3FDC83CCB2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
           0x108ba1000 -        0x108bdcff2  com.apple.audio.midi.CoreMIDI (1.10 - 88) <AAF5250E-D422-3910-8F94-FE8BAC5B8174> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
           0x108c04000 -        0x108c28fff  com.apple.audio.OpenAL (1.7 - 1.7) <5D2366B5-111B-3BDD-AFB3-5770075659F4> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
           0x108c3a000 -        0x108c43fff  com.apple.Audio.provider (1.0.0 - 23875.5.25) <01B181BB-A9EB-3C1A-933E-57640F46D392> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/MediaProviders/A udioProvider.fxp/Contents/MacOS/AudioProvider
           0x108c4d000 -        0x108c90fff  com.apple.proapps.AppleAVCIntraCodec (1.1.2 - 6344.11) <C13A004E-905D-35A2-9748-0E816BF4B8A2> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleAVCIntraCodec.b undle/Contents/MacOS/AppleAVCIntraCodec
           0x108c9b000 -        0x108cecfff  com.apple.proapps.AppleDVCPROHDCodec (1.0.2 - 6337.11) <91175DC7-BB8E-3C3F-9FF7-6CB739EEC502> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleDVCPROHDCodec.b undle/Contents/MacOS/AppleDVCPROHDCodec
           0x108cf9000 -        0x108d1efe7  com.apple.proapps.AppleIMXCodec (1.0.2 - 6337.11) <690C9346-C59B-31AC-B255-E353FD88268A> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleIMXCodec.bundle /Contents/MacOS/AppleIMXCodec
           0x108d29000 -        0x108d6cfef  com.apple.proapps.AppleIntermediateCodec (1.0.2 - 6337.11) <7F48675F-1660-3334-A7BF-7A8C781211DF> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleIntermediateCod ec.bundle/Contents/MacOS/AppleIntermediateCodec
           0x108d78000 -        0x108dffff7  com.apple.proapps.AppleMPEG2Codec (1.0.4 - 6308.11) <307C8BD5-D68B-3014-A546-D6D7639A8832> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleMPEG2Codec.bund le/Contents/MacOS/AppleMPEG2Codec
           0x108e0d000 -        0x108f1afaf  com.apple.proapps.AppleProResCodec (1.0.4 - 6305.11) <910CDDE2-3D95-3AA6-8A45-0477DB3F20FE> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleProResCodec.bun dle/Contents/MacOS/AppleProResCodec
           0x108f2b000 -        0x108f39ff7  com.apple.proapps.AppleUncompressedCodec (1.0.2 - 6337.11) <BA574384-C087-3330-AD81-75F081491230> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleUncompressedCod ec.bundle/Contents/MacOS/AppleUncompressedCodec
           0x108f43000 -        0x108f48ff7  com.apple.proapps.AppleCMQTAdapterCodec (1.0 - 1) <6942074A-7E60-343D-A74B-31188F474667> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/PlugIns/Apple CMQTAdapterCodec.bundle/Contents/MacOS/AppleCMQTAdapterCodec
           0x108f50000 -        0x109056ff7  com.apple.AECore (4.1 - 303) <60D7B7E2-BB07-3EF4-91ED-1E21F3596269> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/AE Core.framework/Versions/A/AECore
           0x1090c9000 -        0x1090ebfff  com.apple.FxPlug.provider (1.0.0 - 23875.5.25) <08FAE83A-9DA6-3A6A-A5F4-81BB54382034> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/MediaProviders/F xPlugProvider.fxp/Contents/MacOS/FxPlugProvider
           0x1090fb000 -        0x109377ff7  com.apple.Motion.effect (5.0.0 - 23875.5.25) <EB8B630C-AE3F-3979-A37B-8D60BDE60C57> /Applications/Final Cut Pro.app/Contents/PlugIns/MediaProviders/MotionEffect.fxp/Contents/MacOS/MotionE ffect
           0x1093c5000 -        0x109d5bfe7  com.apple.ozone.framework (5.0.0 - 23875.5.25) <AC3E0B68-442A-334D-B263-2262BAB9019D> /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/Ozone
           0x10a283000 -        0x10a2b7fff  com.apple.ProGraphics (5.0.0 - 23875.5.25) <1A6B6D39-9C66-38B5-93D2-166AD17CFCF1> /Applications/Final Cut Pro.app/Contents/Frameworks/ProGraphics.framework/Versions/A/ProGraphics
           0x10a2dd000 -        0x10a88dfe7  com.apple.motion.TextFramework (5.0.7 - 23875.5.25) <5E99A8D2-2728-38D0-A03D-60AEED2215F5> /Applications/Final Cut Pro.app/Contents/Frameworks/TextFramework.framework/Versions/A/TextFramework
           0x10aa02000 -        0x10ab4cff7  com.apple.Lithium (5.0.0 - 23875.5.25) <F9A26751-2879-39FD-99A1-C9C11879D6BD> /Applications/Final Cut Pro.app/Contents/Frameworks/Lithium.framework/Versions/A/Lithium
           0x10abcd000 -        0x10aca8ff7  org.python.python (2.6.8 - 2.6.8) <9FB69DE0-E9AF-3226-BC5C-7F80C45F9568> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
           0x10ad09000 -        0x10ad1afff  com.apple.RetimingMath (5.0.0 - 23875.5.25) <ADA1AAE6-1D30-37A5-91BF-BAA648E318D7> /Applications/Final Cut Pro.app/Contents/Frameworks/RetimingMath.framework/Versions/A/RetimingMath
           0x10ad2f000 -        0x10ade1fe7  com.apple.ProMedia (5.0.0 - 23875.5.25) <DC8ECC57-1C18-3112-B3C7-D5E20599FCA2> /Applications/Final Cut Pro.app/Contents/Frameworks/ProMedia.framework/Versions/A/ProMedia
           0x10ae5b000 -        0x10aec9fff  com.apple.proapps.AudioMixEngine (2.0 - 68) <8403BADC-F1E4-3C60-8595-8AFC75C7104C> /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/Frameworks/AudioMixEngin e.framework/Versions/A/AudioMixEngine
           0x10af91000 -        0x10af98fff  com.apple.filter.PAECIAdaptor (1.0 - 23875.5.25) <71F51571-7A6D-32FD-BD94-006FD57CE406> /Applications/Final Cut Pro.app/Contents/PlugIns/FxPlug/PAECIAdaptor.fxplug/Contents/MacOS/PAECIAdaptor
           0x10afb1000 -        0x10afc1ff7  com.apple.pluginkit.framework (1.0 - 1) <9C95115C-FB99-3778-B3A1-FC7D61EC21E3> /Applications/Final Cut Pro.app/Contents/Frameworks/FxPlug.framework/Versions/A/Frameworks/PlugInKit.fr amework/PlugInKit
           0x10b001000 -        0x10b29afe7  com.apple.motion.filters (4.0.2 - 23875.5.25) <7D9F6CDD-CCAA-375C-8F9F-4C070EFB358A> /Applications/Final Cut Pro.app/Contents/PlugIns/FxPlug/InternalFilters.app/Contents/PlugIns/InternalFi ltersXPC.pluginkit/Contents/PlugIns/Filters.bundle/Contents/MacOS/Filters
           0x10b361000 -        0x10b4b6ff7  com.apple.motion.filtersLegacyPath (4.0.2 - 23875.5.25) <FF4FDB0A-662F-3FD6-B1E3-3443867936E3> /Applications/Final Cut Pro.app/Contents/PlugIns/FxPlug/FiltersLegacyPath.bundle/Contents/MacOS/Filters LegacyPath
           0x111ac4000 -        0x111ac8fff  com.apple.agl (3.2.3 - AGL-3.2.3) <1B85306F-D2BF-3FE3-9915-165237B491EB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x113522000 -        0x1136d7fff  com.apple.motion.Behaviors (5.0.0 - 23875.5.25) <B7188AF0-3D56-3004-8DC8-4FC93F4BF596> /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/PlugIns/Behaviors.ozp/Co ntents/MacOS/Behaviors
           0x1137a5000 -        0x1137fcfff  com.apple.Bloodhound (5.0.0 - 23875.5.25) <535ACFDF-D5EF-35FE-A80C-A458791490E7> /Applications/Final Cut Pro.app/Contents/Frameworks/Bloodhound.framework/Versions/A/Bloodhound
           0x11382f000 -        0x113a0eff7  com.apple.motion.Particles (5.0.0 - 23875.5.25) <70589705-899D-3A41-9A16-6182AC05541E> /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/PlugIns/Particles.ozp/Co ntents/MacOS/Particles
           0x113aa3000 -        0x113ab6fff  com.apple.motion.Text (5.0.0 - 23875.5.25) <56D27368-C949-32AA-A69F-407353C1BF58> /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/PlugIns/Text.ozp/Content s/MacOS/Text
           0x113ac8000 -        0x113afefff  com.apple.proapps.flexo.AudioEffects (1.0.0 - 23875.5.25) <B1E8FC85-54D2-3B7F-AE89-06D402173B80> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/AudioEffec ts.component/Contents/MacOS/AudioEffects
           0x113b08000 -        0x113b2afff  com.apple.EDEL (2.5 - 567.11) <8BDD62B3-3C40-37BC-A7E3-008DCD2AF6D7> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/MacOS/EDEL
           0x113b3e000 -        0x113bb9ff7  com.apple.music.apps.MACore (9.1.0 - 475.15) <11AB96F5-7AFF-3216-A20C-873F58F1BF57> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Frameworks/MACore.framework/Versions/A/MACore
           0x113bf6000 -        0x113c96ff7  com.apple.music.apps.MAFiles (9.1.0 - 143.14) <F5A700DD-D7B9-37E0-ABA5-E5D6B8199DED> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
           0x113ccb000 -        0x113ccdfff  com.apple.music.apps.common.resources (9.1.0 - 279.8) <23D4E4F4-2B65-35EC-A769-A3B41E08C415> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/common.res/Contents/MacOS/common
           0x113cd3000 -        0x113cd5fff  com.apple.music.apps.efx.resources (9.1.0 - 279.8) <4488AA11-FAC9-3159-8716-520CEC942521> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/efx.res/Contents/MacOS/efx
           0x113cdb000 -        0x113cddfff  com.apple.music.apps.egt.resources (9.1.0 - 279.8) <80D3ACD3-A2F1-313A-A573-B39109A05CA4> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/egt.res/Contents/MacOS/egt
           0x113ce3000 -        0x113ce5fff  com.apple.music.apps.evb3.resources (9.1.0 - 279.8) <41ECA813-AC80-3D76-A88B-9DD3C3B906ED> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/evb3.res/Contents/MacOS/evb3
           0x1174cd000 -        0x117824fff  com.apple.music.apps.MADSP (9.1.0 - 586.17) <8B17D01A-55D4-37B8-B4D8-4B5985803ACF> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
           0x117b95000 -        0x117bd4fff  com.apple.music.apps.MAHarmony (9.1.0 - 198.11) <02593B67-F594-3791-90A6-29049A119920> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
           0x117be7000 -        0x118045ff7  com.apple.music.apps.MAPlugInGUI (9.1.0 - 423.13) <36BF03CA-059F-3CBD-B5E9-B0EE1FA4C56B> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
           0x11824a000 -        0x11824cfff  com.apple.music.apps.evd6.resources (9.1.0 - 279.8) <67BFABD2-C708-35DB-B05B-828A59784910> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/evd6.res/Contents/MacOS/evd6
           0x118252000 -        0x118254fff  com.apple.music.apps.evoc.resources (9.1.0 - 279.8) <9E9F68E1-09BE-3D4C-BADA-DED1CCFD1C10> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/evoc.res/Contents/MacOS/evoc
           0x11825a000 -        0x11825cfff  com.apple.music.apps.evp88.resources (9.1.0 - 279.8) <C59566F5-79D9-34D3-813E-3B7FC62F83ED> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/evp88.res/Contents/MacOS/evp88
           0x118262000 -        0x118264ff7  com.apple.music.apps.mutapdel.resources (9.1.0 - 279.8) <7BE47C4F-058F-3765-93EC-D5F9C525FA27> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
           0x11826a000 -        0x11826cfff  com.apple.music.apps.sphere.resources (9.1.0 - 279.8) <487797D8-49D8-31E5-8ECA-95DB2171829E> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/sphere.res/Contents/MacOS/sphere
           0x118272000 -        0x118275fff  libspindump.dylib (161) <588EDDE0-B20A-3649-92B7-C2226EB237E8> /usr/lib/libspindump.dylib
           0x127a8a000 -        0x127b15fff  com.apple.cmio.DAL.ACD (7.0 - 7.0) <9B1370A1-B779-3A1E-8559-1B08FAAD41BA> /Applications/Final Cut Pro.app/Contents/PlugIns/FCP-DAL/ACD.plugin/Contents/MacOS/ACD
           0x127cce000 -        0x127cf4ffb  com.apple.cmio.DAL.VDC-4.FCPX.Lion (403.0 - 4555) <D3F618FB-50C2-3CFA-ACAE-F6F8625558B3> /Applications/Final Cut Pro.app/Contents/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents /MacOS/VDC
           0x127f18000 -        0x127f1bff7  com.apple.iokit.SCSITaskLib (3.6.0 - 3.6.0) <7DE59064-BD1D-33A2-A72F-B98D9D83E711> /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/ SCSITaskUserClient.kext/Contents/PlugIns/SCSITaskLib.plugin/Contents/MacOS/SCSIT askLib
           0x127f25000 -        0x127f2bfff  com.apple.iLMBiTunesPlugin (2.8.0 - 390) <9540E733-8A94-3172-907C-18C373802757> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
           0x1285b5000 -        0x1285b9ffd  com.apple.audio.AppleHDAHALPlugIn (2.5.3 - 2.5.3fc1) <844CFCFD-F813-36F1-A5BF-FB9D7BD7040D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x1285be000 -        0x1285ddff7  com.apogee.ONEPlugIn (1.15.19 - 1.15.19) <2A39B68F-3D3B-3CC7-A523-104EC0E81AF4> /System/Library/Extensions/ONEPlugIn.bundle/Contents/MacOS/ONEPlugIn
           0x128779000 -        0x12879dff7 +com.tascam.usb2audio.hal (2.10.4) <6E7D79A9-024A-576F-F048-8C1FB93B75E4> /Library/Audio/Plug-Ins/HAL/TASCAM_US1xx.plugin/Contents/MacOS/TASCAM_US1xx
           0x12c54e000 -        0x12c54efff +cl_kernels (???) <61985E21-D46F-482E-A2FD-2A97EC2594C2> cl_kernels
           0x12c550000 -        0x12c636fef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x12c678000 -        0x12c75dfe7  unorm8_argb.dylib (2.3.58) <B32D2D1D-9B56-394E-9F11-4B997342C588> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_argb.dylib
           0x12e0ab000 -        0x12e0b3ff7  com.apple.ArchiveRADPlug (1.0 - 1045.6.11) <428A94BC-14DD-39C2-BF79-CF4E19567BD9> /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/Archive.RADPlug/Contents/MacOS/Archive
           0x12e140000 -        0x12e336fff  com.apple.AVCHDPlugin (2.1.0 - 1066.6.11) <FC16B799-773B-3FD4-983E-9EFD8EEBEF35> /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/AVCHD.RADPlug/Contents/MacOS/AVCHD
           0x12e4a2000 -        0x12e692fff  com.apple.MPEG2RADPlug (1.0 - 1065.4.11) <155DEC42-356D-30A0-AADE-597D4A82068F> /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/MPEG2.RADPlug/Contents/MacOS/MPEG2
           0x12e7fc000 -        0x12e80bfff  com.apple.MPEG4RADPlug (1.0 - 1067.5.11) <B3903C2B-9B38-3616-BEE9-650E3DBE9FD0> /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/MPEG4.RADPlug/Contents/MacOS/MPEG4
           0x12e81a000 -        0x12e90bff7  com.apple.mobiledevice (710.1 - 710.1) <356F402B-7499-3EA6-8541-A3D89F6D119F> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
           0x12e9f3000 -        0x12ea1fff7  com.apple.P2Plugin (2.0.0 - 1022.8.97) <412805EC-6B8F-3EE7-AA14-C01F16B45D3F> /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/P2.RADPlug/Contents/MacOS/P2
           0x12eb43000 -        0x12ebdbfff  com.apple.CompressorKitMAS (4.1 - 4.1) <CF17F9FB-9B0B-3E84-B8D4-993FF0D93362> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/CompressorKit.framework/CompressorKit
           0x12ec4a000 -        0x12ec4fff7  com.apple.qmaster.swamp (4.1 - 4.1) <43BC358D-E47D-3979-8ACB-4EB4402D03FB> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Qmaster
           0x12ec53000 -        0x12eda3ff7  com.apple.compressor.StompUI (4.1 - 4.1) <C639B41F-3342-34A6-853E-78B808BF71AB> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/StompUI.framework/Versions/A/StompUI
           0x12ee4c000 -        0x12efaefe7  com.apple.compressor.StompTypes (4.1 - 19705.1.25) <5B79DAAF-EB97-33DF-863D-89B7DAD6812E> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/StompTypes.framework/Versions/A/StompTy pes
           0x12f022000 -        0x12f02cfff  com.apple.compressor.MediaServerAPI (4.1 - 4.1) <F02080AF-1D43-311C-94BF-ECFF34A4EDBB> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Me diaServerAPI.framework/Versions/A/MediaServerAPI
           0x12f037000 -        0x12f047ff7  com.apple.compressor.StompUtil (4.1 - 4.1) <3A3E0129-2153-3C48-884C-D5B777511B8D> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/StompUtil.framework/Versions/A/StompUti l
           0x12f056000 -        0x12f061ff7  com.apple.dsppublishing (1.0.1 - 119) <5766B17B-1804-3B9C-96B1-A91DF3F95B08> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/DS PPublishing.framework/Versions/A/DSPPublishing
           0x12f074000 -        0x12f0ccfff  com.apple.qmaster.SwampCore (4.1 - 303) <CFBDC4D9-BF1A-3E71-BA57-19605FBBF7EB> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/SwampCore.framework/Versions/A/SwampCore
           0x12f101000 -        0x12f114fff  com.apple.qmaster.SwampUtil (4.1 - 4.1) <9C52A6FD-0457-3FD9-852F-BE36324A42F2> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/SwampUtil.framework/Versions/A/SwampUtil
           0x12f122000 -        0x12f21cff7  com.apple.qmaster.SwampTypes (4.1 - 4.1) <83326BF0-4A35-3B1A-80B2-0D9C8770A655> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/SwampTypes.framework/Versions/A/SwampTypes
           0x12f288000 -        0x12f31eff7  com.apple.qmaster.do (4.1 - 4.1) <DB62431A-771D-3901-BF46-7AFDBBC66B01> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/DistributedObjects.framework/Versions/A/Di stributedObjects
           0x12f380000 -        0x12f38dff7  com.apple.qmaster.SwampService (4.1 - 4.1) <BB1128D6-C63B-38DF-B392-E45F33801695> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/SwampService.framework/Versions/A/SwampSer vice
           0x12f39f000 -        0x12f3aefff  com.apple.qmaster.Status (4.1 - 4.1) <EE05ECF7-4433-3369-8AC7-AEA1848775E9> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/Status.framework/Versions/A/Status
           0x12f3c7000 -        0x12f3d6fff  com.apple.qmaster.RequestProcessing (4.1 - 4.1) <CCCA5942-DE42-3B04-A7E0-2B3E8DFC5D96> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/RequestProcessing.framework/Versions/A/Req uestProcessing
           0x12f3ed000 -        0x12f408fff  com.apple.qmaster.ServiceControl (4.1 - 4.1) <4AF34E2F-FF9A-3739-B33A-A2D9C2F90DD6> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/ServiceControl.framework/Versions/A/Servic eControl
           0x12f425000 -        0x12f4a5ff7  com.apple.qmaster.ContentControl (4.1 - 4.1) <E3B93F3B-69CA-329A-972F-478004BD4F38> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/ContentControl.framework/Versions/A/Conten tControl
           0x12f4e1000 -        0x12f5f1ff7  com.apple.qmaster.JobControl (4.1 - 4.1) <3529DA43-FDEA-361B-B8AE-31009B9DE219> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/JobControl.framework/Versions/A/JobControl
           0x12f66a000 -        0x12f679fff  com.apple.qmaster.ClusterManager (4.1 - 4.1) <852CE3C3-59F8-3916-93B1-B34E1197CB38> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/ClusterManager.framework/Versions/A/Cluste rManager
           0x12f686000 -        0x12f6bcff7  com.apple.qmaster.SwampUI (4.1 - 4.1) <210B913E-1FCD-3FC3-B20E-83A5642C372C> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/SwampUI.framework/Versions/A/SwampUI
           0x12f6e2000 -        0x12f6f1fff  com.apple.qmaster.SwampExecutor (4.1 - 4.1) <81624CCC-8728-36B1-80DD-E694D701D53B> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/SwampExecutor.framework/Versions/A/SwampEx ecutor
           0x12f706000 -        0x12f749fff  com.apple.compressor.ImageProcessing (4.1 - 4.1) <A728ACD8-DD9A-3E6D-9E49-1D4E784AD513> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/ImageProcessing.framework/Versions/A/Im ageProcessing
           0x12f76d000 -        0x12f942fe7  com.apple.compressor.transcoding (4.1 - 4.1) <62F764DB-EA00-3F13-A668-0AD5D5E57602> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/Transcoding.framework/Versions/A/Transc oding
           0x12f9c7000 -        0x12f9d1fff  com.apple.compressor.FilterUI (4.1 - 4.1) <D1D7E01E-898C-3214-BE18-D62A8348301A> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/FilterUI.framework/Versions/A/FilterUI
           0x12f9db000 -        0x12f9e1ff7  com.apple.H264Encoder (1.0 - 5956.11) <AB2A59CC-A33D-3FBA-980E-C8DB7A10B806> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/H2 64Encoder.framework/Versions/A/H264Encoder
           0x12fec0000 -        0x12ff63ff7  com.apple.iTunesAccess (11.1.3 - 11.1.3) <3257712A-D172-3D79-A6F9-BDA227E54330> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
        0x123480000000 -     0x123480294ff7  com.apple.AMDRadeonX3000GLDriver (1.14.21 - 1.1.4) <3133F944-09A8-3B30-B8B0-1C68FC2119F2> /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle/Contents/MacOS/AMDRade onX3000GLDriver
        0x7fff6f945000 -     0x7fff6f978817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff8bec5000 -     0x7fff8c061ff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8c064000 -     0x7fff8c186ff1  com.apple.avfoundation (2.0 - 651.12) <03E595B7-A559-3D4D-90E9-BCA603E3A39E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8c187000 -     0x7fff8c190fff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8c191000 -     0x7fff8c1a0ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8c1a1000 -     0x7fff8c307fff  libGLProgrammability.dylib (9.0.83) <9C97E814-F674-30F8-8C2D-C45FC1E7D934> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff8c308000 -     0x7fff8c361fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8c362000 -     0x7fff8c42dfff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8c42e000 -     0x7fff8c438ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8c439000 -     0x7fff8c471ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8c52c000 -     0x7fff8c52efff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8c552000 -     0x7fff8c555fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8c556000 -     0x7fff8c696fff  com.apple.QTKit (7.7.3 - 2826.0.1) <44109489-09C2-34C4-AB66-E52A505D7887> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8c721000 -     0x7fff8c721fff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff8c722000 -     0x7fff8c76bfff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8c76c000 -     0x7fff8c81cff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8d239000 -     0x7fff8d241fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8d765000 -     0x7fff8d77cffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8d77d000 -     0x7fff8d867fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff8d868000 -     0x7fff8d8f3fff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
        0x7fff8d90a000 -     0x7fff8d90afff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8d90b000 -     0x7fff8dd59fff  com.apple.VideoToolbox (1.0 - 1273.29) <6E38291D-7A81-3033-AFB9-61ABD38B6371> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8dd5a000 -     0x7fff8dd83ff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
        0x7fff8dd84000 -     0x7fff8e165ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8e166000 -     0x7fff8e18ffff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8e190000 -     0x7fff8e1b5ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8e1b6000 -     0x7fff8e21cfff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Libra

  • How to unload externally loaded swf which contains 3D Carousel?

    Hello to all
    I am learning AS3 and have been taking on various tutorials found on the net. While learning about AS3 I came across a lesson on http://tutorials.flashmymind.com/2009/05/vertical-3d-carousel-with-actionscript-3-and-xml/ titled "Vertical 3D Carousel with AS3 and XML".
    I completed the tutorial and all worked fine so I then wanted to load the swf into a existing project. The loading of the swf goes fine and when I unload my loader it is removed but only visually as in my output panel in flash CS5 I get an error as follows
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at carousel_c_fla::MainTimeline/moveCarousel()
    this error repeats over and over again slowing my swf movie.
    So does this mean my main flash movie trying to still play / find my unloaded 3D Carousel?
    If so how do I unload remove all the AS3 that is trying to run from the 3D Carousel?
    I have included the AS3 below from the tutorial page and I understand that this is what I have to remove to "break free" from the 3D Carousel swf when it is unloaded. This is where I am stuck as my knowledge of AS3 is limited - Can you guys / girls help?
    //Import TweenMax
    import com.greensock.*;
    //The path to the XML file (use your own here)
    // old var from tutorial - var xmlPath:String = "http://tutorials.flashmymind.com/XML/carousel-menu.xml";
    var xmlPath:String = "carousel-menu.xml";
    //We'll store the loaded XML to this variable
    var xml:XML;
    //Create a loader and load the XML. Call the function "xmlLoaded" when done.
    var loader = new URLLoader();
    loader.load(new URLRequest(xmlPath));
    loader.addEventListener(Event.COMPLETE, xmlLoaded);
    //This function is called when the XML file is loaded
    function xmlLoaded(e:Event):void {
         //Make sure that we are not working with a null variable
         if ((e.target as URLLoader) != null ) {
              //Create a new XML object with the loaded XML data
              xml = new XML(loader.data);
              //Call the function that creates the menu
              createMenu();
    //We need to know how many items we have on the stage
    var numberOfItems:uint = 0;
    //This array will contain all the menu items
    var menuItems:Array = new Array();
    //Set the focal length
    var focalLength:Number = 350;
    //Set the vanishing point
    var vanishingPointX:Number = stage.stageWidth / 2;
    var vanishingPointY:Number = stage.stageHeight / 2;
    //We calculate the angleSpeed in the ENTER_FRAME listener
    var angleSpeed:Number = 0;
    //Radius of the circle
    var radius:Number = 128;
    //This function creates the menu
    function createMenu():void {
         //Get the number of menu items we will have
         numberOfItems = xml.items.item.length();
         //Calculate the angle difference between the menu items (in radians)
         var angleDifference:Number = Math.PI * (360 / numberOfItems) / 180;
         //We use a counter so we know how many menu items have been created
         var count:uint = 0;
         //Loop through all the <button></button> nodes in the XML
         for each (var item:XML in xml.items.item) {
              //Create a new menu item
              var menuItem:MenuItem = new MenuItem();
              //Calculate the starting angle for the menu item
              var startingAngle:Number = angleDifference * count;
              //Set a "currentAngle" attribute for the menu item
              menuItem.currentAngle = startingAngle;
              //Position the menu item
              menuItem.xpos3D = 0;
              menuItem.ypos3D = radius * Math.sin(startingAngle);
              menuItem.zpos3D = radius * Math.cos(startingAngle);
              //Calculate the scale ratio for the menu item (the further the item -> the smaller the scale ratio)
              var scaleRatio = focalLength/(focalLength + menuItem.zpos3D);
              //Scale the menu item according to the scale ratio
              menuItem.scaleX = menuItem.scaleY = scaleRatio;
              //Position the menu item to the stage (from 3D to 2D coordinates)
              menuItem.x = vanishingPointX + menuItem.xpos3D * scaleRatio;
              menuItem.y = vanishingPointY + menuItem.ypos3D * scaleRatio;
              //Add a text to the menu item
              menuItem.menuText.text = item.label;
              //Add a "linkTo" variable for the URL
              menuItem.linkTo = item.linkTo;
              //We don't want the text field to catch mouse events
              menuItem.mouseChildren = false;
              //Assign MOUSE_OVER, MOUSE_OUT and CLICK listeners for the menu item
              menuItem.addEventListener(MouseEvent.MOUSE_OVER, mouseOverItem);
              menuItem.addEventListener(MouseEvent.MOUSE_OUT, mouseOutItem);
              menuItem.addEventListener(MouseEvent.CLICK, itemClicked);
              //Add the menu item to the menu items array
              menuItems.push(menuItem);
              //Add the menu item to the stage
              addChild(menuItem);
              //Assign an initial alpha
              menuItem.alpha = 0.3;
              //Add some blur to the item
              TweenMax.to(menuItem,0, {blurFilter:{blurX:1, blurY:1}});
              //Update the count
              count++;
    //Add an ENTER_FRAME listener for the animation
    addEventListener(Event.ENTER_FRAME, moveCarousel);
    //This function is called in each frame
    function moveCarousel(e:Event):void {
         //Calculate the angle speed according to mouseY position
         angleSpeed = (mouseY - stage.stageHeight / 2) * 0.0002;
         //Loop through the menu items
         for (var i:uint = 0; i < menuItems.length; i++) {
              //Store the menu item to a local variable
              var menuItem:MenuItem = menuItems[i] as MenuItem;
              //Update the current angle of the item
              menuItem.currentAngle += angleSpeed;
              //Calculate a scale ratio
              var scaleRatio = focalLength/(focalLength + menuItem.zpos3D);
              //Scale the item according to the scale ratio
              menuItem.scaleX=menuItem.scaleY=scaleRatio;
              //Set new 3D coordinates
              menuItem.xpos3D=0;
              menuItem.ypos3D=radius*Math.sin(menuItem.currentAngle);
              menuItem.zpos3D=radius*Math.cos(menuItem.currentAngle);
              //Update the item's coordinates.
              menuItem.x=vanishingPointX+menuItem.xpos3D*scaleRatio;
              menuItem.y=vanishingPointY+menuItem.ypos3D*scaleRatio;
         //Call the function that sorts the items so they overlap each other correctly
         sortZ();
    //This function sorts the items so they overlap each other correctly
    function sortZ():void {
         //Sort the array so that the item which has the highest
         //z position (= furthest away) is first in the array
         menuItems.sortOn("zpos3D", Array.NUMERIC | Array.DESCENDING);
         //Set new child indexes for the item
         for (var i:uint = 0; i < menuItems.length; i++) {
              setChildIndex(menuItems[i], i);
    //This function is called when a mouse is over an item
    function mouseOverItem(e:Event):void {
         //Tween the item's properties
         TweenMax.to(e.target, 0.1, {alpha: 1, glowFilter:{color:0xffffff, alpha:1, blurX:60, blurY:60},blurFilter:{blurX:0, blurY:0}});
    //This function is called when a mouse is out of an item
    function mouseOutItem(e:Event):void {
         //Tween the item's properties
         TweenMax.to(e.target, 1, {alpha: 0.3, glowFilter:{color:0xffffff, alpha:1, blurX:0, blurY:0},blurFilter:{blurX:1, blurY:1}});
    //This function is called when an item is clicked
    function itemClicked(e:Event):void {
         //Navigate to the URL that's assigned to the menu item
         var urlRequest:URLRequest=new URLRequest(e.target.linkTo);
         navigateToURL(urlRequest);

    Hi Ned thanks for the reply,
    Ok so I have a button in my main movie that loads the external swf
    stop();
    var my_loader:Loader = new Loader();
    var my_btn:Button = new Button();
    var my_pb:ProgressBar = new ProgressBar();
    my_pb.source = my_loader.contentLoaderInfo;
    my_btn.addEventListener(MouseEvent.CLICK,startLoading);
    function startLoading(e:MouseEvent):void{
    my_loader.load(new URLRequest("carousel.swf"));
    addChild(my_pb);
    my_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, finishloading);
    function finishloading(e:Event):void{
    addChild(my_loader);
    my_loader.addEventListener("killMe",
    killLoadedClip);
    removeChild(my_pb);
    function killLoadedClip(e:Event):void {
    my_loader.removeEventListener("killMe",
    killLoadedClip);
    my_loader.unloadAndStop();
    removeChild(my_loader);
    Then I have a button in my loaded swf that closes the loader
    This is spread over 2 frames
    Frame1
    function closeIt(e:MouseEvent):void {
    parent.dispatchEvent(newEvent("killMe"));
    Frame 2
    back_btn.addEventListener(MouseEvent.CLICK, closeIt);
    Frame 2 also holds all the code for the carousel
    Thanks for your time and help in advance people ; )

  • Setting External Loaded SWF dimension

    hi guys...,
    i'll be straight to point,well i'm now working on a project using action  script 3 now what i'm trying to make is a Main SWF that load whatever  other swf into it the tricky thing is that i used 1 xml document read  the external swf source and it's setting(such as it's x,y position and  it's width and height) and i'm having problem setting the loaded swf width and  height btw it's an desktop application and not a website application.,
    here is my code:
    //variable list
    var swfList:XMLList; //hold all the zone list from the xml
    var totalZone:uint; //total of zone there is in the xml
    var myURLLoader:URLLoader = new URLLoader();
    var swf:Movie Clip;//hold the loaded swf
    var swfLoader:Loader = new Loader();//loader instance used to load the external swf
    var myCounter:uint = 0;
    //load the xml file
    myURLLoader.load(new URLRequest('myXMLFile.xml'));
    myURLLoader.addEventListener(Event.COMPLETE, processXML, false, 0, true);
    function processXML(e:Event):void
        removeEventListener(Event.COMPLETE, processXML);
        XML.ignoreWhitespace= true;
        var myXML:XML = new XML(e.target.data);
        swfList = myXML.SWF;
        totalSWF = myXML.SWF.length();
        loadSWF();
    function loadSWF():void
        swfLoader.contentLoaderInfo.addEventListener(Event.INIT, swfSetting);
        swfLoader.load(new URLRequest(swfList[myCounter].@source));
    function swfSetting(e:Event):void
        //making new instance of sprite to hold the new loaded swf
        swf = new MovieClip();
        //casting the loader content into a movieclip
        swf = e.target.content;
        addChild(swf);
        swfLoader.unload();
        swf.x = swfList[myCounter].@left;
        swf.y = swfList[myCounter].@top;
        swf.width= swfList[myCounter].@width;
        swf.height= swfList[myCounter].@height;
        addChild(swf);
        if(myCounter < totalSWF)
            myCounter++;
            trace('myCounter: ' + myCounter );
            loadSWF();
    and here is what the result ( it make the width and height of the loaded swf to 0):
    swfLoader.contentLoaderInfo.width : 320
    swfLoader.contentLoaderInfo.height : 240
    module: MyVideo/flvplayer.swf
    x:0
    x container:0
    y:0
    y container:0
    xml width:550
    width container:0
    xml height:400
    height container:0
    myCounter: 1
    swfLoader.contentLoaderInfo.width : 550
    swfLoader.contentLoaderInfo.height : 400
    module: AnalogueClock.swf
    x:50
    x container:50
    y:0
    y container:0
    xml width:250
    width container:250
    xml height:200
    height container:200
    myCounter: 2
    swfLoader.contentLoaderInfo.width : 800
    swfLoader.contentLoaderInfo.height : 30
    module: MyNewsticker/newsticker.swf
    x:0
    x container:0
    y:0
    y container:0
    xml width:300
    width container:0
    xml height:50
    height container:0
    most of my loaded swf beside the analouge clock is full action script code and in case of the analouge clock it is a swf that has a movie clip on it's stage (the other are fully created from action script 3.0)
    please do help me..,
    cause i'm already really desperate and going crazy by this problem..,

    sorry i copied the code from the other swf i used to do try and error test..,
    basically the container is the same as swf varibale
    here the code so you would'nt get confused:
    //variable list
    var swfList:XMLList; //hold all the zone list from the xml
    var totalZone:uint; //total of zone there is in the xml
    var myURLLoader:URLLoader = new URLLoader();
    var swf:Movie Clip;//hold the loaded swf
    var swfLoader:Loader = new Loader();//loader instance used to load the external swf
    var myCounter:uint = 0;
    //load the xml file
    myURLLoader.load(new URLRequest('myXMLFile.xml'));
    myURLLoader.addEventListener(Event.COMPLETE, processXML, false, 0, true);
    function processXML(e:Event):void
        removeEventListener(Event.COMPLETE, processXML);
        XML.ignoreWhitespace= true;
        var myXML:XML = new XML(e.target.data);
        swfList = myXML.SWF;
        totalSWF = myXML.SWF.length();
        loadSWF();
    function loadSWF():void
        swfLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, swfSetting);
        swfLoader.load(new URLRequest(swfList[myCounter].@source));
    function swfSetting(e:Event):void
        //making new instance of sprite to hold the new loaded swf
        swf = new MovieClip();
        //casting the loader content into a movieclip
        swf = e.target.content;
        addChild(swf);
        swfLoader.unload();
        swf.x = swfList[myCounter].@left;
        swf.y = swfList[myCounter].@top;
        swf.width= swfList[myCounter].@width;
        swf.height= swfList[myCounter].@height;
        addChild(swf);
        if(myCounter < totalSWF)
            myCounter++;
            trace('myCounter: ' + myCounter );
            loadSWF();
    well in my code i did cast the loader into a movie clip and then set it's width and heigt,right???
    wouldn't it just give me the same result??
    if it's not can u describe what u mean in more detail??
    some example about accessing the loader content would be really appreciated

  • Color external loaded swf in AS3 Help Urgent!

    Hi i have loaded swf from an external path using the following command.
    var cviewer:Loader=new Loader();
    var curlRequest:URLRequest=new URLRequest("clipArts/"+evt.target.name);
    So this is the scenario.
    Suppose say i load Movie1.swf
    I have three movie clips inside Movie1.swf called step0, step1, step2
    I need to change the color of step0, step1 and step 2 from the parent flash file which loads movie1. All the inner movie clips color may be different from each other.
    I am able to change the color of the whole movie clip by using
    var colorInfo:ColorTransform = cviewer.transform.colorTransform;
    colorInfo.color=evt.target.selectedColor;
    cviewer.transform.colorTransform=colorInfo;
    But not of individual ones. I even tried cviewer.step0.transform.colortransform and other stuff to see if it would work. But nothing worked. Help at fastest would be deeply appreciated.
    Regards and thanks in advance.

    try:
    var colorInfo:ColorTransform = MovieClip(cviewer.content).step0.transform.colorTransform;
    colorInfo.color=evt.target.selectedColor;
    MovieClip(cviewer.content).step0.transform.colorTransform=colorInfo;

  • AttachMovie from a loaded SWF

    I'm trying to attach a movie from the library of an SWF I
    loaded... from what I've read on on the forums, this is possible,
    however I can't seem to get it to work. My setup for the test files
    is as follows:
    CONTAINER.SWF (parent file)
    - creates empty_mc to hold child.swf
    - loads child swf into empty_mc
    - when child.swf is loaded, it calls:
    _root.attachMovie("test_mc","myParentTest_mc",50);
    CHILD.SWF (child clip)
    (insde is a clip "test_mc" with a linkID to match)
    Any help on syntax or what I might be doing wrong would be
    appreciated. If this setup won't work, could it work the other way?
    (CHILD.SWF attaches a symbol from the CONTAINER.SWF???)

    Thank-you for the response, I thought of that... In my
    situation, I need to be able to select one of many large files, and
    attach assets from it as needed. In order for me to use attach
    movie, using shared library assets, they first need to be placed on
    the stage before the linkID is properly initialized. If I have to
    do this for each "large file" it causes a jump in memory on file
    startup. See my other post in the Flash General Discussion:
    External
    Assets and Memory Jump

Maybe you are looking for

  • Aperture 3 and Adobe Photoshop Elements 10 problems.

    I have installed Adobe Photoshop Elements 10, which I have setup as plugin for Aperture 3. In Aperture preferences the photos are exported as 8 bit TIFF 300 DPI, no profile and automatically stack new versions selected in general. I right click on se

  • More than one blog template?

    I have two blogs on the site I'm developing, and I'd like to use different templates on each of them. (One is for News, and the other for Tips 'n Tricks.) It seems that all blogs have one template. Is that true? Is it possible to use blog-specific ta

  • Page Parameters in PL/SQL Pages

    The OAS User's Guide says: "You can define page parameters for PL/SQL Pages. Values for these parameters are passed to bind variables in the PL/SQL code. For example, if the PL/SQL page 'myplsqlpage' contains the PL/SQL statement 'a:=:param1'; and a

  • How to view adobe flash player on I Pad 4

    How can we view Adobie flash sites on I Pad 4

  • Is it possible to reinstall Windows without reinstalling Leopard?

    When I ran the Boot Camp beta with Tiger, when I removed Windows XP and wanted to reinstall it months later, it wouldn't allow me to partition the hard drive through the Boot Camp Assistant. I went through Disk Untility and it wouldn't fix that probl