Unfortunately, the only tools that Google DoubleClick Studio allows for creating HTML5 banner ads are Google Web Designer . See the "Tips for Studios" section of the documentation .
UPDATE : Adobe Ange and manual coding animations are now supported.
UPDATE I tried this and I let me control the output URL from DoubleClick Studio and it tracked the output in the output console.
Open the HTML file that you get when Export as HTML5 (Swiffy) Add Studio Enabler at the beginning of the document
<script src="https://s0.2mdn.net/ads/studio/Enabler.js"> </script>
Wrap <div id="swiffycontainer"> with <div id="bg-exit"> EX:
<div id="bg-exit"> <div id="swiffycontainer"></div> <div>
Add the following CSS styles to make the required transparent button
#bg-exit { background-color: rgba(255,255,255,0); cursor: pointer; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }
Then add the following script to add the required output. This should be at the bottom of the document.
<script> function bgExitHandler(e) { Enabler.exit('Background Exit'); } document.getElementById('bg-exit').addEventListener('click', bgExitHandler, false); </script>
All of the above codes are in the documentation to continue the next steps. There are additional options that you can enable, such as pageLoadHandler, but this will allow you to complete your task of editing the URL from the studio.
Since it was just a copy, this is not so bad for work, and I'm sure you could create a piece of code to speed things up a bit.