Is there a way to prevent people form taking images from my forum? Making it so they can not download them?
This Java script might work but how do I use this on the forum?
<SCRIPT language="JavaScript"> <!-- // No rightclick script. // Find more great scripts and applets at the JavaFile! // http://www.javafile.com // Do not delete this header! var message="Sorry, we don't allow that on this site!."; // Put your message for the alert box between the quotes. // Don't edit below! function click(e) { if (document.all) { if (event.button == 2) { alert(message); return false; } } if (document.layers) { if (e.which == 3) { alert(message); return false; } } } if (document.layers) { document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=click; // --> </SCRIPT>
Actually, I don't think you can move it yourself. Just wait for a Moderator to move it, and look for it there.
As for stopping people from stealing images, it's effectively impossible. You may be able to disable right-clicking, but a user can just view the source. And if you get rid of toolbars, you can just take a screen shot to get the images you want.
Personally, I find no-right-click scripts a bit annoying. They make you take one extra step and won't stop anybody who knows even a little bit about web pages.
images are downloaded to a person's temporary internet files when they view your page, there isn't anyway to prevent that. (they can just copy them from the Temporary Internet Files folder)