Hi
I would like to launch a web site in a popup window wich adapt his size to the screen resolution of the visitor (fullscreen)
what is the code that I have to place on the “launch” button ?
You can find actionscript for fullscreen to the behavior panel of Flash MX2004.
on (press) {
//Toggle Full Screen mode
if ($fullscreen == true) {
fscommand("fullscreen", false);
$fullscreen = false;
} else {
fscommand("fullscreen", true);
$fullscreen = true;
}
//End Behavior
}