Heyall-
please bear with me! this is what i’m hoping to accomplish entirely in AS:
on button rollover, the button and title of the page fade in
on button rollout, they both fade out
on button release the MC fades in
on new button release, the last MC fades out
so far (much thanks to the tutorials c/o kirupa) i have the following code for button so that on the rollover state, the title loads in a text field:
[AS]
on (rollover) {
_root.x + 1;
_root.caption.words = “shows”;
}
on (rollout) {
_root.x = 0
_root.caption.words = " ";
}
on (release) {
gotoAndStop(“shows”){
[/AS]
My main issue is how and where to nest the rest of the actions into what i have so far.
Thanks in advance -