This content has been marked as final.
Show 4 replies
-
1. Re: button to scene
Damon Edwards Aug 11, 2006 12:34 PM (in response to Damon Edwards)i know this is probably easy, but i just added a new button to a template, and i need it to link to a new scene im adding...how do i do that??? please help!! thanks everyone -
2. Re: button to scene
Damon Edwards Aug 11, 2006 12:53 PM (in response to Damon Edwards)okay, i figured out how to do that....but how do i make it go to a new scene, its scripted to go to "g"...how do i make my new scene "g" so it will go to it??? -
3. Re: button to scene
universal_binary Aug 18, 2010 6:29 PM (in response to Damon Edwards)code it to go to something other than "g". "g" is used by other codes. Code it to link to some name that is slurred together with no spaces like "myscenethaticantthinkofanamefor" or just "mynewestscene". So you have a code in you button like:
on(release){
gotoAndStop(frame number);
}
if that doesn't work you could try:
on(release){
gotoAndPlay(frame number);
}
Let me know if this works.
-
4. Re: button to scene
kglad Aug 19, 2010 6:50 AM (in response to Damon Edwards)don't use scene names for navigation and don't use the goto functions. use frame labels or frame numbers and the goto methods:
_root.gotoAndPlay("scene33_frame1");



