How to change the URL when you click on the Banner?
There are two ways to change the URL where the Banner points to.
First you can define the URL in the html code by adding this:banner.swf?ClickTag=<a href="http://www.YOUR- DOMAIN.com">http://www.YOUR-DOMAIN.com</a>But you can also change from dynamic to a static URL by changing this code on the Button (Layer called “btn”) in your Flash File:
on(release){
getURL(_root.clickTag, "_blank");
}
to this code
on(release){
getURL("http://www.YOUR-DOMAIN.com", "_blank");
} 

449 Purchases
44 Comments