Ok - I have the code to make a flash movie go to another part of the timeline once an flv is done playing - but it doesn’t work. Here’s the code:
var myListener = new Object();
myListener.complete = function(eventObject) {
this.gotoAndStop(30);
};
my_video.addEventListener(“complete”, myListener);
(yes I’ve made sure my video display has an instance name of my_video)
I’ve tried using _root.gotoAndStop(30); as well.
Anybody have any experience with this?? Please help!!
thx. -R