This is taken from here The correct way of adding Adform clickTAG with Hype
To lower file size for restrictions, remove the full, thin and pie scripts from the exported HTML folder.Upload the thin script to an external server of your choice. Link to it from Head HTML instead:
<script src="http://your.external.server/projectname/js/HYPE-XXX.thin.min.js"></script>
Create a Rectangle as a button over your scene with Opacity set to 0%. Add an Action on Mouse Click.Run Javascript. Create a new function called clickTAG():
function clickTAG(hypeDocument, element, event) {
window.open(dhtml.getVar('clickTAG', 'https://www.yourlink.com'),
dhtml.getVar('landingPageTarget', '_blank')
);
}
This is what I was referring to. Could you not do something like this?
D