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?

link|improve this question

I just tried my own suggestion of saving the cuePoint information from the onMetaData event. This worked. I found the array of cuePoints in event.info.cuePoints in an array. The array is a map with "parameters" as one of the properties. So I can achieve what I want to do. I still am not sure I fully grok all the cuePoint vs XMPData and all the other intricacies of this functionality. But I am unblocked for now. Thanks in advance for any additional guidance. – Rich Sadowsky Jul 5 '11 at 22:23
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.