Flash CS# ActionScript_Button?

Hello

Im going to do a web page in Flash CS3, and dont really understad the new ActionScript. So I just wonder if someone could say some code like, on relese gotoandstop.? Or link me to some good tutorials for this? Havent find any for this.

//Thanks

google knows. There’s even tutorials on this page.

Don’t be afraid to look before you ask :wink:

Yep… Search for ActionScript 3.0 tutorials and you’ll get wht you need. I suggest you read a book about if you wanna learn the whole thing though

Simple AS3 button code:


button_btn.addEventListener(MouseEvent.CLICK, clickButton);

function clickButton(event:MouseEvent):void
{
   gotoAndPlay(2);
}

I hope that helps.

Of course, if you understand the “old” actionscript, you can still use that.

[quote=idontknow07;2352770]Simple AS3 button code:


button_btn.addEventListener(MouseEvent.CLICK, clickButton);

function clickButton(event:MouseEvent):void
{
   gotoAndPlay(2);
}

I hope that helps.[/quote]

This was what i was lokking for, thank you, and Of course did I googel for it alot before I asked, dident find this code, thanks :wink: