Flash click counting — the clickTag method
When creating flash banners it is necessary that the banner's destination (click-through) url is not physically hard coded into the SWF file, otherwise click counting will not be possible. Instead, the "clickTag" variable should be used. The value of this variable can then be handed over to the flash banner by the ad server.
Advantages
- Both sides can count clicks via the ad server
- It isn't necessary to return the Flash file to the designer if the destination url needs to be changed
- The destination url can easily be checked
- There's no need for the Flash designer to know the destination url
To implement the clickTag click counting method in your flash creative, simply insert a new top-layer button in the clickable area and add the following action:
on (release) {
getURL (clickTag, "_blank");
}
It should look something like the below :-
Ensure that :
- The URL box is set as an expression
- clickTag is lower case, except for the 'T' which must be upper case
- The target window is set appropriately

