Buttons that play motion track only when selected

I'd like to create a chapter menu such that as the chapter buttons are selected, a short loop of motion video (or audio+video) track plays somewhere on the screen, When focus moves away from the button, the track either goes away entirely or freezes at its start frame.
A good example of what I'm talking about would be the chapter menus of any of the Lord Of The Rings Extended Editions.
Is this possible with DSP?

The other way to achieve the effect is to use overlay shapes as masks which you make transparent when selected. You composite the motion areas as part of the background and then make an overlay to cover them. Set the overlay shape to be large enough and make it fully opaque when not selected/activated. You can then reveal the video underneath as you move from button to button.
This will work much faster than moving from menu to menu but there are some issues to consider...
Firstly, when you click on a button, your player may remove ALL overlay masks momentarily which will reveal all background videos. Similarly, when returning to the menu you may have a slight delay when the menu first appears, so that all video is again visible for a fraction of a second. This effect is not seen on every player, but some are worse for it than others.
Secondly, there is no way of controlling where abouts you start the video clip as the mask is removed - it will simply loop in the background and each time the mask is removed the clip will show from where it currently is.
However, if these are not major issues for you, then this technique will give you faster responses to your button selection and activation than moving between menus. If you want to have finer control over things then the multi-menu approach is the only one to consider!

Similar Messages

  • Creating onrollover / onrollout button that plays its full ONanimation when touched

    Hey all,
    On most of my option MC's I have something like:
    this.onRollOver = function(){
    this.gotoAndPlay("onanim")
    this.onRollOut = function(){
    this.gotoAndPlay("offanim")
    Obviousy if you quickly roll on and then off the MC the
    animation is staggergy and not a fluid animation.
    I would like to set it so that everytime you touch/roll on
    the option MC it will always play its full on animation right, then
    it will go to the off animation.
    I believe you can incorporate onenterframe object to achive
    this. Could someone please show me a good solution.
    Any help would be great.

    the best solution is to stop the rollover animation as soon
    as the button is rolled out and start the rollout behavior (from
    the correct place on your timeline) as soon as the rollout is
    triggered.
    depending on your rollover and rollout animations that may
    require a little math or more commonly when the rollout animation
    is just the rollover animation playing in reverse would involve
    playing the rollover behavior backwords.
    it's this latter situation that is commonly used to trigger
    an onEnterFrame handler that calls a prevFrame() method and
    terminates when frame 1 is reached.

  • Music purchased on ipad wont play on computer. I get a message which says that the computer is not authorised to play the track but when I enter the password I get the message saying that the computer is already authorised. I have the opposite problem tra

    Music purchased on ipad wont play on computer. I get a message which says that the computer is not authorised to play the track but when I enter the password I get the message saying that the computer is already authorised. I have the opposite problem transfering some but not all music from computer to ipad.  Can anyone help?

    Interesting. Maybe it is more of a DRM issue than an Apple ID ownership issue. There is actually an iTunes Support section here on the discussion boards. If you wish to continue troubleshooting, you might post your question over there and refer to this discussion thread. You can also contact someone in Apple iTunes Support.

  • IPhone (Cocoa Touch) Button that plays sound file on click?

    Hello.
    I am trying to create a button that, when clicked, it plays a given sound file in the app's filesystem.
    This is what I have set up thus far:
    Regular Rectangular button -> connected to NSObject Called "sounds" -> with the Event "playsound1" chosen as the event.
    I then wrote the class files, brought them into Xcode file project under classes, and now I'm staring at sound.h and sounds.m with no idea what to do next.
    I was able to create in a regular Mac OSX Cocoa, a button that plays the system beep using NSBeep. However, I don't know how to achieve this similar objective with using a given sound file in the iPhone Cocoa Touch.
    Thanks

    I have tried so many things. I'm so lost.

  • Hi - Re Keynote  I'm trying to figure out how to create a music album on USB flash drive. What I want is a background picture with 'click-buttons' to play each track listed, also similar for embedded videos and photos etc.  Is this possible with Keynote ?

    Hi - Re Keynote  I'm trying to figure out how to create a music album (as an artist) on USB flash drive, (accessible by both Mac and PC). What I want is a background picture with 'click-buttons' to play each track listed, and play in order (like a cd) - also similar for embedded videos and photos etc. This should all be on the one page.  
    Is this possible with Keynote, or any other software package for Mac (am using Macbook Pro) ?
    Gav 88

    Hi there,
    Yikes, it sounds like you've been doing a lot of work on this project... Unfortunately, however, this isn't the Adobe Encore forum, but the Acrobat.com forum. While it seems like an exciting question, we're not able to address issues pertaining to other Adobe products and services. Here's a link to the Adobe Encore forum, where you're more likely to get help for this specific issue:
    http://forums.adobe.com/community/encore
    Sorry not to be of more specific help to you. Best of luck!
    Kind regards,
    Rebecca

  • Rollover buttons that play a movie clip.

    Hello,
       I am new to Flash and I am trying to accomplish a simulation such as this example, http://www.its-about-time.com/investinesart/coalplantvirtualtour.swf. I have all of my movie clips done, but how do I tell a rollover button to play a specific movie clip? I also want to have all the movie clips to play simultaneously via a rollover button as shown in the example. I've attached a captured image of my timeline, if that helps. I've tried everything so far, but nothing is working! What is the simplest way of doing this?
    I have this inside one of the movie clips (mc_2) in a seperate layer under - (actions)
    RO_btn.onRollover = function(){
    mc_2.play();
    On the main timeline I have an actions layer with this:
    stop();
    Thinking that this may stop all of my movie clips but it doesn't.
    Should I make an actions layer in each movie clip with this syntax huh? stop();?
    I'm frustrated!!
    Thanks, if you can help!
    MG

    Hi,
    I have made something that you are looking for.
    It will be of help to you.
    basically you will have to create a few movie clips namely:
    2 buttons: (name them a_btn, b_btn, c_btn, d_btn, e_btn)
    3 movie clips (I am taking example image1_mc, image2_mc, image3_mc)
    in each of these movieclips.place 2 frames and on second frame put your movieclip(one in one).on both the frames put stop()
    now click on a_btn and write this script
    on (rollOver) {
    _root.image1_mc.gotoAndPlay(2);
    _root.image2_mc.gotoAndPlay(2);
    _root.image3_mc.gotoAndPlay(2);
    on (rollOut) {
        _root.image1_mc.gotoAndPlay(1);
        _root.image2_mc.gotoAndPlay(1);
        _root.image3_mc.gotoAndPlay(1);
    with this all 3 animations will work simultaneously. if you need to run any one of the movieclips at a time the you can address that mc in particular
    .Say if you want only 1 mc to move at a time then put this on  btn 2
    on (rollOver) {
    _root.image1_mc.gotoAndPlay(2);
    on (rollOut) {
        _root.image1_mc.gotoAndPlay(1);
    .Dont forget to give proper instance names to movieclips.(they are in properties panel.)
    Cheers!

  • Execute subroutine only when selection parameter changes

    Hi ABAP workers,
    I have a block of selection parameters, and I created the event AT SELECTION SCREEN ON BLOCK bl1 with a subroutine. I want that subroutine to be executed only when a parameter in the selection block is changed by the user. But the behaviour right now is that it executes every time I press Enter, even if no parameter changes.
    Is there any way to chieve this (like in the module pool case, with the extension "ON REQUEST")?
    Thank you very much
    Ivson
    Code involved:
    SELECTION-SCREEN BEGIN OF BLOCK bl1 WITH FRAME TITLE text-001.
    PARAMETERS: p_bukrs LIKE csks-bukrs MEMORY ID buk OBLIGATORY,
                             p_ryear LIKE glpct-ryear OBLIGATORY.
    SELECT-OPTIONS: s_poper  FOR glpct-rpmax,
                                  s_racct  FOR glpct-racct,
                                  s_kunnr  FOR glpca-kunnr,
                                  s_lifnr  FOR glpca-lifnr,
                    s_sprctr FOR glpct-sprctr.
    SELECTION-SCREEN END OF BLOCK bl1.
    AT SELECTION-SCREEN ON BLOCK bl1.
      PERFORM preselect.

    Hi,
    You could try this.
    Use the FM "DYNP_VALUES_READ" to get the contents of that screen parameter and then check for the parameter value inside the subroutine using a IF statement.
    PNAME is a paramter name here.
    a  dynpfields-fieldname  = 'PNAME'.
      append dynpfields.
      repid = sy-repid.
      call function 'DYNP_VALUES_READ'
           exporting
                dyname     = repid
                dynumb     = sy-dynnr
           tables
                dynpfields = dynpfields
           exceptions
                others.
      read table dynpfields index 1.
      pname = dynpfields-fieldvalue.
    Process the subroutine if needed based on the check condition.
    Hope this helps you.
    Regards,
    Subbu

  • Radio buttons and Checkboxes to change appearance when selected

    Hi guys!
    Help needed.
    I want my check boxes and radio buttons when selected to change color from black to "0,64,128", size from 12 to 14 and to become bold.
    Also the default appearance for checkboxes is cross, but I need it to be a check mark.
    I would be so much thankful if you could give me some advice.
    THANK YOU!
    Maria

    Hi Bibhu,
    Thanks for quick response!
    For check mark -- thanks! How could I not see that option!
    For radio button -- it's not working.
    I found this helpful tips on changing appearance of the radio buttons and check boxes. http://www.assuredynamics.com/wp-content/uploads/2010/11/Assure-Dynamics-Checkboxes-and-Ra dio-Buttons-Rev-1.pdf
    I used the first script, but I got an error message. I can't understand what I am doing wrong. It says: "Syntax error near token "{" on line 2, column 1.
    I am confused.
    Help appreciated.

  • Motion track only part of a video

    Is there a way to only motion track a small sequence of a video? I have a 5 minute video, and after a minute a house shows up along the road. And I want a text animation to track that house for the 6-7 seconds you can see it. But if I add a 3D camera tracker, it adds to the whole video, and that takes forever...

    Duplicate the item. Trim it. Use the camera tracker on the trimmed duplicate.
    This is rather basic, so I'm guessing that you'd benefit from going through the basic getting-started materials before going further:
    http://adobe.ly/AE_basics

  • How do I make multiple videos on one slide play in full screen when selected?

    I want to put four short videos per slide and have each play in full screen when I click on them. How can I do this? Thanks

    I've figured out to hyperlink to the video in a different presentation, which works. BUT how do I end back on my original slide?

  • Tabs keep showing that they're loading, but when selected show that they are fully loaded

    Here's my problem - happens in Firefox 4 both at home and at my office.
    When I open the browser some tabs fully complete loading, the others appear fully loaded when selected, however each tab shows the spinning 'loading' icon and says 'loading'.
    I have to 'restart FF with add-ons disabled,' then close it and wait a minute, and then reopen and it's fine.
    I've tried disabling and re-enabling one by one, and I've tried wiping them all out and re-adding them, I've also tried uninstalling and reinstalling Firefox. I even went back to 3.6 and then updated to 4.0.
    I'm scratching my head with this one, mainly because it's happening on two different machines. Any help would be much appreciated

    Here's my problem - happens in Firefox 4 both at home and at my office.
    When I open the browser some tabs fully complete loading, the others appear fully loaded when selected, however each tab shows the spinning 'loading' icon and says 'loading'.
    I have to 'restart FF with add-ons disabled,' then close it and wait a minute, and then reopen and it's fine.
    I've tried disabling and re-enabling one by one, and I've tried wiping them all out and re-adding them, I've also tried uninstalling and reinstalling Firefox. I even went back to 3.6 and then updated to 4.0.
    I'm scratching my head with this one, mainly because it's happening on two different machines. Any help would be much appreciated

  • Web Quicktime playing audio track only

    When I access websites that provide streaming MPGQuicktime movies, only the audio track will play. I can't see any pictures.
    This has only recently happened. If the site is providing WMV videos they play OK no problem.
    I am using 10.3.9 and have installed the latest version of Quicktime but still no luck
    thanks

    Ok. This works. Sadly, I did not try the solutions one step at a time (remember the scientific method?) so I'm not sure which one was the fix. However, the Quicktime files now do play on apple.com/trailers or any other site with QT videos.
    STEP 1: I did this one first and it is taken from another thread an posted by Baby Boomer:
    Save and/or quit your applications & doucuments
    Go to Applications>Utilities Folder
    Click Disk Utility
    Click the Volumn (HD) that you want to check.
    Click the Repair Disk Permissions button. (Don't worry about verifying)
    At the bottom of window when the repairs have finished, you will see the “most important thing”:
    Permission Repairs Complete
    The previliges have been repaired or completed on the selected volumn.
    Restart your computer.
    STEP 2: This one I did next and it was posted on anther thread by Borntostrum:
    Go to HD> Library> Internet Plugins> Delete Quicktime Plugin.webplugin and restart your browser.
    Hope that Helps!!
    Well, it did help. Thanks to both Borntostrum and to Baby Boomer!
    Raul

  • Motion 5 Crashes when selecting a .txt file in the file browser.

    This is my crash log:
    Process:         Motion [2693]
    Path:            /Applications/Motion.app/Contents/MacOS/Motion
    Identifier:      com.apple.motionapp
    Version:         5.0.7 (221398)
    Build Info:      Motion-22139008018000000~1
    App Item ID:     434290957
    App External ID: 14682850
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [202]
    Responsible:     Motion [2693]
    User ID:         503
    Date/Time:       2013-11-30 16:06:00.466 -0700
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  4CF2F942-61BA-987E-752A-878BEADDD12A
    Sleep/Wake UUID: 81804F03-0E53-417F-AC82-417A9BA385DE
    Crashed Thread:  18  QTKit: QTCALayerRendererPendingQWorkLoop
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000105358e00
    VM Regions Near 0x105358e00:
        CoreAnimation          000000010533b000-0000000105358000 [  116K] rw-/rwx SM=PRV 
    --> VM_ALLOCATE            0000000105358000-0000000105359000 [    4K] rw-/rwx SM=ALI 
        IOKit                  0000000105361000-0000000105369000 [   32K] rw-/rw- SM=ALI 
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8d01ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8d01bd18 mach_msg + 64
    2   com.apple.QTKit                         0x00007fff94280cf4 releaseProxy + 91
    3   com.apple.QTKit                         0x00007fff94280c04 -[QTMovie_QuickTime dealloc] + 165
    4   com.apple.QTKit                         0x00007fff94280a66 -[QTMovie dealloc] + 60
    5   com.apple.QTKit                         0x00007fff9426db88 -[QTMovieLayer setMovie:] + 487
    6   com.apple.ozone.framework               0x0000000100bf681d -[OZLibraryModuleBase showEntryPreview:multipleSelection:] + 445
    7   com.apple.Foundation                    0x00007fff8e060c57 __NSFireDelayedPerform + 333
    8   com.apple.CoreFoundation                0x00007fff94120724 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    9   com.apple.CoreFoundation                0x00007fff9412025f __CFRunLoopDoTimer + 1151
    10  com.apple.CoreFoundation                0x00007fff9419176a __CFRunLoopDoTimers + 298
    11  com.apple.CoreFoundation                0x00007fff940dbaa5 __CFRunLoopRun + 1525
    12  com.apple.CoreFoundation                0x00007fff940db275 CFRunLoopRunSpecific + 309
    13  com.apple.HIToolbox                     0x00007fff93bbdf0d RunCurrentEventLoopInMode + 226
    14  com.apple.HIToolbox                     0x00007fff93bbdcb7 ReceiveNextEventCommon + 479
    15  com.apple.HIToolbox                     0x00007fff93bbdabc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    16  com.apple.AppKit                        0x00007fff97b7428e _DPSNextEvent + 1434
    17  com.apple.AppKit                        0x00007fff97b738db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    18  com.apple.AppKit                        0x00007fff97b679cc -[NSApplication run] + 553
    19  com.apple.prokit                        0x00000001000dfd3f NSProApplicationMain + 296
    20  com.apple.motionapp                     0x0000000100002b2b 0x100000000 + 11051
    21  com.apple.motionapp                     0x0000000100001a24 0x100000000 + 6692
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8d021662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8cfae43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8cfae152 _dispatch_mgr_thread + 52
    Thread 2:: com.apple.ProGL.object-deletion
    0   libsystem_kernel.dylib                  0x00007fff8d020716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff92e69c3b _pthread_cond_wait + 727
    2   com.apple.progl.framework               0x00000001039a27c9 (anonymous namespace)::threadFunc(void*) + 71
    3   com.apple.procore.framework             0x000000010067f63f PCThread::startup(void*) + 29
    4   libsystem_pthread.dylib                 0x00007fff92e67899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff92e6772a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff92e6bfc9 thread_start + 13
    Thread 3:: com.apple.flexo.throttled-scheduled-io
    0   libsystem_kernel.dylib                  0x00007fff8d020716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff92e69c3b _pthread_cond_wait + 727
    2   com.apple.Flexo                         0x00000001018cb143 Synchronizable::Wait() + 51
    3   com.apple.Flexo                         0x000000010174eb54 ThrottleReadImpl::Run() + 196
    4   com.apple.Flexo                         0x00000001018d189f Thread::RunHelper(void*) + 47
    5   libsystem_pthread.dylib                 0x00007fff92e67899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff92e6772a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff92e6bfc9 thread_start + 13
    Thread 4:: com.apple.flexo.appthrottled-scheduled-io
    0   libsystem_kernel.dylib                  0x00007fff8d020716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff92e69c3b _pthread_cond_wait + 727
    2   com.apple.Flexo                         0x00000001018cb143 Synchronizable::Wait() + 51
    3   com.apple.Flexo                         0x000000010174eb54 ThrottleReadImpl::Run() + 196
    4   com.apple.Flexo                         0x00000001018d189f Thread::RunHelper(void*) + 47
    5   libsystem_pthread.dylib                 0x00007fff92e67899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff92e6772a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff92e6bfc9 thread_start + 13
    Thread 5:: QTKit: listenOnDelegatePort
    0   libsystem_kernel.dylib                  0x00007fff8d01ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8d01bd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff940dc315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff940db939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff940db275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff941909d1 CFRunLoopRun + 97
    6   com.apple.QTKit                         0x00007fff9427e32c listenOnDelegatePort + 385
    7   libsystem_pthread.dylib                 0x00007fff92e67899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff92e6772a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff92e6bfc9 thread_start + 13
    Thread 6:: QTKit: listenOnNotificationPort
    0   libsystem_kernel.dylib                  0x00007fff8d01ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8d01bd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff940dc315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff940db939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff940db275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff941909d1 CFRunLoopRun + 97
    6   com.apple.QTKit                         0x00007fff9427e7f4 listenOnNotificationPort + 353
    7   libsystem_pthread.dylib                 0x00007fff92e67899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff92e6772a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff92e6bfc9 thread_start + 13
    Thread 7:: QTKit: QTCALayerRendererPendingQWorkLoop
    0   libsystem_kernel.dylib                  0x00007fff8d01ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8d01bd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff940dc315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff940db939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff940db275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff941909d1 CFRunLoopRun + 97
    6   com.apple.QTKit                         0x00007fff9430d53f QTCALayerRendererPendingQWorkLoop + 506
    7   libsystem_pthread.dylib                 0x00007fff92e67899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff92e6772a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff92e6bfc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8d020e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92e68f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92e6bfb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8d020e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92e68f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92e6bfb9 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8d01ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8d01bd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff940dc315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff940db939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff940db275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff97d141ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff92e67899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff92e6772a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff92e6bfc9 thread_start + 13
    Thread 11:: QTKit: QTMachPortImageProviderWorkLoop
    0   libsystem_kernel.dylib                  0x00007fff8d01ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8d01bd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff940dc315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff940db939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff940db275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff941909d1 CFRunLoopRun + 97
    6   com.apple.QTKit                         0x00007fff9434b917 QTMachPortImageProviderWorkLoop + 315
    7   libsystem_pthread.dylib                 0x00007fff92e67899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff92e6772a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff92e6bfc9 thread_start + 13
    Thread 12:: com.apple.motion.ozone - Channel Evaluation
    0   libsystem_kernel.dylib                  0x00007fff8d020716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff92e69c3b _pthread_cond_wait + 727
    2   com.apple.ozone.framework               0x00000001009b0a01 OZExecutionUnit::executeLoop() + 113
    3   com.apple.procore.framework             0x000000010067f63f PCThread::startup(void*) + 29
    4   libsystem_pthread.dylib                 0x00007fff92e67899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff92e6772a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff92e6bfc9 thread_start + 13
    Thread 13:: com.apple.motion.ozone - Renderer
    0   libsystem_kernel.dylib                  0x00007fff8d020716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff92e69c3b _pthread_cond_wait + 727
    2   com.apple.ozone.framework               0x00000001009b0a01 OZExecutionUnit::executeLoop() + 113
    3   com.apple.procore.framework             0x000000010067f63f PCThread::startup(void*) + 29
    4   libsystem_pthread.dylib                 0x00007fff92e67899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff92e6772a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff92e6bfc9 thread_start + 13
    Thread 14:: com.apple.motion.ozone - Prefetch
    0   libsystem_kernel.dylib                  0x00007fff8d020716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff92e69c3b _pthread_cond_wait + 727
    2   com.apple.ozone.framework               0x00000001009b0a01 OZExecutionUnit::executeLoop() + 113
    3   com.apple.procore.framework             0x000000010067f63f PCThread::startup(void*) + 29
    4   libsystem_pthread.dylib                 0x00007fff92e67899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff92e6772a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff92e6bfc9 thread_start + 13
    Thread 15:: com.apple.motion.ozone - Audio
    0   libsystem_kernel.dylib                  0x00007fff8d020716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff92e69c3b _pthread_cond_wait + 727
    2   com.apple.ozone.framework               0x00000001009b0a01 OZExecutionUnit::executeLoop() + 113
    3   com.apple.procore.framework             0x000000010067f63f PCThread::startup(void*) + 29
    4   libsystem_pthread.dylib                 0x00007fff92e67899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff92e6772a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff92e6bfc9 thread_start + 13
    Thread 16:: com.apple.motion.ozone - Renderer Builder
    0   libsystem_kernel.dylib                  0x00007fff8d020716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff92e69c3b _pthread_cond_wait + 727
    2   com.apple.ozone.framework               0x00000001009b0a01 OZExecutionUnit::executeLoop() + 113
    3   com.apple.procore.framework             0x000000010067f63f PCThread::startup(void*) + 29
    4   libsystem_pthread.dylib                 0x00007fff92e67899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff92e6772a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff92e6bfc9 thread_start + 13
    Thread 17:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff8d020716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff92e69c77 _pthread_cond_wait + 787
    2   com.apple.CoreVideo                     0x00007fff91276464 CVDisplayLink::waitUntil(unsigned long long) + 244
    3   com.apple.CoreVideo                     0x00007fff91275998 CVDisplayLink::runIOThread() + 496
    4   com.apple.CoreVideo                     0x00007fff9127578f startIOThread(void*) + 147
    5   libsystem_pthread.dylib                 0x00007fff92e67899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff92e6772a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff92e6bfc9 thread_start + 13
    Thread 18 Crashed:: QTKit: QTCALayerRendererPendingQWorkLoop
    0   com.apple.VideoToolbox                  0x00007fff8da8d86b 0x7fff8da6d000 + 133227
    1   com.apple.VideoToolbox                  0x00007fff8da7f1f4 0x7fff8da6d000 + 74228
    2   com.apple.VideoToolbox                  0x00007fff8da7a8bb VTPixelTransferSessionTransferImage + 2042
    3   com.apple.QTKit                         0x00007fff94301e98 -[QTPixelBufferConverter convertFromPixelBuffer:toPixelBuffer:error:] + 106
    4   com.apple.QTKit                         0x00007fff94302a3a -[QTImageBufferConformer copyConformedImageBufferForImageBuffer:error:] + 1069
    5   com.apple.QTKit                         0x00007fff9430ebcb -[QTCAImageQueueBoss setImageBuffer:forHostTime:] + 66
    6   com.apple.QTKit                         0x00007fff9430f48d QTCALayerRendererPendingQRunLoopSourceCallback + 173
    7   com.apple.CoreFoundation                0x00007fff940ea8f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    8   com.apple.CoreFoundation                0x00007fff940dc062 __CFRunLoopDoSources0 + 242
    9   com.apple.CoreFoundation                0x00007fff940db7ef __CFRunLoopRun + 831
    10  com.apple.CoreFoundation                0x00007fff940db275 CFRunLoopRunSpecific + 309
    11  com.apple.CoreFoundation                0x00007fff941909d1 CFRunLoopRun + 97
    12  com.apple.QTKit                         0x00007fff9430d53f QTCALayerRendererPendingQWorkLoop + 506
    13  libsystem_pthread.dylib                 0x00007fff92e67899 _pthread_body + 138
    14  libsystem_pthread.dylib                 0x00007fff92e6772a _pthread_start + 137
    15  libsystem_pthread.dylib                 0x00007fff92e6bfc9 thread_start + 13
    Thread 19:: com.apple.helium-texture-finish
    0   libsystem_kernel.dylib                  0x00007fff8d020716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff92e69c3b _pthread_cond_wait + 727
    2   com.apple.Helium.HeliumRender           0x0000000103af1197 textureFinishThread(void*) + 183
    3   libsystem_pthread.dylib                 0x00007fff92e67899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff92e6772a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff92e6bfc9 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff8d020e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92e68f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92e6bfb9 start_wqthread + 13
    Thread 18 crashed with X86 Thread State (64-bit):
      rax: 0x0000000105361000  rbx: 0x0000000000000001  rcx: 0x0000000126b86be0  rdx: 0x0000000000000000
      rdi: 0x00000000000000a0  rsi: 0x0000000000000030  rbp: 0x0000000126b86b40  rsp: 0x0000000126b86b40
       r8: 0x0000000000000280   r9: 0x0000000000000000  r10: 0x0000000000000280  r11: 0x0000000105358e00
      r12: 0x0000000126b86be0  r13: 0x0000000000000001  r14: 0x00000000000000a0  r15: 0x0000000126b86ba0
      rip: 0x00007fff8da8d86b  rfl: 0x0000000000010246  cr2: 0x0000000105358e00
    Logical CPU:     3
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x100000000 -        0x100006fff  com.apple.motionapp (5.0.7 - 221398) <B9072EEA-D79F-3296-8E34-69BE6948B54F> /Applications/Motion.app/Contents/MacOS/Motion
           0x10000d000 -        0x100079fff  com.apple.proinspector.framework (4.0.2 - 22139.8.18) <24C424CE-F279-3C60-A175-96426C52E2E6> /Applications/Motion.app/Contents/Frameworks/ProInspector.framework/Versions/A/ ProInspector
           0x1000c2000 -        0x1002d4fff  com.apple.prokit (7.4.0 - 1957) <3EF7F2B2-5539-3004-9A34-8741371FBD4D> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
           0x100468000 -        0x100476ff7  com.apple.PluginManager (1.7.4 - 22139.8.18) <36513034-B4E5-3892-830B-49CEFF792F46> /Applications/Motion.app/Contents/Frameworks/PluginManager.framework/Versions/B /PluginManager
           0x100486000 -        0x1005a4fff  com.apple.prochannel.framework (4.0.2 - 22139.8.18) <21E8E21C-29BF-336C-B9A7-1AE14189FA0D> /Applications/Motion.app/Contents/Frameworks/ProChannel.framework/Versions/A/Pr oChannel
           0x100663000 -        0x100750fff  com.apple.procore.framework (4.0.2 - 22139.8.18) <2695E4DE-1239-3856-9440-2EC9538BE5BB> /Applications/Motion.app/Contents/Frameworks/ProCore.framework/Versions/A/ProCo re
           0x1007b3000 -        0x101172fff  com.apple.ozone.framework (5.0.0 - 22139.8.18) <9C6043C3-9B5A-3A37-899C-8627F26EBCE2> /Applications/Motion.app/Contents/Frameworks/Ozone.framework/Versions/A/Ozone
           0x10155a000 -        0x101618fef  com.apple.ProMedia (5.0.0 - 22139.8.18) <0971FC1C-8A47-3EC4-9B48-BD707237A5F1> /Applications/Motion.app/Contents/Frameworks/ProMedia.framework/Versions/A/ProM edia
           0x101690000 -        0x1016c0fff  com.apple.ProGraphics (5.0.0 - 22139.8.18) <92A2A786-EDB2-335E-9ECE-3B1B26F182EB> /Applications/Motion.app/Contents/Frameworks/ProGraphics.framework/Versions/A/P roGraphics
           0x1016e2000 -        0x101722fff  com.apple.proshapes.framework (1.0 - 22139.8.18) <2946D1CD-9918-3422-BEA1-CCED55D959AE> /Applications/Motion.app/Contents/Frameworks/ProShapes.framework/Versions/A/Pro Shapes
           0x10174a000 -        0x102426fff  com.apple.Flexo (1.0.0 - 22139.8.18) <9104ED55-A438-3292-BD23-76256E98D3E5> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/Flexo
           0x102991000 -        0x102a2fff7  com.apple.LunaKit (1.0 - 22139.8.18) <7F1C0F1F-2A3F-3FD7-824C-252DBE97ED14> /Applications/Motion.app/Contents/Frameworks/LunaKit.framework/Versions/A/LunaK it
           0x102ab5000 -        0x102bf8ff7  com.apple.Lithium (5.0.0 - 22139.8.18) <4B762A45-3A8B-3413-931F-0F8838B1E81F> /Applications/Motion.app/Contents/Frameworks/Lithium.framework/Versions/A/Lithi um
           0x102c77000 -        0x102cbefff  com.apple.CoreMedia.ProAppsSupport (1.0 - 705.93.1) <DC1B365F-3F41-3C95-8B60-83A8B5984DB1> /Applications/Motion.app/Contents/Frameworks/CoreMedia.framework/Versions/A/Cor eMedia
           0x102ce0000 -        0x102d26fff  com.apple.pro.sharedstudio (1.0 - 22139.8.18) <3E853FB7-C4EC-339B-B865-338B0F5C953C> /Applications/Motion.app/Contents/Frameworks/StudioSharedResources.framework/Ve rsions/A/StudioSharedResources
           0x102d77000 -        0x102e52ff7  org.python.python (2.6.8 - 2.6.8) <9FB69DE0-E9AF-3226-BC5C-7F80C45F9568> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
           0x102eb3000 -        0x102eb3ff7  com.apple.Helium (3.1.0 - 22139.8.18) <B711A2AB-0AF1-3426-B4EB-6EFE61C28F0E> /Applications/Motion.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
           0x102eb7000 -        0x102ef2ff2  com.apple.audio.midi.CoreMIDI (1.10 - 88) <AAF5250E-D422-3910-8F94-FE8BAC5B8174> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
           0x102f1a000 -        0x102f39fff  com.apple.fxplugframework (2.4 - 22139.8.18) <F1603363-B6C8-36B3-895E-CC6CBC719826> /Applications/Motion.app/Contents/Frameworks/FxPlug.framework/Versions/A/FxPlug
           0x102f4f000 -        0x102f5ffff  com.apple.RetimingMath (5.0.0 - 22139.8.18) <B0E6FBF8-E397-3FE4-BA8F-D040EBF01A3C> /Applications/Motion.app/Contents/Frameworks/RetimingMath.framework/Versions/A/ RetimingMath
           0x102f71000 -        0x102fe4fff  com.apple.procurveeditor.framework (3.1.0 - 22139.8.18) <36E347EA-0CFA-334E-A5AF-9D742C431544> /Applications/Motion.app/Contents/Frameworks/ProCurveEditor.framework/Versions/ A/ProCurveEditor
           0x10301f000 -        0x1030c3fff  com.apple.ProAppsFxSupport (4.0.0 - 22139.8.18) <6508FC79-0681-3117-8BCE-B8592AA7DB39> /Applications/Motion.app/Contents/Frameworks/ProAppsFxSupport.framework/Version s/A/ProAppsFxSupport
           0x1032e9000 -        0x103354fff  com.apple.proapps.AudioMixEngine (2.0 - 68) <8895207D-9C73-3FDF-ABBA-EDD824A04AA1> /Applications/Motion.app/Contents/Frameworks/Ozone.framework/Versions/A/Framewo rks/AudioMixEngine.framework/Versions/A/AudioMixEngine
           0x103380000 -        0x1037b5ff7  com.apple.VideoToolbox.ProAppsSupport (1.0 - 705.93.1) <BFD16283-9757-3D08-B8BE-21C266B4B004> /Applications/Motion.app/Contents/Frameworks/VideoToolbox.framework/Versions/A/ VideoToolbox
           0x10383f000 -        0x10393aff7  com.apple.proosc.framework (3.1.0 - 22139.8.18) <18B6CDDA-E2D0-39AB-B533-D2C6DE6B587A> /Applications/Motion.app/Contents/Frameworks/ProOSC.framework/Versions/A/ProOSC
           0x103999000 -        0x1039ceff7  com.apple.progl.framework (1.0 - 22139.8.18) <453D46A1-64F3-38BE-B36B-37ACEE9E3CCA> /Applications/Motion.app/Contents/Frameworks/ProGL.framework/Versions/A/ProGL
           0x103a08000 -        0x103e0dff7  com.apple.Helium.HeliumRender (2.1.0 - 22139.8.18) <E843223B-59CB-343A-9B51-F16191CB12D7> /Applications/Motion.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
           0x103ef2000 -        0x103fdcfef  com.apple.Helium.Heliumfilters (2.1.0 - 22139.8.18) <EC00DF2D-BB96-380D-80E7-E610CF6EA954> /Applications/Motion.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumFilters.framework/Versions/A/HeliumFilters
           0x10433b000 -        0x1045c9ff7  com.apple.Helium.HeliumSensoCore (2.0.2 - 22139.8.18) <1CAD967F-CDB9-32F1-A137-F99BF44416EC> /Applications/Motion.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumSensoCore.framework/Versions/A/HeliumSensoCore
           0x104638000 -        0x1049e1ff7  com.apple.MediaToolbox.ProAppsSupport (1.0 - 705.93.1) <E7F59C79-9976-3F27-960B-F329E6675790> /Applications/Motion.app/Contents/Frameworks/MediaToolbox.framework/Versions/A/ MediaToolbox
           0x104a51000 -        0x104b38ff7  com.apple.TLKit (1.0 - 22139.8.18) <6D96F04D-AA97-3A06-97A1-16CEBCFC7149> /Applications/Motion.app/Contents/Frameworks/TLKit.framework/Versions/A/TLKit
           0x104ba5000 -        0x104bc0ff7  com.apple.DeepSkyLite (0.6 - 22139.8.18) <9AFA842A-DC54-3E82-A64E-BFF48794A98B> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/Framewo rks/DeepSkyLite.framework/Versions/A/DeepSkyLite
           0x104bd4000 -        0x104bfbff7  com.apple.audio.CoreAudioKit (1.6.6 - 1.6.6) <E6FEB146-1384-3FDE-A9B4-3BC48DCEDC27> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
           0x104c17000 -        0x104cdcfff  com.apple.proapps.MIO (2.0 - 22139.8.18) <1231C47B-8D9F-3025-8961-F60578059905> /Applications/Motion.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
           0x104d4a000 -        0x104d62ff7  com.apple.iLifeFaceRecognition (1.0 - 21) <60E123B3-CDE3-3D31-A423-C5D225263EFB> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/Framewo rks/iLifeFaceRecognition.framework/Versions/A/iLifeFaceRecognition
           0x104d74000 -        0x104d86ff7  com.apple.TLKEventDispatcher (1.0 - 22139.8.18) <5E09EDA0-2807-3ADB-A708-8438A9A279B4> /Applications/Motion.app/Contents/Frameworks/TLKEventDispatcher.framework/Versi ons/A/TLKEventDispatcher
           0x104d95000 -        0x104d98fff  com.apple.proapps.Flexo.FFAudioUnitInfoCache (1.0 - 1) <9DBC6B60-483B-3322-BCDB-71C7F12322C7> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/Framewo rks/FFAudioUnitInfoCache.framework/Versions/A/FFAudioUnitInfoCache
           0x104d9e000 -        0x104dc9fff  com.apple.FWAVC (401.47 - 47) <5FACFA64-7FE9-3B4A-B45C-908B5F89A739> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
           0x104de0000 -        0x104de2fff +eOkaoCom.dylib (1) <393F340C-3AD1-C89B-6C37-9D8ABF4BFFD9> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/Framewo rks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoCom.dylib
           0x104de6000 -        0x104e0dff2 +eOkaoPt.dylib (1) <E6500FB8-157F-57B5-FE25-2A3A1CB3574C> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/Framewo rks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoPt.dylib
           0x104e14000 -        0x104e49fe7 +eOkaoDt.dylib (1) <7A74253D-8930-6FF1-B513-0929C4E111A2> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/Framewo rks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoDt.dylib
           0x104e50000 -        0x104fb8fef +eOkaoFr.dylib (1) <510E837E-135A-92C8-9AC0-465691EA43D2> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/Framewo rks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoFr.dylib
           0x104fbe000 -        0x104fd2fff  com.apple.MAAudioUnitSupport (1.0.0 - 101) <798BC286-1A96-3329-ACDB-F8054B48781D> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/Framewo rks/FFAudioUnitInfoCache.framework/Versions/A/Frameworks/MAAudioUnitSupport.fram ework/Versions/A/MAAudioUnitSupport
           0x108482000 -        0x1084d3ff7  com.apple.CoreMediaIO.FCPX.Lion (216.0 - 3199.9) <4CEB5D23-CA41-3520-B0C6-A4701EE71F16> /Applications/Motion.app/Contents/Frameworks/CoreMediaLion/CoreMediaIO.framewor k/Versions/Current/CoreMediaIO
           0x1087d5000 -        0x1087defff  com.apple.Audio.provider (1.0.0 - 22139.8.18) <BECFB589-094A-3FBE-A7D2-1893DD40BB1A> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /MediaProviders/AudioProvider.fxp/Contents/MacOS/AudioProvider
           0x1087e6000 -        0x1087f5fe7  com.apple.proapps.AppleUncompressedCodec (1.0.1 - 5757.41) <E4C5AEC4-FA77-3896-A8AE-D9D6044AE992> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/App leUncompressedCodec.bundle/Contents/MacOS/AppleUncompressedCodec
           0x10a748000 -        0x10a77efff  com.apple.Fig.provider (1.0.0 - 22139.8.18) <50B21342-F2B2-39F8-8DFF-0BDE1EAE57EA> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /MediaProviders/FigProvider.fxp/Contents/MacOS/FigProvider
           0x10a793000 -        0x10a7cdff7  com.apple.proapps.AppleAVCIntraCodec (1.1 - 6010.16) <E801BD25-6D09-3309-A42D-C2A994528F28> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/App leAVCIntraCodec.bundle/Contents/MacOS/AppleAVCIntraCodec
           0x10a7db000 -        0x10a81efff  com.apple.proapps.AppleDVCPROHDCodec (1.0.1 - 5708) <71251E1E-6F05-3995-AC23-421CF09A222E> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/App leDVCPROHDCodec.bundle/Contents/MacOS/AppleDVCPROHDCodec
           0x10a82c000 -        0x10a84afff  com.apple.proapps.AppleIMXCodec (1.0.1 - 5708) <447E4868-86F3-3370-B711-6851B3FF050A> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/App leIMXCodec.bundle/Contents/MacOS/AppleIMXCodec
           0x10a85c000 -        0x10a87fff7  com.apple.proapps.AppleIntermediateCodec (1.0.1 - 5718) <0340D8F0-0E05-34CE-B9AB-3147270B68C2> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/App leIntermediateCodec.bundle/Contents/MacOS/AppleIntermediateCodec
           0x10a88c000 -        0x10a939ff7  com.apple.proapps.AppleMPEG2Codec (1.0.3 - 5905.97) <AD51C0C5-1452-309A-B727-3B5187EC6A70> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/App leMPEG2Codec.bundle/Contents/MacOS/AppleMPEG2Codec
           0x10a956000 -        0x10a9eafef  com.apple.proapps.AppleProResCodec (1.0.3 - 5758.41) <F3FDAE09-86BC-3CB1-80DF-6EF7B744D438> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/App leProResCodec.bundle/Contents/MacOS/AppleProResCodec
           0x10aa26000 -        0x10aa2aff7  com.apple.proapps.AppleCMQTAdapterCodec (1.0 - 1) <B9CE5B75-0B33-3D90-B520-4095C61B3097> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/PlugIns/AppleCMQTAdapterCodec.bundle/Contents/MacOS/AppleCMQTAdapterCodec
           0x10aa31000 -        0x10ab9fff7  com.apple.AECore (4.0.7 - 303) <6C15DFAF-F0A6-3C4C-92A1-5263A3F8EEAF> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/AECore.framework/Versions/A/AECore
           0x10ac20000 -        0x10ac41fff  com.apple.FxPlug.provider (1.0.0 - 22139.8.18) <4DE17C54-80BC-3B27-97A7-505D27835B40> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /MediaProviders/FxPlugProvider.fxp/Contents/MacOS/FxPlugProvider
           0x10ac4f000 -        0x10ac57ff7  com.apple.Motion.provider (5.0.0 - 22139.8.18) <4C168C8A-874D-34B2-926A-2D588A481C77> /Applications/Motion.app/Contents/PlugIns/MediaProviders/MotionProvider.fxp/Con tents/MacOS/MotionProvider
           0x10acaf000 -        0x10acb6ff7  com.apple.filter.PAECIAdaptor (1.0 - 22139.8.18) <25D58A24-5E5F-34BB-B90A-7852CBA8A730> /Applications/Motion.app/Contents/PlugIns/FxPlug/PAECIAdaptor.fxplug/Contents/M acOS/PAECIAdaptor
           0x10ae39000 -        0x10ae3dfff  com.apple.agl (3.2.3 - AGL-3.2.3) <1B85306F-D2BF-3FE3-9915-165237B491EB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10ae47000 -        0x10ae4afff  libspindump.dylib (161) <588EDDE0-B20A-3649-92B7-C2226EB237E8> /usr/lib/libspindump.dylib
           0x10aea0000 -        0x10aeb4fff  com.apple.motion.Text (5.0.0 - 22139.8.18) <2720AF31-5496-3F98-9996-48E60F55E1B0> /Applications/Motion.app/Contents/Frameworks/Ozone.framework/Versions/A/PlugIns /Text.ozp/Contents/MacOS/Text
           0x10b900000 -        0x10b956fff  com.apple.Bloodhound (5.0.0 - 22139.8.18) <A99E9788-5C9B-31CD-92E8-50E76132FF10> /Applications/Motion.app/Contents/Frameworks/Bloodhound.framework/Versions/A/Bl oodhound
           0x10b9b4000 -        0x10b9b5ff7  com.apple.music.apps.common.resources (9.1.0 - 279.8) <14286614-A181-3FFF-86EB-D78A1949A1FA> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /Audio/EDEL.bundle/Contents/Resources/common.res/Contents/MacOS/common
           0x10b9ba000 -        0x10b9bbfff  com.apple.music.apps.efx.resources (9.1.0 - 279.8) <3F9BBF01-D176-3CF3-9C1C-30343868B9AB> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /Audio/EDEL.bundle/Contents/Resources/efx.res/Contents/MacOS/efx
           0x10bb80000 -        0x10bba3fff  com.apple.prokit.LionPanels (7.4.0 - 1957) <E73D293E-162A-3292-87E9-7B2A821A147A> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/LionPan els.bundle/Contents/MacOS/LionPanels
           0x10bbbd000 -        0x10bbf1ff7  com.apple.proapps.flexo.AudioEffects (1.0.0 - 22139.8.18) <05B0C84B-2D09-31EE-A54B-0266E2FACB61> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /Audio/AudioEffects.component/Contents/MacOS/AudioEffects
           0x10bbfa000 -        0x10bbfbfff  com.apple.music.apps.egt.resources (9.1.0 - 279.8) <D6B21802-EC68-39F0-96EE-722C668C7CEB> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /Audio/EDEL.bundle/Contents/Resources/egt.res/Contents/MacOS/egt
           0x10c100000 -        0x10c291ff7  com.apple.motion.Behaviors (5.0.0 - 22139.8.18) <BE730658-AE96-331A-B5F9-F1A6C06A7917> /Applications/Motion.app/Contents/Frameworks/Ozone.framework/Versions/A/PlugIns /Behaviors.ozp/Contents/MacOS/Behaviors
           0x10c34a000 -        0x10c544fff  com.apple.motion.Particles (5.0.0 - 22139.8.18) <B4CF550E-7279-3A89-A76D-22A7FAA12586> /Applications/Motion.app/Contents/Frameworks/Ozone.framework/Versions/A/PlugIns /Particles.ozp/Contents/MacOS/Particles
           0x10c5bf000 -        0x10cc05fff  com.apple.motion.TextFramework (5.0.0 - 22139.8.18) <AE7B2991-965F-3AB5-A3BD-1113A60CA727> /Applications/Motion.app/Contents/Frameworks/TextFramework.framework/Versions/A /TextFramework
           0x11e086000 -        0x11e08affd  com.apple.audio.AppleHDAHALPlugIn (2.5.2 - 2.5.2fc2) <DEB558B7-BACF-3871-A021-B3A904F4FB44> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x11f1ed000 -        0x11f20dfff  com.apple.EDEL (2.5 - 551.8) <D7213475-C0A5-3EF3-B886-0BAB0ECD38EC> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /Audio/EDEL.bundle/Contents/MacOS/EDEL
           0x11f221000 -        0x11f2a0ff7  com.apple.music.apps.MACore (9.1.0 - 475.15) <C09F6CD8-F09A-34C1-A76A-F236AD2E55BF> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /Audio/EDEL.bundle/Contents/Frameworks/MACore.framework/Versions/A/MACore
           0x11f2dc000 -        0x11f63bfff  com.apple.music.apps.MADSP (9.1.0 - 586.17) <5FFDEA5E-3B62-35EA-8B8F-995A077BA9F8> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /Audio/EDEL.bundle/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
           0x11f9af000 -        0x11fa56fff  com.apple.music.apps.MAFiles (9.1.0 - 143.14) <9A09857E-EE69-354D-9E3B-149338490561> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /Audio/EDEL.bundle/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
           0x11fa8b000 -        0x11fad9fef  com.apple.music.apps.MAHarmony (9.1.0 - 198.11) <64F457B5-9B4F-348C-8DF6-DFC37CDA59FE> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /Audio/EDEL.bundle/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
           0x11faf0000 -        0x11ff73ff7  com.apple.music.apps.MAPlugInGUI (9.1.0 - 423.13) <B49147FB-2187-3C93-B719-35351278684E> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /Audio/EDEL.bundle/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugIn GUI
           0x120963000 -        0x120964fff  com.apple.music.apps.evb3.resources (9.1.0 - 279.8) <68BA2E12-BBBE-3D2B-9157-122892B6B475> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /Audio/EDEL.bundle/Contents/Resources/evb3.res/Contents/MacOS/evb3
           0x120969000 -        0x12096afff  com.apple.music.apps.evd6.resources (9.1.0 - 279.8) <27610702-FEDD-3700-98D5-6F8CA2F9B975> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /Audio/EDEL.bundle/Contents/Resources/evd6.res/Contents/MacOS/evd6
           0x12096f000 -        0x120970fff  com.apple.music.apps.evoc.resources (9.1.0 - 279.8) <0C5633B5-9465-3726-9B7A-15C5FD14F763> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /Audio/EDEL.bundle/Contents/Resources/evoc.res/Contents/MacOS/evoc
           0x120975000 -        0x120976ff7  com.apple.music.apps.evp88.resources (9.1.0 - 279.8) <F8EED637-19D4-3DB3-9A50-B71A8A70E6D7> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /Audio/EDEL.bundle/Contents/Resources/evp88.res/Contents/MacOS/evp88
           0x12097b000 -        0x12097cfff  com.apple.music.apps.mutapdel.resources (9.1.0 - 279.8) <1B7840B8-3F05-3519-855A-85CF62FDF2B7> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /Audio/EDEL.bundle/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
           0x120981000 -        0x120982ff7  com.apple.music.apps.sphere.resources (9.1.0 - 279.8) <C5912406-CB82-3FDB-81AC-307499E07909> /Applications/Motion.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns /Audio/EDEL.bundle/Contents/Resources/sphere.res/Contents/MacOS/sphere
           0x120987000 -        0x120a2afff  com.apple.CompressorKitMAS (4.0.7 - 4.0.7) <36E3D773-9DE2-3825-BD09-A7238F1E9DF0> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Compressor.framework/Versions/A/Frameworks/CompressorKit.framewor k/CompressorKit
           0x120a97000 -        0x120a9cfff  com.apple.qmaster.swamp (4.0.7 - 4.0.7) <BF192C3D-B18A-3A6B-968A-B298A02B2B2B> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Qmaster.framework/Versions/A/Qmaster
           0x120a9f000 -        0x120b8bff7  com.apple.compressor.StompUI (4.0.7 - 4.0.7) <9BE1ECE4-233B-39B9-B765-9BB7B20C5803> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Compressor.framework/Versions/A/Frameworks/StompUI.framework/Vers ions/A/StompUI
           0x120bfb000 -        0x120ce9fff  com.apple.compressor.StompTypes (4.0.5.1 - 19705.1.25) <26B4FD45-6340-32A2-9C3A-0F2DB55736BF> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Compressor.framework/Versions/A/Frameworks/StompTypes.framework/V ersions/A/StompTypes
           0x120d58000 -        0x120d63fff  com.apple.compressor.MediaServerAPI (4.0.7 - 4.0.7) <11FD0365-A97F-3EA4-9EC8-A908F332F4CE> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/MediaServerAPI.framework/Versions/A/MediaServerAPI
           0x120d6d000 -        0x120d7dfff  com.apple.compressor.StompUtil (4.0.7 - 4.0.7) <603CFF19-38B4-3753-86C1-809405F3ECD1> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Compressor.framework/Versions/A/Frameworks/StompUtil.framework/Ve rsions/A/StompUtil
           0x120d8b000 -        0x120d97ff7  com.apple.dsppublishing (1.0.1 - 119) <4911705D-4A96-3A74-871F-1F07528650D4> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/DSPPublishing.framework/Versions/A/DSPPublishing
           0x120dab000 -        0x120e04fff  com.apple.qmaster.SwampCore (4.0.7 - 303) <D2419545-7ADE-3214-B9EB-7A846BCC54E0> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampCore.framework/Versi ons/A/SwampCore
           0x120e31000 -        0x120e45fff  com.apple.qmaster.SwampUtil (4.0.7 - 4.0.7) <97A71F64-CC16-34A3-83D3-44DAFD637B1C> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampUtil.framework/Versi ons/A/SwampUtil
           0x120e51000 -        0x120f40fff  com.apple.qmaster.SwampTypes (4.0.7 - 4.0.7) <3F28C37F-57AB-3ED4-862C-B6BBD5DF3C8A> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampTypes.framework/Vers ions/A/SwampTypes
           0x120f9e000 -        0x121040fff  com.apple.qmaster.do (4.0.7 - 4.0.7) <8AEDCF57-26E0-30A0-A2EF-C92655ED7352> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Qmaster.framework/Versions/A/Frameworks/DistributedObjects.framew ork/Versions/A/DistributedObjects
           0x12109e000 -        0x1210adff7  com.apple.qmaster.SwampService (4.0.7 - 4.0.7) <984392B2-AC2C-311C-B412-80C15DD6CE72> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampService.framework/Ve rsions/A/SwampService
           0x1210bd000 -        0x1210ccfff  com.apple.qmaster.Status (4.0.7 - 4.0.7) <3FA05D44-49B2-3C05-81FC-9A823DE7F5E9> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Qmaster.framework/Versions/A/Frameworks/Status.framework/Versions /A/Status
           0x1210e3000 -        0x1210f4fff  com.apple.qmaster.RequestProcessing (4.0.7 - 4.0.7) <B4F9BE16-E136-3DA1-BC50-ADCC4722DCB6> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Qmaster.framework/Versions/A/Frameworks/RequestProcessing.framewo rk/Versions/A/RequestProcessing
           0x121108000 -        0x121124fff  com.apple.qmaster.ServiceControl (4.0.7 - 4.0.7) <05CC7819-1DA0-3CD9-8D35-3C195A6D82FA> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Qmaster.framework/Versions/A/Frameworks/ServiceControl.framework/ Versions/A/ServiceControl
           0x12113e000 -        0x1211c7fff  com.apple.qmaster.ContentControl (4.0.7 - 4.0.7) <0437763D-4747-3C78-959B-CF9494F8DC3A> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Qmaster.framework/Versions/A/Frameworks/ContentControl.framework/ Versions/A/ContentControl
           0x121201000 -        0x12130bfff  com.apple.qmaster.JobControl (4.0.7 - 4.0.7) <B2A7A4A5-034F-33B3-8B05-79BE3F45DC01> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Qmaster.framework/Versions/A/Frameworks/JobControl.framework/Vers ions/A/JobControl
           0x121380000 -        0x121390fff  com.apple.qmaster.ClusterManager (4.0.7 - 4.0.7) <0AB5F73C-A0EB-3988-BD83-A20898EABDBB> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Qmaster.framework/Versions/A/Frameworks/ClusterManager.framework/ Versions/A/ClusterManager
           0x12139c000 -        0x1213d3ff7  com.apple.qmaster.SwampUI (4.0.7 - 4.0.7) <48E25898-60E2-3A68-B1C3-59E751A79A1D> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampUI.framework/Version s/A/SwampUI
           0x1213f6000 -        0x121408ff7  com.apple.qmaster.SwampExecutor (4.0.7 - 4.0.7) <1B1DFBCB-D87B-3412-ADEA-C0713F0ACD19> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampExecutor.framework/V ersions/A/SwampExecutor
           0x12141e000 -        0x121461ff7  com.apple.compressor.ImageProcessing (4.0.7 - 4.0.7) <D7F895DE-F563-31DC-A6D0-6492E4212FD3> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Compressor.framework/Versions/A/Frameworks/ImageProcessing.framew ork/Versions/A/ImageProcessing
           0x121483000 -        0x1215b2ff7  com.apple.compressor.transcoding (4.0.7 - 4.0.7) <E9C2DAA0-11B9-3B29-B0E9-796039832C48> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Compressor.framework/Versions/A/Frameworks/Transcoding.framework/ Versions/A/Transcoding
           0x121688000 -        0x121692ff7  com.apple.compressor.FilterUI (4.0.7 - 4.0.7) <CE658003-035D-3D78-9001-03179BBC4A97> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/Compressor.framework/Versions/A/Frameworks/FilterUI.framework/Ver sions/A/FilterUI
           0x12169b000 -        0x1216a1ff7  com.apple.H264Encoder (1.0 - 5708) <9AF92A1B-ACF6-39D9-8281-0DAE1F70509C> /Applications/Motion.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Conte nts/Frameworks/H264Encoder.framework/Versions/A/H264Encoder
           0x121f27000 -        0x121f2bffd  libFontRegistryUI.dylib (127) <57DE4E73-B65B-3712-9815-81018E72501A> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x123918000 -        0x12391cff7  com.apple.Helium.HCache (2.1.0 - 22139.8.18) <13292BF0-C351-3089-B4B8-E43C7E2F80C6> /Applications/Motion.app/Contents/Frameworks/Helium.framework/Plug-ins/HCache.b undle/Contents/MacOS/HCache
           0x123994000 -        0x123d43fff  com.apple.motion.filters (4.0.2 - 22139.8.18) <37D185EF-7741-3956-9E34-3F4F1C8FDA56> /Applications/Motion.app/Contents/PlugIns/FxPlug/Filters.bundle/Contents/MacOS/ Filters
           0x126c0d000 -        0x126cb0ff7  ColorSyncDeprecated.dylib (426) <1EBD0729-A174-3EA5-B226-DE63C2E89D14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
           0x1375a5000 -        0x137650fff  com.apple.AppleGVAFramework (6.0.38 - 6.0.38) <778BD26C-91E5-3300-B78E-917CE26317E7> /System/Library/PrivateFrameworks/AppleGVA.framework/AppleGVA
        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
        0x7fff69104000 -     0x7fff69137817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff8ab02000 -     0x7fff8ab0eff7  com.apple.HelpData (2.1.4 - 90) <BEA1C549-40D3-35BF-9204-CB679FCB0648> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff8b130000 -     0x7fff8b132fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8b140000 -     0x7fff8b21ffff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8b222000 -     0x7fff8b22bff7  libcldcpuengine.dylib (2.3.58) <A2E1ED7B-FC7E-31F6-830A-FF917689766B> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff8b28c000 -     0x7fff8b28cfff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8b28d000 -     0x7fff8b2b1ff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8b2b2000 -     0x7fff8b2cfff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8b2d0000 -     0x7fff8b2dbff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <F8566D1F-450F-3571-911F-75C68E45919F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8b2dc000 -     0x7fff8b2e2fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff8b305000 -     0x7fff8b32efff  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
        0x7fff8b32f000 -     0x7fff8b45bfff  com.apple.MediaControlSender (1.9 - 190.4) <F5E934E1-D004-3C84-815A-961319F8C522> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8b472000 -     0x7fff8b48dff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff8b48e000 -     0x7fff8b4dcfff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8b4dd000 -     0x7fff8b4e9ff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8b4ea000 -     0x7fff8b4ecfff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8b51b000 -     0x7fff8b5ecff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8b6c6000 -     0x7fff8b6eafff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
        0x7fff8b6eb000 -     0x7fff8b6ecfff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff8b7ea000 -     0x7fff8b84aff2  com.apple.CoreUtils (1.9 - 190.4) <CBB5B4DC-2801-32B3-A31C-8811CCF99873> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8b87a000 -     0x7fff8b888fff  com.apple.CommerceCore (1.0 - 42) <ACC2CE3A-913A-39E0-8344-B76F8F694EF5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8b889000 -     0x7fff8b915ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8b916000 -     0x7fff8b93effb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff8bb6f000 -     0x7fff8bb8bfff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff8bb8c000 -     0x7fff8bc4eff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8bc4f000 -     0x7fff8bc59fff  com.apple.AppSandbox (3.0 - 1) <55717299-8164-3D79-918F-BD64706735CF> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8bc5a000 -     0x7fff8bc5cfff  com.apple.ExceptionHandling (1.5 - 10) <0DD670E1-08D5-3570-BE98-19030BEA9845> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
        0x7fff8c5fe000 -     0x7fff8c60fff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff8c610000 -     0x7fff8c986ffa  com.apple.JavaScriptCore (9537 - 9537.65) <7E76880C-832E-385B-9591-ACCF57A68385> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8c987000 -     0x7fff8c988ff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8c9d4000 -     0x7fff8cb09ffa  com.apple.WebKit (9537 - 9537.71) <8A07478D-B2CA-3724-81E4-ADC10E1AD3EA> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8cb62000 -     0x7fff8cb7aff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8cb7b000 -     0x7fff8cbbafff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8cbbb000 -     0x7fff8cc3bfff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8cc3d000 -     0x7fff8cc46fff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8cc47000 -     0x7fff8cc4efff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8cfab000 -     0

    windows 7  i7 HP system  6G RAM  no recent updates etc except 5.3
    It definitely is kicking out when I click to play a video or on the video grid box etc.  I retried with different videos I have loaded.  I have since edited a few pictures and flagged and imported and no concerns;  weird that is only video.  No I havent removed pref file.  Isnt that under LR where the catalog is?  If I delete it  it will recreate itself?  then I can re enter my prefs?  thanks

  • Setting button to play audio track

    Hi,
    I have not been able to find a solution to this problem, I thought someone might know of the correct way to go about it.
    I have created a menu in DVD studio pro which lists 19 different options (in this case they are 19 different pieces of music). What I want is for the user to select a track, hit play, and have the track play whilst the menu stays onscreen. Is this possible?
    Thanks
    Jack

    But, every DVD needs to have at least one video track to play properly. Why not add the menu image to a track which has the audio set in it. From your normal menu, set the buttons to target a marker at the start of each different audio section and set an end jump on the marker to go back to the menu. You could set the menu call to a small script which checks SPRM7 and returns to the menu on the appropriate button as well.
    That way a user can see the screen and listen to the audio and have a DVD with a track...

  • Writing to Multiple Data Files Only When selected?

    I am building a system that is measuring the CO2 content of 12 vessels but only 1 CO2 gas analyzer. So, my system has a series of valves that only lets one valve open at time so that only one vessel is being measured at a time.  What I would like to is have a measurement file for each vessel so I don't have to worry about determining which data came from each vessel. Also, I only want to write measurements to each file whenever its corresponding valve is turned on. The third thing I would like to do is to be able to read the data file and plot the trend data as the test is running.  These test will run for 14 days.  So what would you recommend to do this? Would you recommend using a Write to Measurement File Express VI, Write to Spreadsheet, Write to Text File, Write to XML? 
    Requirment Summary
    1) File for each vessel
    2) Only write data to file when corresponding valve is selected
    3) Ability to read the data files and plot the trend data over time for the 14-day test.
    I am using a Consumer/Producer design with two consumer loops one for processing and writing the data and the other to control a pump for a waterbath that was made inhouse.
    Thanks!
    Attachments:
    Producer-Consumer From Scratch2.vi ‏153 KB

    This is such an open ended question...but I will give some advice.
    If you plan on reading and writing to a file, dont use the write to measurement, you want to use the open/create/replace and close file functions.  The particular file you write to can be either of those listed, but the text file will require all numeric values to be changed to strings, which is just more overhead to take care of.  If I could recommend a type, it would be datalog files.  They are great to organize your data.  I don't see any reason to use XML.  Do you want to be able to open and review this data later? Do Post-Analysis in Excel? Maybe write to spreadsheet is what you are looking for then.
    Also, how fast are you gathering data?  At high speed, maybe you want to use binary files.  Downside is that you wouldn't be able to easily open the file for viewing outside of LabVIEW.  For a 14 day test, make sure you have enough resources for your sampling rate, as any ASCII files, such as .txt, can grow large very fast depending on how you sample and how many digits you store.
    For example, if we only store a 5 digit sample from one channel at 10 hz for 14 days:
    5bytes/sample*10Samples/s*60s/min*60min/hour*24hour/day*14days =  60,480,000 bytes, or 60MB.
    Are you wanting to show all of this data on a chart at once, and update live? This will use a lot of resources(RAM), but should be doable.  I would obviously have to know more about your engineering requirements to make any more suggestions, just wanted to give you a feel for the ups and downs of some of your options.  If you have the LabVIEW DSC module, then Citadel would be great for logging this data for you.
    Rob K
    Measurements Mechanical Engineer (C-Series, USB X-Series)
    National Instruments
    CompactRIO Developers Guide
    CompactRIO Out of the Box Video

Maybe you are looking for