Groups | Blog | Home
all groups > flash actionscript > june 2005 >

flash actionscript : Webpage buttons


lilrockrboy
6/29/2005 10:57:34 PM
NSurveyor
6/29/2005 11:12:44 PM
Click on your button. Then open the Actions Panel (Window > Actions F9). Paste
in the following code:

on(release){
getURL("http://www.google.com/","_blank");
}

If you want it to open in the current window, you would use:

on(release){
getURL("http://www.google.com/","_self");
}
lilrockrboy
6/29/2005 11:16:26 PM
NSurveyor
6/29/2005 11:29:32 PM
AddThis Social Bookmark Button