<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"; >     
        <mx:Script>
                <![CDATA[
            import mx.events.CuePointEvent;                     
            private function cpHandler(event:CuePointEvent):void 
            {
                    cp.text="go to cuepoint: " + event.cuePointName + " " +
String(event.cuePointTime);
            }
                ]]>
        </mx:Script>

    <mx:VBox>
        <mx:VideoDisplay id="myVid"
source="http://fpuchrissimeone:8102/media/video/bankruptcy/BK1_SS.flv";
                                                 
cuePointManagerClass="mx.controls.videoClasses.CuePointManager"
                                                 cuePoint="cpHandler(event);">
                        <mx:cuePoints>
                            <mx:Array id="myCuePoints">
                            <mx:Object name="first" time="2"/>
                                <mx:Object name="second" time="5"/>
                                <mx:Object name="THIRD" time="10"/>
                            </mx:Array>            
                        </mx:cuePoints>
        </mx:VideoDisplay>
        <mx:TextArea id="cp" width="320" />
                <mx:HBox  width="320" horizontalAlign="center">                 
                                
            <mx:Button label="Pause" click="myVid.pause();"/>
            <mx:Button label="Play" click="myVid.play();"/>
                </mx:HBox>
    </mx:VBox>
</mx:Application>







------------------------ Yahoo! Groups Sponsor --------------------~--> 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to