Hi there,
I used the pop up window tute from this site and it uses javascript which I know very little about.
Basically the tute opens a customised url window from the swf file but only one at a time.
I need to open two or more at the same time.
What would I have to change so I could open more than one at a time?
here is the script …
_root.[COLOR=#000050]openWinCentre[/COLOR] [COLOR=#0000ff]=[/COLOR] [COLOR=#006610]function[/COLOR] [COLOR=#0000ff]([/COLOR][COLOR=#0000d0]url[/COLOR], [COLOR=#000050]winName[/COLOR], [COLOR=#000050]w[/COLOR], [COLOR=#000050]h[/COLOR], [COLOR=#000050]toolbar[/COLOR], [COLOR=#000050]location[/COLOR], [COLOR=#000050]directories[/COLOR], [COLOR=#0000d0]status[/COLOR], [COLOR=#000050]menubar[/COLOR], [COLOR=#000050]scrollbars[/COLOR], [COLOR=#000050]resizable[/COLOR][COLOR=#0000ff])[/COLOR] [COLOR=#0000ff]{[/COLOR] [COLOR=#0000d0]getURL[/COLOR] [COLOR=#0000ff]([/COLOR][COLOR=#666666]“javascript:var myWin; if(!myWin || myWin.closed){myWin = window.open(’”[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#0000d0]url[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#666666]"’,’"[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#000050]winName[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#666666]"’,’"[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#666666]“width=”[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#000050]w[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#666666]",height="[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#000050]h[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#666666]",toolbar="[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#000050]toolbar[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#666666]",location="[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#000050]location[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#666666]",directories="[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#000050]directories[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#666666]",status="[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#0000d0]status[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#666666]",menubar="[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#000050]menubar[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#666666]",scrollbars="[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#000050]scrollbars[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#666666]",resizable="[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#000050]resizable[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#666666]",top=’+((screen.height/2)-("[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#000050]h[/COLOR][COLOR=#0000ff]/[/COLOR][COLOR=#991010]2[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#666666]"))+’,left=’+((screen.width/2)-("[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#000050]w[/COLOR][COLOR=#0000ff]/[/COLOR][COLOR=#991010]2[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#666666]"))+’"[/COLOR] [COLOR=#0000ff]+[/COLOR] [COLOR=#666666]"’)}else{myWin.focus();};void(0);"[/COLOR][COLOR=#0000ff])[/COLOR]; [COLOR=#0000ff]}[/COLOR]
I’d really appreciate an answer
Thanks guys