AdWords - neschválené bannery
Dobrý den,
nalezl bych zde někoho, kdo má zkušenosti se službou AdWords a nahráváním flash bannerů? Klient, pro kterého jsem dělal několik flash bannerů se na mě obrátil s připomínkou, že google jeho bannery zamítl z níže uvedeného důvodu, z čehož jsem pochopil, že bannery nesmí obsahovat klikací elementy, což ty moje neobsahují. Bannery ještě nemůžu zveřejnit zde veřejně, a tak bych je někomu, kdo se orientuje v situaci zaslal např. na mail. Děkuji.
"
Google doesn't allow Flash ads that don't support the clickTAG variable. The clickTAG is the tracking code assigned by Google to an individual ad. It allows Google to register where the ad was displayed when it was clicked and helps advertisers determine the effectiveness of their campaign.
On any click, Flash ads should redirect to the URL specified in the clickTAG argument; there should be no other redirection in between.
The variable name must be spelled "clickTAG" (upper-case TAG; no space between click and TAG) and not "click tag," "Click Tag," or any other form.
ClickTAG parameter code for ActionScript 2:
on (release)
{
if (clickTAG.substr(0, 5) == "http:" || clickTAG.substr(0, 6) == "https:")
{
getURL(clickTAG, "_blank");
}
}
ClickTAG parameter code for ActionScript 3:
import flash.events.MouseEvent;
import flash.net.URLRequest;
// ......
someButton_or_displayObject_to_receive_mouseClick. addEventListener(
MouseEvent.CLICK,
function(event: MouseEvent) : void {
flash.net.navigateToURL(new URLRequest( root.loaderInfo.parameters.clickTAG), "_blank");
}
);
In the ActionScript 3 example, replace someButton_or_displayObject_to_receive_mouseClick with the actual name of the button that will receive the click.
ClickTAG parameter code to check for the https: prefix:
on (release)
{
if (clickTAG.substr(0, 5) == "http:" || clickTAG.substr(0, 6) == "https:")
{
getURL(clickTAG, "_blank");
}
}
Note that it's not necessary to specify the landing page URL for the ad anywhere in this code; this is taken care of through the usage of clickTAG. Also, depending on the structure of your Flash ad, it may be necessary to prepend "_root." or "_level0." to "clickTAG" above, resulting in "_root.clickTAG" or "_level0.clickTAG". It is strongly recommended to upload the ad into your account and verify that the ad is behaving normally prior to it going live, allowing time for any necessary changes."