I make a pop-up window open from a swf file, my problem is the following, I use:
<!-- saved from url=(0013)about:internet -->
to prevent internet explorer from blocking my flash animation, the thing is, this particular line kills my pop-up window, there must be a way of making both work (the animation and the pop-up)
I use the following to open the new window:
on the head section of my html:
var newwin;
function launchwin (winurl,winname,winfeatures)
{
newwin = window.open(winurl,winname,winfeatures);
}
on my flash button:
on (release) {
getURL("javascript:launchwin('items/item1.html' , 'newwindow' , 'toolbar=no,width=500,height=300,left=0,top=0,status=no,scrollbars=no,resizable=no')");
}
I would REALLY appreciate any help
Arianna