I have an external swf containing video and graphics that I have imported into a movie timeline using:
var request:URLRequest = new URLRequest("videoWithTimer.swf");
var loader:Loader = new Loader()
loader.load(request);
addChild(loader);
I want the viewer to watch the whole swf before a button appears that allows them to move on to the next frame.
I’m using a freezetimeline script
freezeTimeline(392000);
before a button appears when the swf has finished playing and which moves the playhead to the next frame but the loaded swf’s final frame remains visible on top for the rest of the movie.
I’m sure there must be a cleaner way of doing this. Can anyone out there help?