In the head of your HTML file, add: <script>var clickTag = "http://www.google.com";</script> To set up the window opening functionality, you can either add onclick="javascript:window.open(window.clickTag)" to your canvas tag in the HTML, or you can create a button within Animate, give it an instance name, and add this to the actions: this.myBtn.on("click", function(){ window.open(clickTag, "_blank"); }); If you add a button symbol in Animate, you will automatically get the pointer finger when you mouse over the hit area, but you can also add cursor:pointer to the CSS in your HTML file without a button symbol to get the same effect. For DCM and Adwords, you also need to include the Ad Size meta tag. You can review all of the requirements for DCM HTML5 banners here: How to prepare HTML5 assets for DCM - DoubleClick Digital Marketing Partners Help Also, for Animate, you can create easily reusable templates so you don't have to retype the same code in every banner: Using Animate CC HTML5 Canvas Templates with Multiple Publish Profiles | Creative Cloud blog by Adobe
... View more