PDA

View Full Version : Scene>MovieClip>Buttons


Evenge
11-28-2005, 10:56 PM
Hello Again,
Im having a hard time trying to link my buttons to a new Scene...

I have Created 9 scenes
5 of thoes scenes has a movie clip, (drop down menu). and inside that movie Clip are buttons.
I would like to link thoes buttons to a new scene..

I have tried these scripts:

On (release) {_root.gotoAndStop ("sc1")}

on (release) {_level0.gotoAndStop ("sc1")}

On (release) {tellTarget(_root) {gotoAndPlay("Scene2",1);} }
-this one always takes me to the first scene-

On (release) {_root.Scene2.gotoAndStop("sc1")

On (release) {//with(_root){_root.gotoAndStop("sc1"); // } }

Help!

W/out a Clue-
Evenge-

Scottae
11-28-2005, 11:22 PM
There is a difference between gotoAndStop (http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00001733.html) function and the MovieClip.gotoAndStop (http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00002471.html) method.

Evenge
11-29-2005, 12:55 AM
Hi Scottae,
Hmmm.... Ahhhhhh!
Thanks for the links..
I got it to work...
-Evenge.