Hi all,
Currently I am able to trace the name of my F4V cue points, However I cannot access the parameters and their values. Can anyone help? The flash cue points come from After effects where multiple parameters are being embedded such as position, rotation and opacity.
Its been difficult to gain any insight from the documentation so if anyone can help I'd be grateful,
Thanks.
(p.s. AS3 beginner)
videoOne.addEventListener(VideoLoader.VIDEO_CUE_POINT, cuePointHandler);
function cuePointHandler(event:LoaderEvent):void {
trace("FACE" + event.data.name); // works - this returns the time of the frame, great.
trace("FACE" + event.data.info.parameters); // This and all my other attempts have failed miserably.
// With normal flash MetaDataEvent this code would do the trick >> event.info.parameters;
// How can this info be targetted with the Greensock VideoLoader??
}