Hmm... Unfortunately.. I don't think that will work. I could be wrong.. but I believe those special FS Commands work only for stand alone players.
In order to get a browser to open a new fullscreen window, you need a little JavaScript code.
<BLOCKQUOTE><font size="1" face="Verdana, Arial">code:</font><HR><pre>
<script language="JavaScript"><!-- //
function openthewindow() {
window.open("page.html", "newwindow","fullscreen=yes,type=fullWindow,scroll bars=no");
}
//--></script>
[/code]
Now you just have to call that function.. There are severl ways to do that..
From the HTML page:
1. <A href="JavaScriptpenthewindow();">Enter</A>
2. <BODY onload="openthewindow();">
From a Flash movie:
3. GetURL("JavaScriptpenthewindow();","")
4. Use the FS Command. This is a good deal more complicated.
---
NOTES:
Calling the JS function from the HTML page (1 and 2) is the most universaly compatible method. Both 3 and 4 have some compatibility problems. Method 3 does not work with IE3. 4 does not work with any Mac IE.
Also note that while this JS code is compatible with both Netscape and IE versions 3 and above, only IE version 4 and above will actually use the ENTIRE screen.
------------------
Scott Richards
http://www.rjscs.com/scotty
[email protected]




penthewindow();">Enter</A>
Reply With Quote