-
Video CuePoints Action
Hello everyone
Does anyone know how I can make a movie clip play with actions on the cue points.
At the moment i can make it gotoNextFrame but i want it to gotoAndPlay nextFrame.
This is my code:
var vidList:Object = new Object();
vidList.cuePoint = function(cues) {
_root.donatetext_mc.vidwithnav_mc.count_mc.nextFra me();
}
vid.addEventListener("cuePoint", vidList);
I want the count_mc to gotoAndPlay(nextFrame); not to gotoAndStop(nextFrame); if i put gotoAndPlay it doesnt work.
Any ideas.
-
If you want it to play starting from the next frame, you use the play() action.
Code:
_root.donatetext_mc.vidwithnav_mc.count_mc.play();