Click-thru URL INSTRUCTIONS for
FLASH ADVERTISEMENTS
• Create a new layer on top of all others, call this layer "clickthru"
• In this new layer, create a rectangle that covers the entire ad.
• Convert the rectangle to a BUTTON symbol, call it "clickthru".
• Change its Alpha opacity to 0% (so it is transparent)
• With the button symbol selected, open the Actions panel and paste the following script:
on (release) {
getURL(clickTAG, "_blank");
}
• Export the .swf
For multiple URL’s, use this script instead:
on (release) {
getURL(clickTag add "http://www.whatever.com", "_blank");
}