Copy link to clipboard
Copied
I've made an HTML5 billboard-ad in Adobe Animate with serveral urls in the timeline, but the paper is having problems validating the code in Google Ad Manager. Here's the error message:
"Missing click tag. Add a valid click tag or exit function before uploading to Ad Manager".
Here's my code produced by latest version of Adobe Animate at present time:
------------------
<!DOCTYPE html>
<!--
NOTES:
1. All tokens are represented by '$' sign in the template.
2. You can write your code only wherever mentioned.
3. All occurrences of existing tokens will be replaced by their appropriate values.
4. Blank lines will be removed automatically.
5. Remove unnecessary comments before creating your template.
-->
<html>
<head>
<meta charset="UTF-8">
<meta name="authoring-tool" content="Adobe_Animate_CC">
<!-- I tried replacing the previous original line with this after reading a comment in this forum
meta name="ad.size" content="width=1272,height=300"-->
<title>LofotFishing_20digital_20kampanje_20-_201272x300px_20desktop</title>
<!-- write your code here -->
<script src="https://code.createjs.com/1.0.0/createjs.min.js"></script>
<script src="LofotFishing_20digital_20kampanje_20-_201272x300px_20desktop.js"></script>
<script>
// Global Scripts
var _this = this;
/*
Clicking on the specified symbol instance executes a function.
*/
_this.ClickTag.on('click', function(){
/*
Loads the URL in a new browser window.
*/
window.open('https://pronav.no/produktkategori/sikkerhet/', '_blank');
});</script>
<script>
var canvas, stage, exportRoot, anim_container, dom_overlay_container, fnStartAnimation;
function init() {
canvas = document.getElementById("canvas");
anim_container = document.getElementById("animation_container");
dom_overlay_container = document.getElementById("dom_overlay_container");
var comp=AdobeAn.getComposition("75748A2C254CB74CA4D23A5347072363");
var lib=comp.getLibrary();
var loader = new createjs.LoadQueue(false);
loader.addEventListener("fileload", function(evt){handleFileLoad(evt,comp)});
loader.addEventListener("complete", function(evt){handleComplete(evt,comp)});
var lib=comp.getLibrary();
loader.loadManifest(lib.properties.manifest);
}
function handleFileLoad(evt, comp) {
var images=comp.getImages();
if (evt && (evt.item.type == "image")) { images[evt.item.id] = evt.result; }
}
function handleComplete(evt,comp) {
//This function is always called, irrespective of the content. You can use the variable "stage" after it is created in token create_stage.
var lib=comp.getLibrary();
var ss=comp.getSpriteSheet();
var queue = evt.target;
var ssMetadata = lib.ssMetadata;
for(i=0; i<ssMetadata.length; i++) {
ss[ssMetadata[i].name] = new createjs.SpriteSheet( {"images": [queue.getResult(ssMetadata[i].name)], "frames": ssMetadata[i].frames} )
}
exportRoot = new lib.LofotFishingdigitalkampanje1272x300pxdesktop();
stage = new lib.Stage(canvas);
stage.enableMouseOver();
//Registers the "tick" event listener.
fnStartAnimation = function() {
stage.addChild(exportRoot);
createjs.Ticker.framerate = lib.properties.fps;
createjs.Ticker.addEventListener("tick", stage);
}
//Code to support hidpi screens and responsive scaling.
AdobeAn.makeResponsive(false,'both',false,1,[canvas,anim_container,dom_overlay_container]);
AdobeAn.compositionLoaded(lib.properties.id);
fnStartAnimation();
}
</script>
<!-- write your code here -->
</head>
<body onload="init();" style="margin:0px;">
<div id="animation_container" style="background-color:rgba(255, 255, 255, 1.00); width:1272px; height:300px">
<canvas id="canvas" width="1272" height="300" style="position: absolute; display: block; background-color:rgba(255, 255, 255, 1.00);"></canvas>
<div id="dom_overlay_container" style="pointer-events:none; overflow:hidden; width:1272px; height:300px; position: absolute; left: 0px; top: 0px; display: block;">
</div>
</div>
</body>
</html>
Copy link to clipboard
Copied
Were you able to resolve this issue. I have encountered the same thing. My link works when I post to my own server, but not when the online publication running our ad posts through Ad Manager.
Copy link to clipboard
Copied
Follow Google's HTML5 guidelines: https://support.google.com/admanager/answer/7046799?hl=en#clicktag
Copy link to clipboard
Copied
Awesome. Thank you!