Click to See Complete Forum and Search --> : open second window


engineer94111
08-01-2003, 07:02 PM
Hi Guys,

and thanks in advance.

I need to open two IE windows at one time.

I hope to use java language in my flash action script.

for example: on my LAN I need to open 192.168.0.2,
and then right next to it, I need to open 192.168.0.3.

both have to be open at the same time.

Thanks for your help.

Jupac
08-01-2003, 08:13 PM
Em its something like this but i think it can be better

<html>
<script>
function win(open){
if (open == 1){window.open('http://192.168.0.2')}
if (open == 1){window.open('http://192.168.0.3')}
}
</script>

<body onload='win(1)'>
</body>
</html>