I have two frames.
“video1” MediaDisplay in frame 1
“video2” MediaDisplay in frame 2
I also have “Next” and “Previous” buttons
In frame 1 on the “Next” Button is the code:
on (release) {
nextFrame();
video1.stop();
}
In frame 2 on the “Previous” Button is the code:
on (release) {
prevFrame();
video1.play();
}
The stop works fine when going to frame 2, but when I go back to frame one the video is blank. I tried “video1.pause()”, “video1.play(1);”.
Is there something I need to add?
Even if I take out the “video1.stop()” and have the “video1” continue to play when I’m in frame 2, when I hit “Previous” with no code on it, it comes up blank???
Any ideas?
Thanks