Tabris
07-23-2002, 09:18 PM
<SCRIPT language=JavaScript>
<!-- begin
document.onmousedown=click;
document.onkeydown=click;
if (document.layers) window.captureEvents(Event.MOUSEDOWN); window.onmousedown=click;
if (document.layers) window.captureEvents(Event.KEYDOWN); window.onkeydown=click;
function click(e){
if (navigator.appName == 'Netscape'){
if (e.which != 1){
return false;}}
if (navigator.appName == "Microsoft Internet Explorer"){
if (event.button != 1){
return false;}}}
// end -->
</SCRIPT>
I found that this script disables all keys except the "Print Screen" key. Is here any way that can disable it?
Thankx for helping!!
<!-- begin
document.onmousedown=click;
document.onkeydown=click;
if (document.layers) window.captureEvents(Event.MOUSEDOWN); window.onmousedown=click;
if (document.layers) window.captureEvents(Event.KEYDOWN); window.onkeydown=click;
function click(e){
if (navigator.appName == 'Netscape'){
if (e.which != 1){
return false;}}
if (navigator.appName == "Microsoft Internet Explorer"){
if (event.button != 1){
return false;}}}
// end -->
</SCRIPT>
I found that this script disables all keys except the "Print Screen" key. Is here any way that can disable it?
Thankx for helping!!