I have embedded navigation cue point in my FLV from Premiere. When I set the source property in the components inspector all cuePoint are shown. I added an event listener to FLVPlayback component to listen for the metadata.
When the event responder function runs I am returned undefined. Nor can I use the built in fastforward and rewind button of the FLVPlayback component to navigate through the cue point.
Does any one know how to access the cue point?
Code:vidPlayer.addEventListener(MetadataEvent.METADATA_RECEIVED , metaDataReceived); function metaDataReceived(e:MetadataEvent):void { trace(vidPlayer.metadata.cuePoints); }


Reply With Quote