Reset Flash After Video
Hello:
I have animation in Scene1 and I have button that launches the user to a video in Scene 2. In Scene2 I have the following actionscript to play the video:
var nc:NetConnection = new NetConnection();
nc.connect (null);
var ns:NetStream = new NetStream(nc);
theVideo.attachVideo (ns);
ns.play("homepage.f4v");
The video plays fine, but how do I get the Flash to reset back to Scene1, Frame 1 when it's finished?
Any thoughts?
Thanks!
-Q