-
1. Re: How to code a settings page?
kglad Nov 21, 2014 9:27 AM (in response to How to code settings page)use movieclip buttons so you can control which frame is shown.
-
2. Re: How to code a settings page?
How to code settings page Nov 22, 2014 12:57 PM (in response to kglad)It wont work as the frame I want the settings button to link to on the settings page changes. This is because when the music, for example, is turned off it goes to frame two on that settings page, but if I link the settings button to frame two of the settings page when the music is turned on it will link to frame two of that page, where it is turned off.
-
3. Re: How to code a settings page?
kglad Nov 22, 2014 1:59 PM (in response to How to code settings page)"...the frame I want the settings button to link to on the settings page changes"
the answer is still to use a movieclip instead of a button.
-
4. Re: How to code a settings page?
How to code settings page Nov 22, 2014 4:33 PM (in response to kglad)I still can't get it to work if I change the settings button to a movie clip button. When I change the sound effects for example to off:
I want the settings page to stay like that. But when I press the close button at the top and then re open the settings page it goes back to this:
This is the code I have on the settings button:
on(release){
_root.gotoAndPlay("Settings");
}
The "Settings" is the label I have used for the settings page.
-
5. Re: How to code a settings page?
kglad Nov 23, 2014 9:24 AM (in response to How to code settings page)direct that the sound effects movieclip to the off frame. that's the point of changing to a movieclip: it's easy to control which frame displays.
yoursoundeffectsbutton.gotoAndStop("off");




