display
<mx:VideoDisplay id="myVD" source="../assets/clips/blip/rgbxyz.flv" metadataReceived="addMetaCuePoints()"
cuePointManagerClass="mx.controls.videoClasses.CuePointManager" cuePoint="gotCue(event)">
<mx:cuePoints> <!-- MXML cuePoints -->
<mx:Array>
<mx:Object name="compileTimeCue0" time="1.00"/>
<mx:Object name="compileTimeCue1" time="2.45"/>
</mx:Array>
</mx:cuePoints>
</mx:VideoDisplay>
<mx:HBox>
<mx:Label text="playHeadTime : {myVD.playheadTime}"/>
</mx:HBox>
<mx:HBox >
<mx:Button label="Play" click="myVD.play()"/>
<mx:Button label="Pause" click="myVD.pause()"/>
<mx:Button label="Stop" click="myVD.stop()"/>
<mx:Button label="Jump to next Cue" click="nextCue()"/>
</mx:HBox>
<mx:TextArea id="ta" width="300" height="300"/>
</mx:Application>