You can disable save functions in html/ java-script, what I'm doing is when you go to my site you click enter site and a pop-up comes up, in the pop-up you can't right click, also I, myself have made a code that stops ctrl in InternetExplorer so you can't right click to save or press ctrl+S. Just type this in after the head part
This is to disable ctrl buttons. I can't belive that I'm the first one to say this on the net www.aussieferal.com - will be updated soon
If you need help or can't see the script PM me or go to first_way_to_disable_save_in_ie_made_by_aussieferal
>//script made by aussieferal.com
<script language=JavaScript>
<!--
var message="Function Disabled!";
///////////////////////////////////
function clickIE4(){
if (event.button==ctrl){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==ctrl||e.which==ctrl){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.CTRLDOWN);
document.onctrldown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onctrldown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
// -->
</script>
Edited by TCH-David: Removed e-mail address to prevent harvesting by spambots; enclosed javascript code in CODE tags;.