I have tried everything with my HTML banner that I created with Adobe Animate. With the "add using wizard" option inactions, my banner works perfectly - when clicking on a button it opens a webpage. But the HTML validator says that it's missing a click Tag so I put the code below in the HTML file, but it still says click tag is missing, and I'm afraid that when my client use Ad Manager they will get this fault too.
<head>
<meta name="ad.size" content="width=160,height=600">
<script>
var clickTag = "http://myclientswebpage.com";
</script>
</head>
<body onload="init();" style="margin:0px;">
<a href="javascript:window.open(window.clickTag)"> <canvas id="canvas" width="160" height="600" style="position: absolute; display: block; background-color:rgba(35, 31, 32, 1.00);"></canvas></a>
</body>