It can't be done.
Even if you were able to disable all forms of browser controls which save images, the print screen function always saves the visible screen to the clipboard. Then you can paste the screen to mspaint, cut out the image, and save it.
MidiMagic
Nearly a Senior Poster
3,319 posts since Jan 2007
Reputation Points: 730
Solved Threads: 182
Just a small hint for you. Make changes to suit your purposes since handing out complete solutions won't be such a good idea... ;-)
document.onmousedown=disableclick
function disableclick(e)
{
var message = "Right click is disabled";
if (document.all)
{
if (event.button==2||event.button==3)
{
alert(message);
return false;
}
}
if(document.layers || document.getElementById && !document.all)
{
if (e.which == 3 || e.which == 2)
{
alert(message);
return false;
}
}
}
I would assume that you know where to place this code.
~s.o.s~
Failure as a human
11,938 posts since Jun 2006
Reputation Points: 3,281
Solved Threads: 734