|
| I've "played" w/ Flash (5) for a long time now. But never as this complex;
it'll likely be easy for some advanced users.
I have a scene that fades in and stops. Furthermore I have a few frames
after that point that fades the scene out.
I have drop down menu in it, as well as the other scenes.
I want to be able to click on a button, FADE OUT the active scene, then go
to the scene the button links to.
As of now I can only get the buttons to JUMP to the linked scene and FADE
IN.
Here's the only action I have applied:
on (release) {
_root.gotoAndPlay("BandEnter");
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
"BandEnter" is the frame label that starts the FADE IN to it's scene.
Depending on what scene I'm in I have other labels like "IntroExit" (this
frame label starts the FADE OUT of the Intro Scene.
If I'm in the Intro Scene and I click the Band Button, I want it to --
GoToAndPlay ("IntroExit") THEN -- GoToAndPlay ("BandEnter")
FURTHERMORE:
Using the same MENU in the Band Scene, it will have to do the opposite.
Any help is appreciated.
|
|