Make a button work in Actionscript3
This code will enable a button to work using ActionScript 3.Just create an button and remember to give it an instance name, in this example we have called it "button"Of course just change the instance name "button" to whatever you like.
If you click on the button it will navigate you to a webpage, if you mouse_out it will goto a frame in your flash movie.
If you click on the button it will navigate you to a webpage, if you mouse_out it will goto a frame in your flash movie.
With URL Navigation change the window option has required
"_self" means opens in the same window
"_blank" means opens in an new window
"_top" means if the link is in an "iframe", the window will open in the top page
"_parent" means if the link is on a popup window, the window will open in the page that created it.
In the frame section you could have gotoAndPlay(1);