Hey,

I'm currently grappling with your cuepoint system, trying to dynamically add a cuepoint every 60 seconds for the duration of the video. Looking through your api I found this code on thishttp://flowplayer.org/documentation/api/clip.html

// call cuepoint function on first and last second
$f().onCuepoint(
[1000, {time:-1000, custom:'Hello, world!'}],
function(clip, cuepoint) {
alert("cuepoint " + cuepoint + " reached");
}
);

Which seems to do nothing in either flowplayer 3.1.4 or 3.1.5, why is this? I'm also getting this error in my console:

Error calling method on NPObject! [plugin exception: Error in Actionscript. Use a try/catch block to find error.].

Which seems to be a problem with your actionscript..