Question
load movie and go to the specific cue point?
How can I load movie(1.swf) into the current file and make it go play the specific cue point (of the child's file)? Can someone please correct my code below?
on (release) {
loadMovieNum("1.swf",0);
// Seek to Cue Name Behavior
var c = vid.findCuePoint("second_start");
this.seekSeconds(c.time);
// End Seek to Cue Name Behavior
}