Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

IE blocking popups - restarting flash movie

Status
Not open for further replies.

whoknows361

Technical User
Sep 22, 2005
228
0
0
US
so i have popups for customers to view add'l html files via
Code:
 getURL("xxxx.html" _blank);

but when users approve IE to accept popups from my site - it starts the entire flash movie over (a pain).

is there any way around this?
what options do I have

thanks in advance.

J.
 
This could be as simple as the following:

JavaScript:
Code:
function openURL(url){
   window.open(url);
}
AS1:
Code:
getURL("javascript:openURL('xxxx.html')");
I have no idea if this will solve your issue with IE though ;)

Kenneth Kawamoto
 
or if the worse comes to worse, you could always remember what frame you are at on the flash movie then when it reloads, make it navigate straight back to that frame

Regards,

Martin

Computing Design And Services:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top