PDA

View Full Version : Positioned Pop Up In Flash


JMLstudio
03-25-2002, 02:22 AM
Normally I use this code for a pop up. How would I edit this to have it positioned at the top left screen of my monitor?

getURL ("javascript:window.open('index2.htm','winName','wid th=800,height=600'); void(0);");


Thanks in advance

zoomfreddy
03-25-2002, 04:27 AM
add left=0,top=0

like this:

getURL ("javascript:window.open('index2.htm','winName','wid th=800,height=600, left=0,top=0'); void(0);");


:cool: