cyrad2001
06-28-2003, 05:32 AM
Hello all. I have a project that i need help with.
I have the task of setting up Kiosk PC. I have to setup Netscape Communicator 4. 8 in Kiosk mode to use only the navigation toolbar with limited control. The tool bar can only have the Back, Forward, reload, and Home buttons.
I have done some research and found this script that worked.: But the only problem is that on the tool bar I still have the search button, MY Netscape button, Print button, Security button, Stop button, and the Netscape logo button that redirects you to netscape home page.
This the script that i used : http://northville.lib.mi.us/tech/netscape.html
<html>
<head>
<script language="javascript">
<!--
function WinOpen(){
window.open("http://your.server.here","test", "status=yes,hotkeys=yes,toolbar=yes,scrollbars=yes");
timeoutID=setTimeout("WinClose()", 1000);
}
function WinClose(){
window.close();
}
//-->
</SCRIPT>
</head>
<body onLoad="WinOpen()">
</body>
</html>
Thanks again for your help.:)
I have the task of setting up Kiosk PC. I have to setup Netscape Communicator 4. 8 in Kiosk mode to use only the navigation toolbar with limited control. The tool bar can only have the Back, Forward, reload, and Home buttons.
I have done some research and found this script that worked.: But the only problem is that on the tool bar I still have the search button, MY Netscape button, Print button, Security button, Stop button, and the Netscape logo button that redirects you to netscape home page.
This the script that i used : http://northville.lib.mi.us/tech/netscape.html
<html>
<head>
<script language="javascript">
<!--
function WinOpen(){
window.open("http://your.server.here","test", "status=yes,hotkeys=yes,toolbar=yes,scrollbars=yes");
timeoutID=setTimeout("WinClose()", 1000);
}
function WinClose(){
window.close();
}
//-->
</SCRIPT>
</head>
<body onLoad="WinOpen()">
</body>
</html>
Thanks again for your help.:)