Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Animated Menu Transitions

Status
Not open for further replies.

bhaydon

Technical User
Nov 5, 2002
82
US
How do you make transitional menus along with the current movie like on . I would like it if when a button is clicked, the entire menu and screen changes and loads another screen, very similar to this site. Thank you for all your help
 
You can do this by making use of variables.

On each button, you would do something like this:

Code:
on (release) {
	selection = "about";
	gotoAndPlay("transition");
}

Then on the main timeline you would have your transition begin at the frame labelled "transition". At the end of the transition you would have a frame action like:

Code:
gotoAndPlay(selection);

So that would take you to whatever you labelled as "about".

I hope that's clear.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top