Web site sized?

when you enter a site with flash animation, a flash animation pops up and takes up the entire screen(tool bar and all)… how can this be done?

export the .fla as a .swf and a .html. Then make a welcome screen with a link to the flash/html. In this link must be the following:


<a href="thnx.html" onClick="window.open('flash.html', '', 'fullscreen')">[click here]</a>

This will make the page open up at full window size without toolbar 'n stuff.

good luck with it.

[edit]
Hey!! This was my 100th post!! Yaj me!!!

I tried it this way:

[COLOR=blue]<a href=“flash.swf” onClick=“window.open(flash.swf’, ‘’, ‘fullscreen’)”>[Full Screen]</a>[/COLOR]

My question is: when only Flash pops up and occupies the entire screen - how can I close the window without Alt+Tab (PC)?
How can I close Flash from inside of Flash?

Thx!

I’m not really sure, but maybe you can use fscommand, it’s in the actionscript dictionary.

this works with a standalone player, but I don’t know if it will also work on the internet. Maybe if you use a simple javascript…window.close()?

here… take a look at what this korean movie site has… its complete flash with auto load… anyone have any idea how this can be achieved?
www.ghost3.com

Like I said, it uses JavaScript to load a pop-up that contains the .swf. It loads automatically because in the body it calls an onLoad function.

in the HEAD tag:
<script language=“JavaScript”>
<!–
function fullscreen(theURL) {
window.open(theURL, ‘’, ‘fullscreen=yes, scrollbars=0’);
}
// -->
</script>

in the body:

<body onLoad=“fullscreen(‘main.htm’)”>