Hello Everyone,
I am having a problem with a dynamic popup window. Currently, I can get a blank browser window to open my page perfectly, but now I would like to controll the width and height of the popup as well. I have look through the turtorials with little luck. here’s the code that I’m currently using:
on(release) {
getURL(_root.pathToPage+_root.pArray[_root.pIndex]+ “.html”);
}
the above code works well, but whenever I change it to:
getURL ("javascript:Launch(\\\my dynamic page ///// + “.hml”);
}
I can’t get it to work. I think I am getting confused on the usage of ’ and ". could someone please help me get it corrected.
I was thinking of using something like this…
getURL (“javascript:Launch=window.open(’\\my page(s)////’,‘newWin’,‘width=500,height=400,left=0,top=0,tool bar=No,location=No,scrollbars=No,status=No,resizab le=No,fullscreen=No’); NewWindow.focus();void(0);”);
}
but am unclear on how to correctly reference the pages in my array
Many thanks in advance!!
trent