Skip to main content
Participant
August 23, 2007
Question

pop-up html window with standar dimentions

  • August 23, 2007
  • 4 replies
  • 273 views
Hi everybody,
i have this problem i know how i can open a deferent html page inside flash.
i create a button and the script looks like this:

on (release) {
getURL("test.html", "_blank");
}

my problem is if i want to open the html page like pop-up window with
lock dimantions for example 500*400 pixels how i can do it?
please help me because it is very important to find a way...
This topic has been closed for replies.

4 replies

Participant
August 24, 2007
anyone that can help me a litle more?
Participant
August 24, 2007
thank you but please tell me exactly the function and the parameters that i have to wright on the html page because i don't now javascript at all...
Participant
August 23, 2007
thank you but pleise tell me exactly the funktion an the parametters what exactly i have to right on the html page because i don't now javascript at all...
Participating Frequently
August 23, 2007
You simply need to call a JavaScript function which is on your html page. For example:

on (release) {
getURL("javascript:openMyWindow('test.html')");
}

and have your function call window.open() with all the required parameters.