# Clicktag problem avoiding popup blockers

**URL:** https://forum.kirupa.com/t/clicktag-problem-avoiding-popup-blockers/315500
**Category:** Uncategorized
**Created:** [October 27, 2010, 8:16pm UTC](https://forum.kirupa.com/t/clicktag-problem-avoiding-popup-blockers/315500 "2010-10-27T20:16:18Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![mcbrandnew](https://avatars.discourse-cdn.com/v4/letter/m/0ea827/32.png) [@mcbrandnew](https://forum.kirupa.com/u/mcbrandnew)
#### Post date: [October 27, 2010, 8:16pm UTC](https://forum.kirupa.com/t/clicktag-problem-avoiding-popup-blockers/315500/1 "2010-10-27T20:16:18Z")

</div>

I’m just finishing off my first bannerproject in AS3, but I’m having some issues with the clicktag. The code I’ve used works just fine on all browsers except IE, which blocks the popup window. I’ve figured I’m supposed to use the externalinterface call to work around my IE problems. Something like this…

```auto
if (ExternalInterface.available) { ExternalInterface.call("window.open");}

```

But I can not figure out how, and it’s driving me crazy!!  
Could someone please give me an example on how to get it working?  
The code I’m using on my movieclip called knappen

```auto
 
var paramList:Object = this.root.loaderInfo.parameters;
knappen.addEventListener(MouseEvent.MOUSE_UP, openURL);
function openURL(evtObj:MouseEvent):void {
    var request:URLRequest = new URLRequest(paramList["clickTAG"]);
 
 navigateToURL(request, "_blank");
}

```
