ho creato un sito web interamente in flash...vorrei che il sito si aprisse subito in fullscreen senza visualizzare il la pagina html..

questo è il codice html..

<html>
<head>

<title>Documento senza titolo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<SCRIPT LANGUAGE="JavaScript">
<!--

function FullWin_DoFSCommand(command, args)
{
if ( command == "fullwin" )
{
window.open(args,"frame","fullscreen");
}
}

//-->
</SCRIPT>
<SCRIPT LANGUAGE="VBScript">
<!--
// Per IE.

Sub FullWin_FSCommand(ByVal command, ByVal args)
call FullWin_DoFSCommand(command, args)
end sub

//-->
</SCRIPT>


</head>

<body>
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="800" height="600"ID="FullWin">
<param name="movie" value="sito_web.swf">
<param name="quality" value="high">
<embed NAME="FullWin" swLiveConnect="true"src="sito_web.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="800" height="600"></embed></object>
</body>
</html>



all'interno del filamto flash sul primo fotogramma inserisco:

fscommand ("fullwin", "sito_web.swf");

l'argomento passato all fscommand è il nome del filmato principale ..qualcuno sa dirmi dove sto sbagliando ?