Animate CC - clickTag implementation
Does anyone know how to implement a ClickTag var in HTML 5 Canvas file?
Does anyone know how to implement a ClickTag var in HTML 5 Canvas file?
from a previous post:
Don't do anything in Animate. Don't create button.
Edit exported html file. 1. Add bolded code with your dimensions in html file in </head> section. 2. In </body> section wrap </canvas> tag with <a href> tag.
<head>
<meta name="ad.size" content="width=300,height=250"> // your dimensions !!!
<script type="text/javascript">
var clickTag = "http://www.google.com"; </script>
</head>
<body onload="init();" style="margin:0;">
<a href="javascript:window.open(window.clickTag)"><canvas id="canvas" width="300" height="250"></canvas></a>
</body>
</html>
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.