# clickTAG getURL

**URL:** https://forum.kirupa.com/t/clicktag-geturl/246112
**Category:** flash
**Created:** [December 7, 2007, 5:57am UTC](https://forum.kirupa.com/t/clicktag-geturl/246112 "2007-12-07T05:57:21Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![arcymik](https://avatars.discourse-cdn.com/v4/letter/a/ac8455/32.png) [@arcymik](https://forum.kirupa.com/u/arcymik)
#### Post date: [December 7, 2007, 5:57am UTC](https://forum.kirupa.com/t/clicktag-geturl/246112/1 "2007-12-07T05:57:21Z")

</div>

i have a baner, i always use clickTAG and swfobject  
yesterday most of my baners stop working in firefox (popup blocker)

```auto
beckground.onRelease = function () { 
   klikTag(); 
} 
 
function klikTag(){ 
   if (clickTAG.substr(0,5) == "http:") { 
   getURL(clickTAG, "_blank"); 
   } 
} 
 
 
function ValidateSok(){ 
    
   if (sok_txt.length >=1){ 
       
      website='http://www.XXX.com/index.php?page=list_items&keyword='+sok_txt.text+'&type=all'; 
      openWebsite(website); 
   }else{ 
       
      klikTag(); 
   } 
} 
 
function openWebsite(url:String) 
{    
    getURL(url,'_blank') 
}; 
 
submit.onPress = function (){ 
   this.gotoAndStop("2"); 
   ValidateSok(); 
};

```

ther was escape for strong

and html code

```auto
 <html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 
<script language="Javascript" src="swfobject.js" type="text/javascript"></script> 
 
</head> 
<body> 
 
<div id="flashcontent"> 
  This text is replaced by the Flash movie. 
</div> 
 
<script type="text/javascript"> 
   var so = new SWFObject("baner.swf?clickTAG=http://adnetwork.com/tracking?http://www.destinationURL.com", "mymovie", "140", "350", "7", "#2E3842"); 
   so.addParam("quality", "high"); 
 
   so.addParam("salign", "t"); 
   so.write("flashcontent"); 
</script> 
 
 
</body> 
</html>

```

it stop working yesterday in Firefox/2.0.0.1, who try bloc getURL  
i works fine in opera, ie, safari  
i have changed flash player, but always the same, pop up bloker in ff  
i try everything, target="\_blank", special harecters ’ "  
so.addParam(“allowScriptAccess”, “always”);  
even versin of player in swfobject “7” -\> “9”

i have uesd this code for 2 yars, it always works  
in few hours my clients strats to wake up, one by one, and thay …  
do something bad to me  
help  
works on locahost, not on serwer (ff popup block)  
used to work on serwer till yesterday
