Oshaka
09-13-2006, 03:20 PM
Hello,
If I try 2 execute these 2 functions at the same time it will not work unless I click the link twice.
function open_win(args1,args2)
{
newplayer = window.open(args1,args2);
}
function Play(args1,args2,...)
{
if(!newplayer)
{
open_win('args1','args2'...); // first function
newplayer.Load(args1, args2, args3); // second function
}
Thank you!
If I try 2 execute these 2 functions at the same time it will not work unless I click the link twice.
function open_win(args1,args2)
{
newplayer = window.open(args1,args2);
}
function Play(args1,args2,...)
{
if(!newplayer)
{
open_win('args1','args2'...); // first function
newplayer.Load(args1, args2, args3); // second function
}
Thank you!
