ClickTAG
To assign a click TAG for your advertisement :
The clickTAG is the tracking code assigned by the ad serving network to an individual ad The click TAG allows the network to register where the ad was displayed when it was clicked on. This click through data is reported to the ad serving servers so advertisers may determine the effectiveness of their campaign.
The code below will allow ad serving networks to dynamically assign a click TAG to their ad.
In this example, a getURL action is being assigned to a button that will navigate the browser to ["clickTAG"]. The "getURL(clickTAG)" statement appends the variable data passed in via the OBJECT EMBED tag and navigates the browser to that location. It is the tracking code assigned by the ad serving network that allows the registration of a user's click on that advertisement.
on (release)
{ if (clickTAG.substr(0,5) == "http:")
{
getURL(clickTAG);
}
}
|