I created a button. In the Up-Over-Down-Hit area, I created 2 more layers with
a keyframe in Over so the button changes color and makes a sound upon
mouseover. Now I want it to go to another webpage when clicked. I'm using
Actionscript 3 and I can't seem to figure out this simple task.
sneedbreedley - 19 Jul 2008 14:36 GMT
Shirley someone out there must know the answer.
Shan-Dysigns - 19 Jul 2008 22:31 GMT
Just use action script 2 and place code on the button:
on(press) {
getURL("http://www.adobe.com", "_blank");
}
or frame action
btnInstanceName.onPress=function() {
getURL("http://www.adobe.com", "_blank");
}