PDA

View Full Version : Pop Up Window


mrdamon
11-28-2008, 05:26 AM
I've created a pop up window for a web site that displays a PDF file. How can I control the size of the pop up window?

Also, are there any tips for helping or informing the user about allowing pop ups?

Thanks.

mrdamon:cool:

alile
12-02-2008, 05:58 PM
fyi, this is a Javascript / HTML question, so it does not belong in this forum. just google 'popup' and you should be fine.

codemaster
12-18-2008, 10:10 PM
If you still can't figure it out, here's a nudge in the right direction:


import flash.external.*;
ExternalInterface.call("window.open",url,url-title,"width=width, height=height");


That should work.
For more options, you can look here (http://www.w3schools.com/js/tryit.asp?filename=tryjs_openallwindow)