Howdy!
Yes, it is possible to do what you are asking, but you will need to
combine Flash and JavaScript to achieve this effect.
First, you will need to add a JavaScript function to open the window
to your HTML page. You can do this with the following syntax:
<HTML><HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!--
function doPopup() {
var myWin = window.open("myfile.html","newWindow","scrollbars=yes,resizable=yes,toolbar=no,width=640,height=600")
}
window.onerror=null;
// -->
</SCRIPT>
</HEAD>
...where "myfile.html" is the URL of the page you want to open. The
third part of the window.open command specifies the window features
that you want; in this case, no address bar, etc.
Then, from your Flash application, call:
getURL("javascript:doPopup()")
Hope this helps!
Launching a Fullscreen Window from Flash
http://www.moock.org/webdesign/flash/launchwindow/fullscreen/
Search Strategy:
flash popup
://www.google.com/search?hl=en&ie=ISO-8859-1&q=flash+popup |