Mx:videodisplay.totalTime = -1

I am trying to build a custom-progress bar which includes
both the download progress as well as the play progress of an
mx:videodisplay control, and allows the user to seek based on where
on the progress bar they click.
Here's how I am doing it:
capture the position of the click from mouseEvent
use it to calculate a percentage for how far down the
progress bar the click occurred (0.0-1.0)
multiply percentage by video.totalTime to determine what the
desired time is
set playheadTime equal to desired time
My problem is that the totalTime property is returning -1.
The video, however, remains playing, and the playheadTime property
is legit too - the clock still counts up every second of the video
as it plays. But since the totalTime property is -1 everything else
gets screwed up, and when I attempt to seek anywhere, i get Error
1003: Invalid Seek - understandable since seeking to a negative
time doesn't make sense.
Any information anyone has about how the totalTime property
is calculated would be appreciated. Also below are a couple pieces
of the code:

Update. When I add single line "System.gc()" in onTimer function I no longer have a crash and memory usage is constant.
Best Regards, Aleksey

Similar Messages

  • VideoDisplay/Slider Error = Error #1063: Argument count mismatch on... Expected 0, got 1

    I'm trying to connect a hslider to a video display. The idea being that as I move the slider the video will update live however when I drag the slider or the playhead updates ie. the video moves forward by a second I get the error in the title of this thread i.e:-
    ArgumentError: Error #1063: Argument count mismatch on components::VideoPopUp/onPlayingVideoUpdate(). Expected 0, got 1
    Here is the code that I use for my HSlider and myVideo Display. Can anyone please help me out as I'm not sure where I'm going wrong here:-
    <mx:Script>
    <![CDATA[
      import mx.events.VideoEvent;
      import mx.events.SliderEvent;
      private function videoDisplaySliderThumbDragHandler(event:SliderEvent):void{   
          videoDisplay.playheadTime = videoDisplaySlider.value;  
      private function videoDisplaySlider_ThumbPress():void{
          videoDisplay.removeEventListener(VideoEvent.PLAYHEAD_UPDATE, onPlayingVideoUpdate);
          videoDisplay.pause();
      private function videoDisplaySlider_ThumbRelease():void{
           videoDisplay.addEventListener(VideoEvent.PLAYHEAD_UPDATE, onPlayingVideoUpdate);
           videoDisplay.playheadTime = videoDisplaySlider.value;
           videoDisplay.play();
      private function videoDisplay_ready():void{
           videoDisplay.addEventListener(VideoEvent.PLAYHEAD_UPDATE, onPlayingVideoUpdate);
           videoDisplay.visible = true;
      private function onPlayingVideoUpdate() :void{
           videoDisplaySlider.value = videoDisplay.playheadTime;
    ]]>
    </mx:Script>
    <mx:HSlider id="videoDisplaySlider" invertThumbDirection="true" allowTrackClick="false" liveDragging="true" thumbDrag="videoDisplaySliderThumbDragHandler(event)" thumbPress="videoDisplaySlider_ThumbPress()" thumbRelease="videoDisplaySlider_ThumbRelease()" minimum="0" maximum="{videoDisplay.totalTime}"/>
    <mx:VideoDisplay id="videoDisplay" ready="videoDisplay_ready()" source="assets/myVideo.mp4" playheadUpdate="onPlayingVideoUpdate()"/>

    Aha I've managed to solve my own problem I missed the event out of the onVideoPlayingUpdate function I've now changed it to:-
    private function onPlayingVideoUpdate(event:VideoEvent) :void{
    and it works now.
    However I now have another problem when I drag the slider's thumb and then release it the video doesn't jump straight to that point as it should and just starts to play really slowly and jumpy.
    Also as I drag the thumb the video isn't changing live.
    To see what I'm trying to achieve go to YouTube and start dragging the thumb on the slider on their videos, you can see the picture updating live but I can't get that to happen in this case.
    Can anybody help me out on getting this to work smoothly?

  • Reuse a MXML component

    Hi All
    I have setup (not complete yet) a mxml component (see code below), which I want to implementhe multiple times in s:Application.
    Within the s:Script tag (currently empty) I want to reference the VideoDisplay, Buttons, etc. To do this I use the ID, but the problem is that I need to implement this component multiple times ? An other problem is that each instance should have a different video url. Any suggestions ?
    Cheers
    <?xml version="1.0" encoding="utf-8"?>
    <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/mx">
    <s:layout>
    <s:BasicLayout/>
    </s:layout>
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <fx:Script>
    <![CDATA[
    ]]>
    </fx:Script>
    <mx:DateFormatter id="dateFormatter" formatString="NN:SS" />
    <mx:Panel title="{videoDisplay.source.split('/').pop()} ({videoDisplay.state})">
    <mx:VideoDisplay id="videoDisplay" visible="false" width="400" height="100"
    playheadUpdate="videoDisplay_playheadUpdate('')"
    ready="videoDisplay_ready('')"
    rewind="videoDisplay.play()"
    source="./Android_Demo.flv" />
    <mx:ControlBar id="controlBar" visible="false">
    <mx:Button id="play" name="play" label="Play" click="videoDisplay.play()"></mx:Button>
    <mx:Button id="pause" name="pause" label="Pause" click="videoDisplay.pause()"></mx:Button>
    <mx:HSlider id="slider" width="100%"
    allowTrackClick="false"
    invertThumbDirection="true"
    liveDragging="false"
    maximum="{videoDisplay.totalTime}"
    minimum="0"
    thumbPress="slider_thumbPress('')"
    thumbRelease="slider_thumbRelease('')"
    tickInterval="1"
    value="{videoDisplay.playheadTime}" />
    <mx:Label id="timeLabel" textAlign="right" />
    </mx:ControlBar>
    </mx:Panel>
    </s:Group>

    Hi,
    You just create bindable vars(public) in the component, then you can reference them as a component property, this property can be any type string,int, array etc....
    David
    simple app using the same component twice
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx"
       xmlns:components="components.*"
       minWidth="955" minHeight="600">
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <components:MyComponent x="45" y="161" caption="Hello World" icon="img1.jpg" description="picture 1">
    </components:MyComponent>
    <components:MyComponent x="479" y="161" caption="Another Component" icon="img2.jpg" description="picture 2">
    </components:MyComponent>
    </s:Application>
    the simple component -
    <?xml version="1.0" encoding="utf-8"?>
    <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/mx" width="400" height="300">
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <fx:Script>
    <![CDATA[
    [Bindable] public var caption:String;
    [Bindable] public var icon:String;
    [Bindable] public var description:String;
    ]]>
    </fx:Script>
    <s:Panel left="0" right="0" top="0" bottom="0" title="{caption}">
    <s:VGroup verticalCenter="0" horizontalCenter="0">
    <s:Image width="140" height="140" horizontalCenter="0" source="{icon}"/>
    <s:Label text="{description}" width="100%" textAlign="center"/>
    </s:VGroup>
    </s:Panel>
    </s:Group>

  • VideoDisplay

    hello,
    In flash, the FLVPlayback component comes with a scrubber and
    progress bar. But in Flex the VideoDisplay does not, or at least it
    appears that way.
    How do I create an FLV player with scrub/progress bar in
    Flex?
    Any help is appreaciated,
    thank-you

    <!--MXML File-->
    <mx:NumberFormatter id="position_fmt" precision="3" />
    <mx:Canvas y="15" width="360" height="285"
    verticalScrollPolicy="off" horizontalScrollPolicy="off">
    <mx:VideoDisplay id="Vid" source="{vidFileURL}"
    width="352" height="240" x="5" y="0"
    creationComplete="Vid.pause();"/>
    <mx:Button id="VidPause" label="Pause"
    click="Vid.pause();" x="260" y="260" color="#000000"/>
    <mx:Button id="VidPlay" label="Play" click="Vid.play();"
    x="200" y="260" color="#000000"/>
    <mx:ProgressBar id="vidProgress" x="23" y="243"
    width="335" mode="manual" source="Vid" indeterminate="true"/>
    <mx:HSlider id="vidSlider" x="16" y="234" width="347"
    minimum="0"
    maximum="{Vid.totalTime}"
    liveDragging="false"
    value="{Vid.playheadTime}"
    thumbPress="hsliderPressHandler(event);"
    thumbRelease="hsliderReleaseHandler(event);"
    change="hsliderChangeHandler(event);"/>
    </mx:Canvas>
    // ActionScript file
    import flash.events.Event;
    import flash.net.URLLoader;
    import flash.display.Loader;
    import flash.net.URLRequest;
    import mx.events.SliderEvent;
    import flash.errors.IOError;
    import flash.events.IOErrorEvent;
    import flash.media.Video;
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    NetConnection.defaultObjectEncoding =
    flash.net.ObjectEncoding.AMF0;
    SharedObject.defaultObjectEncoding =
    flash.net.ObjectEncoding.AMF0;
    public var vidFile:Loader = new Loader();
    [Bindable]
    public var vidFileURL:String = new
    String("videos/construction.flv");
    public var vidFileURLReq:URLRequest;
    private var wasPlaying:Boolean = false;
    public var counter:int = 0;
    public var startstoptimer:Timer = new Timer(1000);
    public function videoInit():void{
    videoLoader();
    public function vidStartStop():void{
    startstoptimer.addEventListener(TimerEvent.TIMER,
    startstopHandler);
    startstoptimer.start();
    private function startstopHandler(event:TimerEvent):void{
    counter++;
    if (counter==2){
    Vid.pause();
    startstoptimer.stop();
    public function videoLoader():void{
    Vid.autoPlay=true;
    vidProgress.setProgress(0,100);
    vidProgress.visible=true;
    vidProgress.indeterminate=true;
    vidFileURLReq = new URLRequest(vidFileURL);
    vidFile.load(vidFileURLReq);
    vidFile.contentLoaderInfo.addEventListener(Event.OPEN,
    vidOpenHandler);
    vidFile.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,
    vidProgressHandler);
    vidFile.contentLoaderInfo.addEventListener(Event.COMPLETE,
    vidLoadCompleteHandler);
    vidFile.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR,
    errorHandler);
    vidStartStop();
    private function errorHandler(errorEvent:IOErrorEvent):void{
    private function vidOpenHandler(event:Event):void{
    vidProgress.indeterminate=false;
    private function
    vidProgressHandler(event:ProgressEvent):void{
    vidProgress.setProgress(event.bytesLoaded,event.bytesTotal);
    private function vidLoadCompleteHandler(event:Event):void{
    private function hsliderPressHandler(evt:SliderEvent):void {
    wasPlaying = this.Vid.playing;
    if(wasPlaying) {
    this.Vid.pause();
    private function hsliderReleaseHandler(evt:SliderEvent):void
    if(wasPlaying) {
    this.vidSlider.callLater(this.Vid.play);
    private function playVid():void{
    this.Vid.play();
    private function hsliderChangeHandler(evt:SliderEvent):void
    this.Vid.playheadTime =
    Number(this.position_fmt.format(evt.value));
    There's some of my code.. the MXML and the AS file. That
    works.

  • The MessagePerformanceUtils:totalTime issue in Flex 4 (rpc.swc) using LCDS 3.1 running under JDK1.6

    We are facing an issue while using LCDS 3.1 running under JDK1.6 in Sun Solaris v5.10 OS & Adobe Flex 4.
    Scenario :-
    ===================================
    As part of our Flex-based client-server application (with Java backend) we have a performance report generation module. Following flex framework class is used to calculate the performance of various layer of a typical server-based request-response cycle.
    ; (available in rpc.swc library file)
    (for example : server time, cairngorm time, UI screen rendering time, UI event generation time etc).
    The totalTime was working properly before upgrading the rpc.swc to Flex 4 ; However it broke after migrating to Flex SDK 4; The totalTime is now coming as negative junk value.
    As we understand that the above Flex framework class method works in conjunction with LCDS running at server side on JDK.
    We suspect that the new rpc.swc taken from Flex SDK 4 is causing the issue !
    System information :
    Web Server : Weblogic 11G
    Operating System : Sun Solaris v5.10 OS running on Sparc hardware.
    Flex : Adobe Flex sdk 4.0
    Flash player : Adobe Flash Player 10
    Browser : Internet Explorer 8
    LCDS : 3.1
    JDK : JDK 1.6.0_14
    ===================================
    Has anyone faced similar problem before ? Any help or direction would be highly appreciated.
    Thanks in advance,
    Rabi
     mx.messaging.messages.MessagePerformanceUtils :totalTime

    Nothing has changed in the Flex SDK sources for this class since sometime around 2008. Are you running against the same LCDS server as you were before you updated to Flex 4?  This certainly seems strange (and bad).  Do you see the same behavior with Flex 4.5?  What was the version of Flex you were using before switching to Flex 4.0?
    If you can provide the additional information, we will look in to this.  A reproducable case that was a simple mxml application along with a simple destination config would help us narrow the problem.
    Sorry for the problems!
    Tom

  • Is there a better option than spark VideoDisplay with AV syncing capabilities

    We have developed an AIR application that involves syncing multiple audio tracks with a video track.  We are using the Spark VideoDisplay component for video and the Flash SoundChannel object for audio.  We are having trouble keeping the audio synced with the video.  Is there a better component to use for this?  Is there some technique to keeping audio and video synced in Flash/AIR?

    Andrea,
    Your sample does not look like being »foot-intensive«, I only find two footnotes. And those will not be a problem for FrameMaker.
    For 2-column text layout FrameMaker (as InDesign) gives you the option to create one text frame set to have two columns, or create two connected text frames, each of them one column. To keep the footnote in the original column, you would use the latter method. More information can be found in the online help:
    http://help.adobe.com/en_US/framemaker/using/WS6C3D24E6-2965-48bb-B6CF-50D1439AEB01.html
    Regarding other elements of the sample pages I don’t see any stumbling blocks. Just be aware that the general approach to layout, and especially when using XML-structured documents, is completely different from InDesign. With InDesign you just move all the frames wherever and whenever you want. With FrameMaker you plan ahead, create master pages and paragraph styles and then follow this original design. Creating layout changes »on the fly« is just not the way you work in FrameMaker. But this limitation is the reason for a higher layout consistency.
    - Michael

  • How to delay creation of VideoDisplay

    My Flex' app reads an xml with different video-source-url's.
    On the same time the VideoDisplay is created. But it does not have
    the url for the VideoDisplay source property because parsing is
    taking to long.
    How can I delay the creation of the VideoDisplay component?

    "Flextoth" <[email protected]> wrote in
    message
    news:glktfo$ipm$[email protected]..
    > My Flex' app reads an xml with different
    video-source-url's. On the same
    > time
    > the VideoDisplay is created. But it does not have the
    url for the
    > VideoDisplay
    > source property because parsing is taking to long.
    >
    > How can I delay the creation of the VideoDisplay
    component?
    >
    Do you actually need to delay its creation, or just delay
    setting its source
    property?

  • Is there  any way to use osmf plugin with videodisplay component?

    Hello
    i use flex sdk hero (17689 build)
    i want to use OSMF plugin for the  captioning. i created object of media element with metadata for captioning plugin so  eventually i get object of CaptioningProxyElement type from mediaFactory ,  than i pass it to the source of videoDisplay> in source setter of videoDisplay setUpSource()  is called . in setUpSource  the type of source is checked and videoElement is created and assinged to videoPlayer( of type MediaPlayer) according  to the source type.The problem is that  my source is of type  CaptioningProxyElement (extended from MediaPlayer) so setUpSource ignores it , eventually not assining it to videoPlayer.  i can't extend VideoDispay and override source either , since videoPlayer is of type mx_internal , it's not accessible .
    thanks in advance.
    private function setUpSource():void
            // clean up any listeners from the old source, especially if we
            // are in the processing of loading that video file up
            cleanUpSource()
            // if was playing a previous video, let's remove it now
            if (videoPlayer.media && videoContainer.containsMediaElement(videoPlayer.media))
                videoContainer.removeMediaElement(videoPlayer.media);
            var videoElement:org.osmf.media.MediaElement = null;
            // check for 4 cases: streaming video, progressive download,
            // an IMediaResource, or a VideoElement. 
            // The latter 2 are undocumented but allowed for flexibility until we
            // can support OSMF better after they ship OSMF 1.0.  At that point, support
            // for a source as an IMediaResource or a VideoElement may be removed.
            if (source is DynamicStreamingVideoSource)
                // the streaming video case.
                // build up a DynamicStreamingResource to pass in to OSMF
                var streamingSource:DynamicStreamingVideoSource = source as DynamicStreamingVideoSource;
                var dsr:DynamicStreamingResource;
                // check for two cases for host: String and URL.
                // Technically, we only support URL, but we secretly allow
                // them to send in an OSMF URL or FMSURL here to help resolve any ambiguity
                // around serverName vs. streamName.
                if (streamingSource.host is String)
                    dsr = new DynamicStreamingResource(streamingSource.host as String,
                                                       streamingSource.streamType);
                else if (streamingSource.host is URL)
                    dsr = new DynamicStreamingResource(URL(streamingSource.host).host,
                                                       streamingSource.streamType);
                if (dsr)
                    var n:int = streamingSource.streamItems.length;
                    var item:DynamicStreamingVideoItem;
                    var dsi:DynamicStreamingItem;
                    var streamItems:Vector.<DynamicStreamingItem> = new Vector.<DynamicStreamingItem>(n);
                    for (var i:int = 0; i < n; i++)
                        item = streamingSource.streamItems[i];
                        dsi = new DynamicStreamingItem(item.streamName, item.bitrate);
                        streamItems[i] = dsi;
                    dsr.streamItems = streamItems;
                    dsr.initialIndex = streamingSource.initialIndex;
                    // add video type metadata so if the URL is ambiguous, OSMF will
                    // know what type of file we're trying to connect to
                    dsr.mediaType = MediaType.VIDEO;
                    videoElement = new org.osmf.elements.VideoElement(dsr, new RTMPDynamicStreamingNetLoader());
            else if (source is String)
                var urlResource:URLResource = new URLResource(source as String);
                videoElement = mediaFactory.createMediaElement(urlResource);
                // If the url could not be resolved to a media element then try
                // telling osmf the media is a video and try again.
                // We do not specify the media type as video the first time,
                // so we can have the chance to play audio.
                if (videoElement == null)
                    urlResource.mediaType = MediaType.VIDEO;
                    videoElement = mediaFactory.createMediaElement(urlResource);               
            else if (source is MediaResourceBase)
                videoElement = mediaFactory.createMediaElement(MediaResourceBase(source));
            else if (source is org.osmf.elements.VideoElement)
                videoElement = source as org.osmf.elements.VideoElement;
            // reset the visibilityPausedTheVideo flag
            playTheVideoOnVisible = true;
            // set up videoPlayer.autoPlay based on whether this.autoPlay is
            // set and whether we are visible and the other typical conditions.
            changePlayback(false, false);
            // if we're not going to autoPlay (or couldn't autoPlay because
            // we're hidden or for some other reason), but we need to seek
            // to the first frame, then we have to do this on our own
            // by using our load() method.
            if ((!autoPlay || !shouldBePlaying) && autoDisplayFirstFrame)
                load();
            // set videoPlayer's element to the newly constructed VideoElement
            // set the newly constructed videoElement's gateway to be the videoGateway
            videoPlayer.media = videoElement;
            if (videoElement)
                if (videoElement.getMetadata(LayoutMetadata.LAYOUT_NAMESPACE) == null)
                    var layout:LayoutMetadata = new LayoutMetadata();
                    layout.scaleMode = scaleMode;
                    layout.verticalAlign = VerticalAlign.MIDDLE;
                    layout.horizontalAlign = HorizontalAlign.CENTER;
                    layout.percentWidth = 100;
                    layout.percentHeight = 100;
                    videoElement.addMetadata(LayoutMetadata.LAYOUT_NAMESPACE, layout);
                if (videoElement && !videoContainer.containsMediaElement(videoElement) )
                    videoContainer.addMediaElement(videoElement);
            else
                // if our source is null, let's invalidateSize() here.
                // if it's a bad source, we'll get a playbackError and invalidate
                // the size down there.  If it's a good source, we'll get a
                // dimensionChange event and invalidate the size in there.
                invalidateSize();

    See my FAQ*:
    http://www.macmaps.com/macosxnative.html#SCANNER

  • VideoDisplay not loading new video on a Mac

    Hi Everyone,
    I am at the final stages of releasing a product to my client and if I dont get this problem fixed it may be detrimental to me getting paid, so much hair has been pulled out so far!!!
    I have a created a bbc iplayer type application that downloads videos, stores them for viewing offline and plays the selected one.   Before the selected video is played, a 10 second flv containing the clients logo plays.
    This works fine on a windows system but a Mac doenst like it.   The intro animation plays, but when it is finished it does not play the second video loaded into the videodisplay component.
    If this works on a windows system it means there is nothing wrong with my code - right?    The  both videos exist and the player plays both so therefore the code is ok.  Is there a known problem about how the videodisplay component renders video on the Mac?
    I thought one of the benefits of using something like Air was that you didnt have to worry about the operating system it resides on.
    Here is a simplified version of my code below if anyone can spot why this would be.
    //Called on creationComplete
    protected function onComplete(evt:FlexEvent):void { launchSplash() }
    protected function launchSplash():void
       //trace(">>VideoPlayerPanel:launchSplash--")
       _videoDisplay.source = "assets/Ident.flv";
       _videoDisplay.addEventListener(VideoEvent.COMPLETE,onSplashComplete)
       disablePlayercontrols()  
    protected function onSplashComplete(evt:VideoEvent):void
       trace(">>VideoPlayerPanel:onSplashComplete--")
       _videoDisplay.removeEventListener(VideoEvent.COMPLETE, onSplashComplete)
       _videoDisplay.stop();
       _videoDisplay.source = null;
       _videoDisplay.close()
       Alert.show("Starting 1.5 Second Timer","onSplashComplete")
       var _pauseTimer:Timer  = new Timer(1500,1)
        _pauseTimer.addEventListener(TimerEvent.TIMER_COMPLETE, onTimerComplete)
        _pauseTimer.start()
       function onTimerComplete(event:TimerEvent):void
        trace(">>VideoPlayerPanel:onSplashComplete:onTimerComplete--")
        Alert.show("Timer Completed - Setting Video to play","onTimerComplete")
        _pauseTimer.removeEventListener(TimerEvent.TIMER_COMPLETE, onTimerComplete)
        _pauseTimer.reset()
        playSelectedVideo()
    protected function playSelectedVideo():void
       trace(">>VideoPlayerPanel:playSelectedVideo--")
       Alert.show("Video Should be playing","playSelectedVideo")
       _videoDisplay.source = _vidSource;
       _videoDisplay.play()
       enablePlayercontrols()
       if(_videoData.type.toString() == "audio"){showAudioImage()}
    If anyone can help me on this one I greatly appreciate it as I work on my own so have no one to look over my code...
    THANKS!

    Hi,  OK here is the basic code in two forms - one attached and the other one
    pasted below:
    The Ident video plays fine, but the video loaded in by the user does not
    play on the Mac (fine on windows)
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" initialize="init()">
         <mx:Panel width="100%" height="100%" title="Video Window">
              <mx:VideoDisplay id="_vidDisplay" width="100%" height="100%" source="ident.flv" autoPlay="false" />
              <mx:ApplicationControlBar width="100%">
                   <mx:TextArea height="20" width="100%" text=""/>
                   <mx:Button label="Browse" click="{browseForFile(event)}" />
                   <mx:Button label="Play" click="{_vidDisplay.play()}" />
              </mx:ApplicationControlBar>
         </mx:Panel>
         <mx:Script>
              <![CDATA[
                        import flash.events.Event;
                        import flash.events.MouseEvent;
                        import flash.filesystem.File
                        import mx.events.VideoEvent;
                        protected var _appDir:File;
                        [Bindable]
                        protected var _vidSource:String;
                        protected function init():void
                             _vidDisplay.addEventListener(VideoEvent.COMPLETE,onSplashComplete)
                        protected function browseForFile (evt:MouseEvent):void
                             trace(">>Main:browseForFile--")
                             _appDir = File.userDirectory.resolvePath("UKA");
                             _appDir.browseForOpen("Select your video to load")
                             _appDir.addEventListener(Event.SELECT,onSelected)
                        protected function onSelected(evt:Event):void
                             trace(">>Main:onSelected--",_appDir.nativePath)
                             _vidSource = _appDir.nativePath;
                             _vidDisplay.play();
                        protected function onSplashComplete(evt:VideoEvent):void
                             trace(">>Main:onSplashComplete--", _appDir.nativePath)
                             _vidDisplay.removeEventListener(VideoEvent.COMPLETE,onSplashComplete)
                             _vidSource = _appDir.nativePath;
                             _vidDisplay.source = _vidSource;
                             _vidDisplay.play();
                   ]]>
              </mx:Script>
    </mx:WindowedApplication>
    best wishes,
    Robert Eastham

  • Crash using component videoDisplay on mp4 or mov file

    Hi,
    Sometime, I'm experiencing some problems with videoDisplay component. Ie the video is playing correctly, and randomly the application crashs.
    the video file are encoded in h264.
    An idea to solve it ?
    Regards,
    You can find here, crash report :
    Code Type:       X86 (Native)
    Parent Process:  launchd [149]
    Date/Time:       2012-02-27 17:14:16.887 +0100
    OS Version:      Mac OS X Server 10.7.3 (11D50b)
    Report Version:  9
    Interval Since Last Report:          45867 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  45805 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      8E2B0D02-2159-4585-86BF-C8FD985D888F
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000003c2bb01
    VM Regions Near 0x3c2bb01:
        shared memory          0000000003c1f000-0000000003c20000 [    4K] rw-/rw- SM=SHM 
    -->
        mapped file            0000000003e1f000-00000000046ff000 [ 9088K] r--/rwx SM=COW  /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/Resources/SArtFile.bin
    Application Specific Information:
    objc[202]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.AIR                           0x02e789cd 0x27a5000 + 7158221
    1   com.adobe.AIR                           0x02ba5f5c 0x27a5000 + 4198236
    2   com.apple.AppKit                        0x989fca57 -[NSApplication sendEvent:] + 7204
    3   com.adobe.AIR                           0x02b96dc7 0x27a5000 + 4136391
    4   com.apple.AppKit                        0x9898d6d5 -[NSApplication run] + 1007
    5   com.adobe.AIR                           0x027ad8ea 0x27a5000 + 35050
    6   com.adobe.AIR                           0x027adc30 0x27a5000 + 35888
    7   com.apple.CoreFoundation                0x900c6de1 -[NSObject performSelector:withObject:] + 65
    8   Diffmed.air                             0x00002f27 start + 2587
    9   Diffmed.air                             0x00002542 start + 54
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x938b090a kevent + 10
    1   libdispatch.dylib                       0x996b3c58 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x996b26a7 _dispatch_mgr_thread + 53
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x938adc22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x938ad1f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9005ec7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x90067da4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9006747c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x90067328 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x943d80f8 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7   com.apple.Foundation                    0x943cbe59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x943cbe09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x9bea0ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x9bea46de thread_start + 34
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x938afb42 __select + 10
    1   com.apple.CoreFoundation                0x900b5ee5 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x9bea0ed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x9bea46de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x938b002e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9bea2ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9bea46fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x03c2b000  ebx: 0x02e789c6  ecx: 0x993dba78  edx: 0x00000000
      edi: 0x0015a100  esi: 0x03c2b000  ebp: 0xbffff548  esp: 0xbffff530
       ss: 0x00000023  efl: 0x00010286  eip: 0x02e789cd   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x03c2bb01
    Logical CPU: 0
    Binary Images:
        0x1000 -     0x6ff7 +Diffmed.air (3.0.380 - ???) <0E2ECBFA-6321-EDA8-D329-039D773FCCF0> /Users/*/Diffmed_air.app/Contents/MacOS/Diffmed_air
      0x600000 -   0x6adff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
      0x723000 -   0x727ffb  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <E6982BB2-BEC8-3232-989D-B3D5B26AE0DF> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
      0x7ea000 -   0x7f4fff  com.apple.IOFWDVComponents (2.0.7 - 2.0.7) <811CF4D6-15B2-3EDA-B026-5E4B28C0F742> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComponents
    0x27a5000 -  0x38bbfc7 +com.adobe.AIR (??? - 3.1.0.4880) <AB2E4804-CA8F-B8C0-AE11-B52400555F22> /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR
    0x7697000 -  0x76d0ff3  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2315) <F2AFE0C1-1B5B-3A46-9A09-A2E04DCBE215> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTimeFireWireD V
    0x76db000 -  0x7703ff3  com.apple.QuickTimeIIDCDigitizer (7.7.1 - 2315) <E860A690-288A-30D1-8C30-09C17347C401> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/QuickTimeIIDCDi gitizer
    0x770b000 -  0x7759ff7  com.apple.QuickTimeUSBVDCDigitizer (2.7.1 - 2.7.1) <1D79F9C3-E0F4-33AE-A390-38DD884DEA28> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/QuickTimeUSBV DCDigitizer
    0x7763000 -  0x7769ffb  com.apple.audio.AppleHDAHALPlugIn (2.1.7 - 2.1.7f9) <731DE928-8747-39A9-8C7A-E1017A4D1A07> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x77a9000 -  0x77d6ff8  GLRendererFloat (??? - ???) <046FB12A-6022-3A91-8385-5BDF85BDACE7> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x781a000 -  0x781afff  com.apple.VideoDecodeAcceleration (1.1 - 8) <E193AA1D-9176-36FA-A084-7182AF615E60> /System/Library/Frameworks/VideoDecodeAcceleration.framework/VideoDecodeAcceleration
    0x8767000 -  0x88d4ffc  GLEngine (??? - ???) <5C52561A-F1B6-33ED-B6A0-7439EA2B0920> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x8908000 -  0x89ffffb  libGLProgrammability.dylib (??? - ???) <C45CEE58-603A-371C-B4AB-5346DC13D8F3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0xb75c000 -  0xb872ff3  com.apple.AppleGVAFramework (2.2.79 - 2.2.79) <7D6AA57B-BA89-398A-8522-0D6D2106669E> /System/Library/PrivateFrameworks/AppleGVA.framework/AppleGVA
    0xba4e000 -  0xbb08ffb  com.apple.GeForceVADriver (7.18.11 - 7.1.8) <4BA206C2-3712-383C-AFF9-074A5D3BC3A9> /System/Library/Extensions/GeForceVADriver.bundle/Contents/MacOS/GeForceVADriver
    0x8effe000 - 0x8f7a3ffb  com.apple.GeForceGLDriver (7.18.11 - 7.1.8) <71391D53-5F7C-3DA2-AB51-B9CFE665FF2A> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    0x8fee6000 - 0x8ff18aa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x90021ffc  libPng.dylib (??? - ???) <75F41C08-E187-354C-8115-79387F57FC2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x9002c000 - 0x90203fff  com.apple.CoreFoundation (6.7.1 - 635.19) <3A07EDA3-F460-3971-BFCB-AFE9A11F74F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902a2000 - 0x90309fff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x903e5000 - 0x90a76fe3  libclh.dylib (4.0.3 - 4.0.3) <6A8847F2-1F44-3B30-A770-DAAF8D1D36C2> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x90a9e000 - 0x90aa0ff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x90e1d000 - 0x90e4cff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x90e4d000 - 0x90e5bfff  com.apple.opengl (1.7.6 - 1.7.6) <5EF9685C-F8B2-3B22-B291-8012761E9AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90e5c000 - 0x90f44fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <ED3F5E83-8C76-3D46-B2FF-0D5BDF8970C5> /usr/lib/libxml2.2.dylib
    0x90f45000 - 0x90f5cff8  com.apple.CoreMediaAuthoring (2.0 - 890) <53F48529-E89F-3518-B888-C8C735C16F8F> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x90f5d000 - 0x90f5effd  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <45AC1CB9-2A81-3FEA-9BA4-E9BBA2582A28> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
    0x90fc2000 - 0x90fd8ffe  libxpc.dylib (77.18.0 - compatibility 1.0.0) <D40B8FD1-C671-3BD5-8C9E-054AF6D4FE9A> /usr/lib/system/libxpc.dylib
    0x90fd9000 - 0x90fdafff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x90fdb000 - 0x90fe4fff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x90fe5000 - 0x913e7ff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x9142d000 - 0x914a5ff8  com.apple.CorePDF (3.1 - 3.1) <0074267B-F74A-30FC-8508-A14C821F0771> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x914a6000 - 0x917eaffb  com.apple.HIToolbox (1.8 - ???) <9540400F-B432-3116-AEAD-C1FBCFE67E73> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x917f4000 - 0x917faffd  com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x917fb000 - 0x9180cfff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x9180d000 - 0x9184bfff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <0FAB8C29-2A1B-3E25-BA34-BDD832B828DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x9184c000 - 0x9186ffff  com.apple.CoreVideo (1.7 - 70.1) <3520F013-DF91-364E-88CF-ED252A7BD0AE> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91870000 - 0x918d2ffb  com.apple.datadetectorscore (3.0 - 179.4) <32262124-6F75-3999-86DA-590A90BA464C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x918d3000 - 0x918f8ff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x91968000 - 0x91c24ff3  com.apple.security (7.0 - 55110) <2F4FCD65-2A30-3330-99DE-91FE1F78B9FB> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91c25000 - 0x91c44fff  com.apple.RemoteViewServices (1.3 - 44) <243F16F3-FFFE-3E81-A969-2EC947A11D89> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x91f53000 - 0x92013ffb  com.apple.ColorSync (4.7.1 - 4.7.1) <68413C12-2380-3B73-AF74-B9E069DFB89A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x92014000 - 0x92018ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
    0x92019000 - 0x92d69feb  com.apple.QuickTimeComponents.component (7.7.1 - 2315) <1826E4DB-15C2-3495-A278-A17ADEDB0A62> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponent s
    0x92d6a000 - 0x92df4ffb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x92df5000 - 0x92e12ff3  com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x92f2b000 - 0x92f6bff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x93052000 - 0x93055ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x93056000 - 0x9305aff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x9305b000 - 0x93065ff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x93068000 - 0x9313fff6  com.apple.QuickLookUIFramework (3.1 - 500.10) <1E4CDD9B-BF13-375A-AC74-0943F9DA8648> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x93140000 - 0x93162ff1  com.apple.PerformanceAnalysis (1.10 - 10) <45B10D4C-9B3B-37A6-982D-687A6F9EEA28> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x93163000 - 0x9316bff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <A1BFC320-616A-30AA-A41E-29D7904FC4C7> /usr/lib/system/libcopyfile.dylib
    0x9316c000 - 0x9324fff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <BD913D3B-388D-33AE-AA5E-4810C743C28F> /usr/lib/libcrypto.0.9.8.dylib
    0x93250000 - 0x9372cff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x9372d000 - 0x93776ff7  libGLU.dylib (??? - ???) <AEA2AD9A-EEDD-39B8-9B28-4C7C1BACB594> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x937cc000 - 0x937cfff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x93887000 - 0x93888ffd  libCVMSPluginSupport.dylib (??? - ???) <6C364E11-B9B3-351A-B297-DB06FBAAFFD1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x93889000 - 0x93896fff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93897000 - 0x938b5ff7  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <D32C2E9C-8184-3FAF-8694-99FC619FC71B> /usr/lib/system/libsystem_kernel.dylib
    0x938db000 - 0x938defff  com.apple.AppleSystemInfo (1.0 - 1) <D2F60873-ECB1-30A8-A02E-E772F969116E> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x9436c000 - 0x94676ff3  com.apple.Foundation (6.7.1 - 833.24) <8E2AD829-587C-3146-B483-9D0209B84192> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94677000 - 0x946a0ff1  com.apple.CoreServicesInternal (113.12 - 113.12) <CFF78E35-81F5-36C2-A59F-BF85561AC16D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x946a1000 - 0x946f2fff  libFontRegistry.dylib (??? - ???) <DF69E8EC-9114-3757-8355-8F3E82156F85> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x946f3000 - 0x9474eff3  com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x947db000 - 0x947dcff7  libsystem_sandbox.dylib (??? - ???) <D272A77F-7F47-32CD-A36E-5A3FB966ED55> /usr/lib/system/libsystem_sandbox.dylib
    0x947dd000 - 0x947e1ff7  com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9480c000 - 0x9480cff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9480d000 - 0x94814fff  com.apple.agl (3.1.4 - AGL-3.1.4) <CCCE2A89-026B-3185-ABEA-68D268353164> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x94815000 - 0x94851ffa  libGLImage.dylib (??? - ???) <05B36DC4-6B90-33E6-AE6A-10CAA1B70606> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x94852000 - 0x94c45ffb  com.apple.VideoToolbox (1.0 - 705.61) <1278DC1E-AF77-34C1-9A60-B61ECF806E4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x94c46000 - 0x94c4dffd  com.apple.NetFS (4.0 - 4.0) <D0D59145-D211-3E7C-9062-35A2833FA99B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x94c4e000 - 0x94c5cff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x94c5f000 - 0x94c62ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <E06426D8-CC01-3754-B5B3-D15CBA5C8D73> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x94dff000 - 0x94e86fff  com.apple.print.framework.PrintCore (7.1 - 366.1) <BD9120A6-BFB0-3796-A903-05F627F696DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x94e87000 - 0x94f96fff  com.apple.DesktopServices (1.6.2 - 1.6.2) <33DCFB71-1D9E-30B6-BC4C-CD54068690BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x94fb2000 - 0x951a7ff7  com.apple.CoreData (104.1 - 358.13) <EB02DCA7-DB2A-32DD-B49E-ECE54D078610> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x951a8000 - 0x95309ffb  com.apple.QuartzCore (1.7 - 270.2) <4A6035C8-1237-37E5-9FFF-1EFD735D8B18> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9530a000 - 0x9531eff7  com.apple.CFOpenDirectory (10.7 - 144) <665CDF77-F0C9-3AFF-8CF8-64257268B7DD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x9531f000 - 0x95328ff3  com.apple.CommonAuth (2.1 - 2.0) <5DA75D12-A4D6-3362-AD72-79A64C79669E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x95329000 - 0x9532cffb  com.apple.help (1.3.2 - 42) <DDCEBA10-5CDE-3ED2-A52F-5CD5A0632CA2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x954b9000 - 0x95501ff7  com.apple.SystemConfiguration (1.11.2 - 1.11) <CA077C0D-8A54-38DB-9690-5D222899B93D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x95502000 - 0x9558ffe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x95a19000 - 0x95a67ff3  com.apple.ImageCaptureCore (3.0.2 - 3.0.2) <2FBC3C23-B0DD-3F0B-8452-90954F9C7E13> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x95a68000 - 0x95b3eaab  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
    0x95b51000 - 0x95bc0fff  com.apple.Heimdal (2.1 - 2.0) <BCF7C3F1-23BE-315A-BBB6-5F01C79CF626> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x95bc1000 - 0x95cdffec  com.apple.vImage (5.1 - 5.1) <7757F253-B281-3612-89D4-F2B04061CBE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x95f1a000 - 0x95f1afff  com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9604f000 - 0x96054ffd  libGFXShared.dylib (??? - ???) <179E77CE-C72C-3B5F-8F1E-3901517C24BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x96055000 - 0x960b7ff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x960b8000 - 0x960c3ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <DD0529E3-9D71-37B6-9EB8-D7747B2B12C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x96106000 - 0x9619bff7  com.apple.LaunchServices (480.27.1 - 480.27.1) <8BFE799A-7E35-3834-9403-20E5ADE015D0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x9619c000 - 0x9619cfff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9619d000 - 0x96557ffb  com.apple.SceneKit (2.2 - 125.3) <D4EAD83D-0E86-3159-80D6-C8B53B25B833> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x96558000 - 0x9658eff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x96671000 - 0x966b4ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x966db000 - 0x966deffd  libCoreVMClient.dylib (??? - ???) <2D135537-F9A6-33B1-9B01-6ECE7E929C00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x966df000 - 0x96952ff7  com.apple.CoreImage (7.93 - 1.0.1) <88FEFE5B-83A9-3CD9-BE2E-DB1E0553EBB0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x96953000 - 0x9695bff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x9695c000 - 0x9695cffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x9695d000 - 0x96985ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <FCAC685A-724F-3FE7-8416-146108DF75FB> /usr/lib/libxslt.1.dylib
    0x96986000 - 0x969eafff  com.apple.framework.IOKit (2.0 - ???) <8DAF4991-7359-3D1B-AC69-3CBA797D1E3C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x969eb000 - 0x96abafff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <D4D6EB78-8A6C-3474-921C-622C6951489B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x96abb000 - 0x96b18ffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x96b1b000 - 0x96b91fff  com.apple.Metadata (10.7.0 - 627.28) <71AC8DA5-FA89-3411-A97C-65B6129E97BD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x96b92000 - 0x96b96fff  com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x96be3000 - 0x96be4fff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x96ca9000 - 0x96ca9fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x96caa000 - 0x96cc6ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x96cd3000 - 0x96d13ff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x96d15000 - 0x96d56ff7  com.apple.CoreMedia (1.0 - 705.61) <75CC7ECC-8D62-3BA3-BD9B-D5E7FA82EC2D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x96d70000 - 0x96d76ffb  com.apple.print.framework.Print (7.1 - 247.1) <5D7ADC17-D8EF-3958-9C0C-AA45B7717FBA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x96d77000 - 0x96ec9fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <E369AC9E-F548-3DF6-B320-9D09E486070E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96eca000 - 0x977f25eb  com.apple.CoreGraphics (1.600.0 - ???) <E285B0B6-F9FC-33BC-988F-ED619B32029C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x977f3000 - 0x97810fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x97b1e000 - 0x97b38fff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x97b53000 - 0x97b61fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x97b62000 - 0x97bd6fff  com.apple.CoreSymbolication (2.2 - 73.2) <FA9305CA-FB9B-3646-8C41-FF8DF15AB2C1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x97c12000 - 0x97f14fff  com.apple.CoreServices.CarbonCore (960.20 - 960.20) <E6300673-A013-3A91-BB1A-DD793B857E16> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x97f15000 - 0x9819afe3  com.apple.QuickTime (7.7.1 - 2315) <E6249041-B569-3A96-897F-E84B1C057948> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9819b000 - 0x98217ff0  com.apple.PDFKit (2.6.2 - 2.6.2) <5DC1CC0B-4F92-397F-98E3-5A5A9EB2CC5F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x98218000 - 0x98271fff  com.apple.HIServices (1.11 - ???) <F8B77735-B168-3E21-9B8F-921115B4C19B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x98272000 - 0x988edfe5  com.apple.CoreAUC (6.11.04 - 6.11.04) <B06D52C9-9F59-3EF2-B2BA-11E93C573572> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x988ee000 - 0x98901ffb  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <AE079D11-3A38-3707-A2DF-6BD2FC24B712> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x98988000 - 0x9941bff6  com.apple.AppKit (6.7.3 - 1138.32) <008E7C05-C20C-344A-B51C-4A2441372785> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x99434000 - 0x99439ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x994aa000 - 0x994faff0  libTIFF.dylib (??? - ???) <F532A16A-7761-355C-8B7B-CEF988D8EEFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x995ce000 - 0x995d5ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x995d6000 - 0x995d7ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <BCD277D0-4271-3E96-A4A2-85669DBEE2E2> /usr/lib/system/libunc.dylib
    0x99615000 - 0x996b0ff3  com.apple.ink.framework (1.3.2 - 110) <9F6F37F9-999E-30C5-93D0-E48D4B5E20CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x996b1000 - 0x996bffff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <B50C62AD-0B5B-34C3-A491-ECFD72ED505E> /usr/lib/system/libdispatch.dylib
    0x996c0000 - 0x9974dff7  com.apple.CoreText (220.11.0 - ???) <720EFEE0-A92A-3519-9C88-D06E4DE14EAB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x9975a000 - 0x997fefff  com.apple.QD (3.40 - ???) <3881BEC6-0908-3073-BA44-346356E1CDF9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x9980f000 - 0x9983afff  com.apple.GSS (2.1 - 2.0) <DA24E4F9-F9D4-3CDB-89E4-6EAA7A9F6005> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9983f000 - 0x99841ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x99842000 - 0x9986bffe  com.apple.opencl (1.50.69 - 1.50.69) <44120D48-00A2-3C09-9055-36D309F1E7C9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9986c000 - 0x99964ff7  libFontParser.dylib (??? - ???) <8C069D3D-534F-3EBC-8035-A43E2B3A431A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x99965000 - 0x99a3cffb  com.apple.avfoundation (2.0 - 180.30) <6788562E-A9A8-3898-A0F4-66D9BBAE3430> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x99a3d000 - 0x99a8eff9  com.apple.ScalableUserInterface (1.0 - 1) <C3FA7E40-0213-3ABC-A006-2CB00B6A7EAB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x99b11000 - 0x99b12ff4  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <6DE3FDC7-0BE0-3791-B6F5-C15422A8AFB8> /usr/lib/system/libremovefile.dylib
    0x99b13000 - 0x99d2eff7  com.apple.imageKit (2.1.1 - 1.0) <3A523A4F-BE07-35B1-9A41-523FD27C14D4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x99d2f000 - 0x99d30fff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x99d31000 - 0x9a1a6ff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <312D0F58-B8E7-3F61-8A83-30C95F2EBEAA> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x9a3d3000 - 0x9a3d4fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x9a3d5000 - 0x9a3d5fff  com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9a3d6000 - 0x9a3fcffb  com.apple.quartzfilters (1.7.0 - 1.7.0) <9C8F1F3D-D570-3F5C-9B31-5B5B82161CDE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x9a43f000 - 0x9a44affb  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <17C11291-5B27-3BE2-8614-7A806745EE8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x9aae6000 - 0x9ae29fff  com.apple.MediaToolbox (1.0 - 705.61) <FF915A3D-16F4-3191-A9B2-EF9270104786> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x9ae2a000 - 0x9ae2bff7  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <3F974196-FBAD-3DBD-8ED0-DC16C2B3526B> /usr/lib/system/libquarantine.dylib
    0x9ae2c000 - 0x9ae69ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <4508AABD-EDA8-3BF7-B03A-978D2395C9A8> /usr/lib/libcups.2.dylib
    0x9af3e000 - 0x9b04fff7  libJP2.dylib (??? - ???) <143828CE-D429-3C66-A0DC-4F39536568E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJP2.dylib
    0x9b132000 - 0x9b35bffb  com.apple.QuartzComposer (5.0 - 236.3) <E805537F-7BB8-31C6-A3F3-27D8CD1FE31E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x9b45f000 - 0x9b58bff9  com.apple.CFNetwork (520.3.2 - 520.3.2) <58021CA7-0C91-3395-8278-8BD76E03BDCB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x9b595000 - 0x9b6f7fff  com.apple.QTKit (7.7.1 - 2315) <21C7F00E-FBB9-3F12-AE51-06A630ECAC5E> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9b6f8000 - 0x9b725ff7  com.apple.securityinterface (5.0 - 55007) <E5139C3F-23D2-363D-A4A2-B491E55A5439> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x9b792000 - 0x9b7a2ff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x9b7b2000 - 0x9b7c2fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x9bc11000 - 0x9bc19fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9bc1a000 - 0x9bc48fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <30189C33-6ADD-3142-83F3-6114B1FC152E> /usr/lib/libSystem.B.dylib
    0x9bc49000 - 0x9bc5eff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x9bcac000 - 0x9bce3fef  com.apple.DebugSymbols (2.1 - 87) <EB951B78-31A5-379F-AFA1-B5C9A7BB3D23> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x9bd16000 - 0x9bd7bff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x9bd7c000 - 0x9bd87fff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x9bd88000 - 0x9bd90ff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x9bd91000 - 0x9bd95fff  libGIF.dylib (??? - ???) <06E85451-F51C-31C4-B5A6-180819BD9738> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x9bd96000 - 0x9bd96fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-3529-8881-2BCB5724D1A9> /usr/lib/system/libdnsinfo.dylib
    0x9bd97000 - 0x9bda2ffe  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <4A7FCD28-9C09-3120-980A-BDF6EDFAAC62> /usr/lib/libbz2.1.0.dylib
    0x9bda3000 - 0x9bdaeffc  com.apple.NetAuth (1.0 - 3.0) <C07853C0-AF32-3633-9CEF-2480860C12C5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9bdbd000 - 0x9be19fff  com.apple.coreui (1.2.1 - 165.3) <65526A00-D355-3932-9279-9A7D6BF76D95> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9be44000 - 0x9bf0ffff  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <1B0A12B3-DAFA-31E2-8F82-E98D620E4D72> /usr/lib/system/libsystem_c.dylib
    0x9bf10000 - 0x9bf19ffb  com.apple.DisplayServicesFW (2.5.2 - 317) <02BD6AF3-F355-3F68-9DC2-2DA28CE27682> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x9bf1a000 - 0x9c02afe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <34E1E3CC-7B6A-3B37-8D07-1258D11E16CB> /usr/lib/libsqlite3.dylib
    0x9c2dd000 - 0x9c2ffffe  com.apple.framework.familycontrols (3.0 - 300) <6B0920A5-3971-30EF-AE4C-5361BB7199EB> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x9c300000 - 0x9c300fff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9c301000 - 0x9c301fff  com.apple.quartzframework (1.5 - 1.5) <EF66BF08-620E-3D11-87D4-35D0B0CD1F6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9c344000 - 0x9c394ff9  com.apple.QuickLookFramework (3.1 - 500.10) <E56B33BE-4445-3CC9-AAA5-1C8E6D45FEB0> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9c3ba000 - 0x9c3baff0  com.apple.ApplicationServices (41 - 41) <BED33E1D-C95C-3654-9A3A-0CB3607F9F10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x9c3bb000 - 0x9c436ffb  com.apple.ApplicationServices.ATS (317.5.0 - ???) <7A8B0538-8E2E-3355-81E3-0C0A7EBED28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x9c455000 - 0x9c457ff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
    0x9c458000 - 0x9c51afff  com.apple.CoreServices.OSServices (478.37 - 478.37) <00A48B2A-2D75-3FD0-9805-61BB11710879> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x9c51b000 - 0x9c60bff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x9c695000 - 0x9c8deff7  com.apple.JavaScriptCore (7534.53 - 7534.53.8) <5F799A84-B6B2-398F-B617-285BAA60139F> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9c8df000 - 0x9ca93ff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6AD14A51-AEA8-3732-B07B-DEA37577E13A> /usr/lib/libicucore.A.dylib
    0x9ca94000 - 0x9ca97ffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x9ca98000 - 0x9cac6ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <DA16A8B2-F359-345A-BAF7-8E6A5A0741A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x9cac7000 - 0x9cb5eff3  com.apple.securityfoundation (5.0 - 55107) <DF36D4ED-47F7-3F7F-AB09-32E5BFB7EF05> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x9cb5f000 - 0x9cb66ff5  libsystem_dnssd.dylib (??? - ???) <B3217FA8-A7D6-3C90-ABFC-2E54AEF33547> /usr/lib/system/libsystem_dnssd.dylib
    0x9cb67000 - 0x9cb6bffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9cb6c000 - 0x9cbcdffb  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <E617857C-D870-3E2D-BA13-3732DD1BC15E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9cbce000 - 0x9cbcefff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9cd05000 - 0x9cd1afff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x9cd1b000 - 0x9cd45ff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x9cd46000 - 0x9cd95ffb  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <71C9D388-E607-3DB4-9FD3-FC918EB4A835> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9cd96000 - 0x9cde7ff3  com.apple.CoreMediaIO (210.0 - 3180) <6C9974AD-CA84-3C49-B55E-0496B675DBA1> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 27
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 500
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=214.6M resident=43.5M(20%) swapped_out_or_unallocated=171.1M(80%)
    Writable regions: Total=1.1G written=1.0G(93%) resident=1.1G(93%) swapped_out=8088K(1%) unallocated=78.6M(7%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    ATS (font support)                 31.8M
    CG backing stores                  13.9M
    CG image                              4K
    CG raster data                       64K
    CG shared images                   3376K
    CoreGraphics                          8K
    CoreServices                       1964K
    IOKit                              1216K
    MALLOC                              1.1G
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=249                      156K
    SQLite page cache                   192K
    Stack                              65.6M
    VM_ALLOCATE                        16.2M
    __CI_BITMAP                          80K
    __DATA                             15.1M
    __DATA/__OBJC                       184K
    __IMAGE                             528K
    __IMPORT                              4K
    __LINKEDIT                         43.8M
    __OBJC                             2332K
    __OBJC/__DATA                        40K
    __PAGEZERO                            4K
    __TEXT                            170.7M
    __UNICODE                           544K
    mapped file                       104.7M
    shared memory                       764K
    shared pmap                        6744K
    ===========                      =======
    TOTAL                               1.5G
    Model: Macmini3,1, BootROM MM31.00AD.B00, 2 processors, Intel Core 2 Duo, 2.26 GHz, 2 GB, SMC 1.35f1
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 1 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142323837334548312D4346382020
    Memory Module: BANK 1/DIMM0, 1 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142323837334548312D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x90), Broadcom BCM43xx 1.0 (5.10.131.36.11)
    Bluetooth: Version 4.0.3f12, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: Hitachi HTS543216L9SA02, 160,04 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 2
    USB Device: Hub in Apple Extended USB Keyboard, apple_vendor_id, 0x1002, 0x06400000 / 3
    USB Device: Apple Optical USB Mouse, apple_vendor_id, 0x0306, 0x06420000 / 6
    USB Device: Apple Extended USB Keyboard, apple_vendor_id, 0x0205, 0x06410000 / 5
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2

    hi,
    Thanks for your help.
    I will try the air 3.4 beta version, and i tell you if it solve my problems.
    Also, i m using garbage collection.
    In add, i would specify that the video playing sound (AAC).
    Regards,

  • How do you add totaltime for all test steps in the report

    We are using xml reporting with the horizontal.xsl.  I see the totaltime property in the xml file.  I was able to un-comment some code in the stylesheet to display the module time for pass/fail steps.  I would prefer to see totaltime for every step.
    Alternative is to write some Labview code to extract test step name and associated times from the xml.
    Solved!
    Go to Solution.

    Hello
    If you can able to understand the Horizontal xsl, it is very easy to get show the available fields in the XML in the Report. Through LabVIEW also it is possible to extract the required
    Fields from the XML, you have to design an XML Parser  in the LabVIEW to
    parse the Step Name and it's time
    Attached code (a
    sample) can able to parse the Test Step Names, give the Report XML file
    Path as input, it will parse Step Names.
    What makes me unclear is, how can you use LabVIEW to show the total time?
    AshwiN,
    Attachments:
    Parse Test Results.zip ‏39 KB

  • Problem with VideoDisplay orizzontal reflection

    Hello everyone,
    I write because I have a problem with the item VideoDisplay in Flex.
    A hypothetical
    <mx:VideoDisplay id="videoDisplay" width="400" height="300" />
    how do I reflect it horizontally? So basically the right side should become the left and the right the left.
    I tried to input a negative width but the app crashes.
    Can you help me?
    Thanks

    Hi Eli,
    Many thanks for your help.
    I already have one derivation rule for budget period based in posting_date field. I do not have in field options the field for fm posting date...
    The system should post based in fm posting date. For example, i have one PO with two items, the first item with delivery date (that is the date for fm posting date) have value 01.01.2012 and second item have value 01.02.2012. I have to reflect this in budget for budget period 01.2012 and 02.2012 respectly.
    Can you help me with a suggestion to solve this situation?
    thanks,
    Regards
    Ricardo

  • Spark VideoDisplay - how to set `background` color

    Hello!
    How can I set the background color of the Spark VideoDisplay to be something else than the default black one?
    Thank you.

    There is no button involved in the following code, but it may
    be of use to you:
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()">
    <mx:Script>
    <![CDATA[
    private var origColor:uint;
    private function init():void {
    origColor = dc.getStyle("selectionColor");
    public function setBackGrdColors(newColor:uint):void {
    dc.setStyle("selectionColor", origColor);
    if(dc.selectedDate){
    var dayOfWeek:Number = dc.selectedDate.day;
    else{
    return;
    switch(dayOfWeek) {
    case 0:
    if(sun.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 1:
    if(mon.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 2:
    if(tue.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 3:
    if(wed.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 4:
    if(thu.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 5:
    if(fri.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 6:
    if(sat.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    default:
    break;
    ]]>
    </mx:Script>
    <mx:VBox horizontalAlign="center" verticalGap="20">
    <mx:DateChooser id="dc" textAlign="left"
    change="setBackGrdColors(cellColor.selectedColor)"/>
    <mx:HBox width="100%" horizontalAlign="center">
    <mx:CheckBox id="sun" label="Sun"/>
    <mx:CheckBox id="mon" label="Mon"/>
    <mx:CheckBox id="tue" label="Tue"/>
    <mx:CheckBox id="wed" label="Wed"/>
    </mx:HBox>
    <mx:HBox width="100%" horizontalAlign="center">
    <mx:CheckBox id="thu" label="Thu"/>
    <mx:CheckBox id="fri" label="Fri"/>
    <mx:CheckBox id="sat" label="Sat"/>
    </mx:HBox>
    <mx:HBox width="300" horizontalAlign="center">
    <mx:Label text="Background Color" />
    <mx:ColorPicker id="cellColor"
    selectedColor="#FF00FF"/>
    </mx:HBox>
    </mx:VBox>
    </mx:Application>

  • The problem in using of (mx) VideoDisplay.attachCamera(camera) in flex webapp

    i have encountered a problem last night. my code looks like the following:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx"
                   minWidth="955" minHeight="600">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                private function onCreateComplete():void
                    var camera:Camera = Camera.getCamera();
                    if(camera)
                         vid.attachCamera(camera);
            ]]>
        </fx:Script>
        <mx:VideoDisplay id="vid" width="300" height="300"
                         verticalCenter="0" horizontalCenter="0"
                         creationComplete="onCreateComplete()"/>
    </s:Application>
    when i run the code above in my firefox, the videodisplay component showed in the browser,
    but the video captured by my camera didn't show in the videodisplay.
    if i change the <s:application> to <s:windowedapplication>, and run as a desktop app, everything is OK.
    then what is the problem of not showing the video captured by my camera in flex webapp?
    BTW, my flashbuidler's flex SDK is 4.5.

    Please post your query on flex forum as it does not look like FMS issue : http://forums.adobe.com/community/flex/flex_general_discussion?view=discussions

  • VideoDisplay goes black screen (audio only)

    Is there a work around or update that will help me with this
    problem my VideoDisplay goes black screen (audio only) on flash
    player 9,0,115,0 on windows only IE and Firefox. no matter what i
    do i cannot figure out why after searching the web i found mutliple
    blogs about the topic but no one has figure out a resolution or
    workaround to this bug.
    Recreate the issue publish .flv play progressive video in
    videoDisplay component in flex app on windows with the above flash
    player and refresh wait a second to see if its going to play and
    sometimes it only plays audio.
    sample link:
    view
    on windows with player 9,0,115,0

    I found the codec at this link: http://www.matrox.com/video/support/ds/software/codec/messages/thanks.cfm. (You may have to register to see the page.)
    So I ran the file and nuttin. I can't even see where it's on my machine. Or what changed afterwards. No change in QT's response, except that now it's a white screen instead of a black one!

Maybe you are looking for

  • Aperture2.0 and iweb08 - problems with size of photos

    Just got a new Imac and Aperture2 and I have my first problem. Hopefully I can explain this without sounding confusing. I have 10 photos in album "A" in Aperture. The photos are 'web ready' .jpg at 500 pixels by 500 pixels and 72 dpi. When i make an

  • Programs not running in leopard

    my adobe creative suite and office:mac v.X are not running after installation of leopard, which i bought to use with my 16gb iphone. suggestions?

  • Photoshop CC randomly crashing!

    So CC has been crashing at a lot recently after being stable for ages.  The first few times it was when using the liquify filter - Faulting application name: Photoshop.exe, version: 15.2.0.236, time stamp: 0x542531ba Faulting module name: Liquify.8bf

  • Panasonic DVX-100 audio sync tool not showing up in the tools menu

    Using FCP 7 in new Mac Pro with a clean install. I following the directions for copying the DVX-100 audio sync file into the proper folder /Library/Application Support/Final Cut Pro System Support/Plugins/ The directions say the Offset Audio Sync com

  • How do I load and save to my iMac a dvd purchased elsewhere?

    how do I load and save to my iMac a dvd purchased elsewhere?  Thank you.