|
-
[CS3] linking from a button in a movie clip to new scene
So I have a rollover menu that comes out from the side. and within numerous movie clips are various button menus I want to link to a new scenes.
For instance, I want the "aldo" button to both drop open the list and link to the scene at the same time if possible, or at least just have one link to the new scene, when I tell the button to link to the scene, nothing happens. I'm pretty lost on how to do this.
this is what i have, but it doesn't work
on (release) {
gotoAndStop("client_aldo", "titlepage");
}
Here is the attached flash file if anybody wants to take a look and help me out with the correct coding.
http://clients.kraftworksltd.com/kra...ationShell.fla
thanks in advance.
bryan
-
-
Sorry to awaken an old thread but I had the same problem and I am interested in how you solved the issue of linking inside a movie clip to another scene.
-
Movie Clip(MC) to Scene
_root.gotoAndPlay("label");
If you want to go to others scene without being the first one just make a label in the scene you want to go and past it to part of the code that say "label"
Scene to MC
The Movie clip must be in the TimeLine
mcname.gotoAndPlay("label");
PS: "mcname" is the Movie Clip instance name
MC 1 to MC 2
This is if you want to go from a MovieClip to other Movie Clip that is on the same scene. Put this code on the Movie clip 1 and put in "mcname" the MovieClip 2 instance name
_root.mcname.gotoAndPlay("label");
PS: "mcname" is the Movie Clip 2 instance name
My best regards
Last edited by Yue Sasuke; 05-10-2008 at 06:09 AM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|