|
-
stuck!! frame labels and btns!
ok so i read n tried for days on how to make btns go and play certain frames, but its not workin for me, i tried everything their is as far as i kno, i dont know what im doin wrong. this is the link to download the .FLA work that im doing, all the animation is not done yet because i want to get this headache out of the way before doin the whole thing n get more confuse. RIght now i want to see if the transition works because thats going to be at the beginning of every page opening.
http://www.megaupload.com/?d=OQ5FAVGA
I will appreciated it if any1 can help me figure this out. Its nothing fancy i just want to figure this stuff out... Thank You in advance.
THANK YOU THANK YOU THANK YOU
RICARDO P.
-
you need to add event listenders for each button and create correspondant functions for them, it would be easier for you to read about a bit of the basics of actionscript 3.
here is an example for a button with an instance name of 'home_btn' which would bring you to a frame labeled 'home':
home_btn.addEventListener(MouseEvent.CLICK, goHome);
function goHome(e:MouseEvent):void {
gotoAndStop("home");
}
Hope this will give you an idea of the process
-
thx ALOT!!
I will definitely read more about the basics of AS 3.0
Thank you for your time, really appreciated, cant wait to get home to try it!
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|