foxache
11-13-2003, 10:06 AM
Hey guys. Maybe kinda easy this one (for some)
I have created some windows that popup when you click on a button in flash. Everything works fine except when you click on another one, it goes in the same window as the previous and stays the same size (oh by the way each "popup" is a different size) and here is the script I am using:
on (release) {
getURL("javascript:var mypopup = window.open('/esc','mySite','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width= 562,height=237,top='+eval((screen.availHeight - 237) / 3)+',left='+eval((screen.availWidth - 500) / 2));mypopup.focus();");
}
how would I launch the windows as entirely new ones. Ie as a "_blank" window?
Thanks
I have created some windows that popup when you click on a button in flash. Everything works fine except when you click on another one, it goes in the same window as the previous and stays the same size (oh by the way each "popup" is a different size) and here is the script I am using:
on (release) {
getURL("javascript:var mypopup = window.open('/esc','mySite','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width= 562,height=237,top='+eval((screen.availHeight - 237) / 3)+',left='+eval((screen.availWidth - 500) / 2));mypopup.focus();");
}
how would I launch the windows as entirely new ones. Ie as a "_blank" window?
Thanks