I have to say using cue points with Flex components sure wasn't easy to discover! With much searching I determined how to get cuePoint events in my mx:VideoDisplay component. But the CuePointEvent does not contain the "parameters" field I used when I created the cue point. I'm somewhat confused about the difference between cue points and XMPData, but somewhere I saw to "use XMPData with FP 9 and AIR...". As far as I can tell, there is no onXMPData property to mx:VideoDisplay so I am continuing moving forward with cue Points.
What I really want is to access the "parameters" properties I used when I set the cue point. The cue point was set with the wonderful flvtool2 utility.
Here's some sample XML:
<tags>
<metatag event="onCuePoint" overwrite="true">
<name>PetFood</name>
<timestamp>1000</timestamp>
<parameters>
<order>1</order>
<code>PetFood</code>
<id>18</id>
<duration>30.96</duration>
<title>Pet Food Commercial</title>
</parameters>
<type>event</type>
</metatag>
</tags>
My onCuePoint call looks like this:
private function onCuePoint(cuePoint:mx.events.CuePointEvent) : void {
var cueString:String = cuePointToString(cuePoint);
//do something with the data
}
It's getting called and I see the cuePoint name as defined above, just not the parameters.
I do see the parameters properties when I get the initial onMetadata event. So I could keep a an array of that info and look up the parameters when the cuePoint comes in since I created some redundancy between the title and the parameter. But I guess I'm struggling to understand why the "event" type of cue point is not including the parameters in the CuePointEvent object?