-
Create a button or
movie clip button
- For more
information on creating a button in Flash, see
Create a button.
-
Add a script to
the button
- Executes when
a user clicks the banner. You might use the
getURL()
function to open a new browser window.
Make sure url is NOT IN QUOTES.
Note: This script must
be placed in an Action layer.
myButton_btn.onRelease = function(){
getURL(url, "_blank");
};