s2xoxsweetixox
03-14-2004, 05:22 AM
can someone please tell me fast :idea:
|
View Full Version : whats the code to block people from taking my pics? s2xoxsweetixox 03-14-2004, 05:22 AM can someone please tell me fast :idea: kicker91 03-14-2004, 05:42 AM There's no way. People can always view the source. pb&j 03-14-2004, 05:45 AM you can do a search in the javascript forum for a script, but it is easy to get around as that is only a "non-right click" thing. the ONLY way to really make it so nobody takes your images is... dont put them online. people can see your coding easily. they can do a "screen capture" they can look in their "cache" there are so many ways to retrieve any image seen on the internet.... google search site ripper and the list just goes on... perhaps put your site name right onto the images, then they would be less appealing to take by someone else. i know this is not a very "positive" answer, but it comes down to reality. good luck on your attempts and preventions though. s2xoxsweetixox 03-14-2004, 11:43 PM ya thats what i want to do make it so they cant right click i cant find the code anywere i want the one that if they right click a screen pops up and says that they cant salomeyasobko 03-15-2004, 12:39 AM this code disables right clicks. edit the italicized part: <script language="JavaScript" type="text/javascript"> <!-- // No rightclick script v.2.5 // (c) 1998 barts1000 // barts1000@aol.com // This script and others available free at http://www.lissaexplains.com var message="MESSAGE HERE"; // Message for the alert box // 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> this code disables the image toolbar: <meta http-equiv="imagetoolbar" content="no"> put both codes between the <head> and </head> tags of your site. good luck with that! :) |