Sorry if this question was posted again and again, but i'm not a developper, just a graphic designer with little html abilities. But for this i'm starting to be crazy : My publisher(www.bonus.ch) said there is no clickTag in my banner, and i don't know what is wrong and how to make it works.
I've made this banner in Edge animate and created a transparent button with this code on it :
// insérer le code du clic de souris ici
window.open(clickTag, "_blank");
in the second time and here is the problem what do i need to do in my html file ? :
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
<title>Sans titre</title>
<!--Adobe Edge Runtime-->
<script type="text/javascript" charset="utf-8" src="edge_includes/edge.6.0.0.min.js"></script>
<style>
.edgeLoad-EDGE-720233178 { visibility:hidden; }
</style>
<script>
AdobeEdge.loadComposition('CAF_Bonus_300x100px_CA-Boost_DE_V1', 'EDGE-720233178', {
scaleToFit: "none",
centerStage: "none",
minW: "0px",
maxW: "undefined",
width: "300px",
height: "100px"
}, {"dom":{}}, {"dom":{}});
var getUriParams = function () {
var query_string = {}
var query = window.location.search.substring(1);
var parmsArray = query.split('&');
if (parmsArray.length <= 0) return query_string;
for (var i = 0; i < parmsArray.length; i++) {
var pair = parmsArray[i].split('=');
var val = decodeURIComponent(pair[1]);
if (val != '' && pair[0] != '') query_string[pair[0]] = val;
}
return query_string;
} ();
var clickTag= getUriParams.click + 'https://www.ca-financements.ch/de/de/kampagne/ca-boost.html?utm_source=Bonus&utm_medium=Ba nnerDE&utm_campaign=CA-Boost';
</script>
<!--Adobe Edge Runtime End-->
</head>
<body style="margin:0;padding:0;">
<div id="Stage" class="EDGE-720233178">
</div>
</body>
</html>
I become crazy and some help will be very welcome !
Thanks a lot !