PDA

View Full Version : Back Buttons script and another general question


nanhole
12-12-2005, 01:51 PM
I am using flash 2004 edition, and I'm making an ePortfolio. I have my main page set up, and have 3 buttons to which I have them ready to go into another page of info. The only problem is I can't figure out how to get them to do anything because I'm not sure how to make those pages (the three buttons.) So I guess what I'm curious about is, what do I do to create these other pages, and what would the script be. And also, when I make the pages, what would the scripting be for making a back button so I can go to the main screen?

amen0
12-12-2005, 02:06 PM
u can make 2 layer
one for the buttons
and the second for the pages where you put 3 frames on each frame
there is a page of yours and to jump from one to another via button
create 3 button page1_btn,page2_btn,page3_btn
ex
and a layer for the actions
page2_btn.onRelease=function(){
gotoAndStop(2);
}
ect...