flash actionscript:
i installed SP2 on my MS Windows...and don't know if this is the problem or
that I am plain stupid...i hope none of them both...
i have this loop within my .swf, that reads out some images frome a folder.
it's really simple and works great in FireFox, but IE only get's the last
image, and doesn't open, for example, the four pop-ups that has to be
generated.
somebody knows if this is the pop-up blocker in IE or something else? very
strange, because this used to work...if i am not completly stupid....
here's the function:
function imagePopUp(dir, pic, imgCount){
if(pic == "image"){
getURL("javascript:window.open('content/image/image.html','_blank','toolbar=no
,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,widt
h=282,height=440,left=0,top=0'), _blank");
}
if(pic == "nokia"){
getURL("javascript:window.open('content/nokia/nokia.html','_blank','toolbar=no
,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,widt
h=370,height=348,left=0,top=0'), _blank");
}
else{
for(i=1; i<imgCount+1; i++){
trace(count)
getImage = new Array();
getImage = "content/"+dir+"/"+pic+"/"+pic+"_"+i+".jpg";
getURL("javascript:PopupPic('"+getImage+"')");
}
}
}
you can check the example site over here:
http://www.kazeze.nl/new/recoverdSite.html test the problem mentioned above, by clicking > graphic design > safe romance
in Firefox it opens 4 popups and in IE only the 4th and not all four.....why
is that?