Click to See Complete Forum and Search --> : Get around pop-up blocker??


flashpipe
06-30-2003, 08:10 AM
I'm building a site with a full flash version and have the flash version launching in a new window using javascript window.open() and was testing it out on a friend's machine, but couldn't access it because he has Popup Stopper installed. Is there a way to launch a new window with no toolbar or location bar at a fixed size from a hyperlink where it won't be blocked by a pop-up blocker??

TIA

Khalid Ali
06-30-2003, 09:26 AM
If you have your code as such that you click on a link and it opens window,that should not be blocked by a popup blocker,it should block un-requested windows.
a href="someAddres.html" onclick="window.open('someAddres.html','winName'); return false;">Popup Win</a>

This shoud work