binacaboy
10-27-2008, 10:12 PM
I currently have 2 movie clips in scene 2 (scene 1 is my intro movie clip/preloader).
The first movie clip "bg_mc" is a background clip that displays a sideshow of several pictures that cycle through for eternity.
The second is a movie clip "gray_mc" with two buttons on it.
I want the buttons to stop the bg_mc movie clip from playing, and then fade into another picture for scene 3. Currently my actions on the buttons are as follows:
on (release) {
_root.bg_mc.stop();
_root.gotoAndPlay("S3F1");
}
This stops the background and moves the timeline to S3F1 or "scene 3 frame 1"
My question is how can I get the stopped frame from bg_mc to display in a layer in scene 3? Because i want to fade from this stopped frame to a new picture all together, like a sideshow transition. I basically just need to copy this stopped frame into either a movie clip or into scene 3 so it won't just disappear into white. Is there any way i can copy the current frame of that movie clip after it is stopped by pressing the button?
Thanks in advance
I'm using Actionscript 2.0 btw.
The first movie clip "bg_mc" is a background clip that displays a sideshow of several pictures that cycle through for eternity.
The second is a movie clip "gray_mc" with two buttons on it.
I want the buttons to stop the bg_mc movie clip from playing, and then fade into another picture for scene 3. Currently my actions on the buttons are as follows:
on (release) {
_root.bg_mc.stop();
_root.gotoAndPlay("S3F1");
}
This stops the background and moves the timeline to S3F1 or "scene 3 frame 1"
My question is how can I get the stopped frame from bg_mc to display in a layer in scene 3? Because i want to fade from this stopped frame to a new picture all together, like a sideshow transition. I basically just need to copy this stopped frame into either a movie clip or into scene 3 so it won't just disappear into white. Is there any way i can copy the current frame of that movie clip after it is stopped by pressing the button?
Thanks in advance
I'm using Actionscript 2.0 btw.