Hello, what do you think about this?
In a flash movie, in one scene, I have two buttons opening urls:
on (release) {
getURL("javascript:NewWindow=window.open('http://www.glenda.se/audio.htm','audio','width=310,height=200,left=200,top=150,toolbar=No,location=No,scrollbars=no,status=no,resizable=No,fullscreen=No'); NewWindow.focus(); void(0);");
}
And:
on (release) {
getURL("javascript:NewWindow=window.open('http://www.glenda.se/tokyo.html','tokyo','width=550,height=400,left=200,top=150,toolbar=No,location=No,scrollbars=no,status=no,resizable=No,fullscreen=No'); NewWindow.focus(); void(0);");
}
The problem is, (oh, it’s not a *big *problem really) that the windows dont want to load at the same time. If you open the second one while the first is opened, the second window does’nt load until the first one is closed… which means the user could think the path is dead. What do you think?