Configuring Flash banners with clickTag
In order for your banners to click through, please set up click tag in Flash as follows:
- Create a new layer above all of the other layers.

- Select the first keyframe in the new layer.

- Using the Rectangle Tool, draw a rectangle that encompasses the entire area of the ad.

- Using the Selection Tool, double-click on the rectangle, then right-click and select Convert to Symbol.

- Name the symbol "button" and choose the Button behavior.

- Create an instance of the button on the main timeline and name it "buttonClip" in the properties palette. ie replace "
" with "buttonClip"

- Select your button and locate the actions panel. If this is not open, select Window > Actions.

- Type into the ActionScript field:
Actionscript 2:
buttonClip.onRelease = function(Void):Void {
getURL(clickTag, "_blank");
}
Actionscript 3:
buttonClip.addEventListener(MouseEvent.CLICK, onMouseClick);
function onMouseClick(event:MouseEvent):void {
navigateToURL(new URLRequest(clickTag), “_blank”);
}

Please note: There are multiple versions of clickTag casing; clickTag, clicktag, or clickTAG. We recommend trying "clickTag" first.

