Hi,
I have the following code:
videoPlayer.addEventListener(VideoEvent.SCRUB_FINISH, scrubFinish);
function scrubFinish(e:VideoEvent) {
var vp = e.target;
//trace(vp.findNearestCuePoint(vp.playheadTime).name);
trace(vp.findNearestCuePoint(vp.playheadTime));
trace(vp.name);
trace (vp.playheadTime);
}
which traces:
null
videoPlayer
1.672
Is this saying that it can’t find any cuePoints, or the FLVPlayback component??