I've managed to create some Enhanced Banner creatives through the v2.4 API, but the UI is giving me an unexpected warning on my creative about a "Hard-coded click-through URL," stating: "We detected at least one hard-coded click-through URL. To track clicks for this exit, we recommend working with your creative developer to set click-through URLs with click tags."
I've pasted the ad tag code at the bottom. The clicktag's name is 'kliktag' and the other URLs in here are just the swiffy-runtime library and a JSON file with art and animation data for the creative; they are not clickable links. My question: Is this warning a false positive over my library or JSON file with extra creative data? Is there something else wrong with my tag? Thanks in advance.
<!DOCTYPE html>
<html>
<head>
<meta name="ad.size" content="width=120,height=600">
<script type="text/javascript">
var clickTag = "clickTAG";
</script>
</head>
<div id="swiffycontainer_16664169" style="width:120px;height:600px"></div>
<script type="text/javascript">
(function(){var swiffycontainer=document.getElementById("swiffycontainer_16664169");if(typeof XMLHttpRequest==="undefined"){XMLHttpRequest=function(){try{return new ActiveXObject("Msxml2.XMLHTTP.6.0")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP.3.0")}catch(e){}try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(e){}return false}}if(XMLHttpRequest){var request=new XMLHttpRequest();request.open("GET","
https://swfhtml5.s3.amazonaws.com/dev/1463603454-16664169.swf.json",true);request.onload=function(){if(request.status>=200&&request.status<400){var stage=new swiffy.Stage(swiffycontainer,JSON.parse(request.responseText),{});stage.setFlashVars("clickTAG=kliktag");stage.start()}};request.send()}})();
</script>
</html>