I need a desktop shortcut - when i click on the shortcut it should open my intranet in full screen. I created the below page and hosted it on our server where the intranet files are - then created a shortcut using the url. It opens the screen but not in full screen mode. How do i do that? Please Help.
ThanksCode:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Full Screen Desktop Frappler Launcher</title> <meta http-equiv="REFRESH" content="0;url=http://www.mywebsiteurl.com/Login.php"> <script> function OpenWindow() { var maxWin = window.open("Frappler", "top=0, left=0, resizable=yes, status=no, location=no, toolbar=no"); maxWin.moveTo(-4, -4); maxWin.resizeTo(maxWin.screen.availWidth+8, maxWin.screen.availHeight+8); if(maxWin) maxWin.focus(); } </script> </HEAD> <BODY onLoad="OpenWindow()"> </BODY> </HTML>



Reply With Quote
Bookmarks