|
| |
|
|
imranqurai
Posts: 14 From: Knoxville, TN USA Status: offline
|
right click protection - 2/27/2002 2:23:26
how do i enable right click protection on my site so people can't d/l my images? And if this can only be solved by javascript, that brings up another question. I have autothumbnailed many pictures. When you click on one it opens it seperatley, how do i put right click protection on that? and while i'm here, how do i make sure when someone clicks a out of site link, it opens a new window? appreciate it, imran
|
|
|
|
paperfish
Posts: 184 From: None Status: offline
|
RE: right click protection - 2/27/2002 7:16:12
Another alternative is to watermark your images so the source is visible. This is a technique used by some photographers and printmakers so they can show samples without giving away images.
|
|
|
|
Reflect
Posts: 4769 From: USA Status: offline
|
RE: right click protection - 2/27/2002 8:12:26
Hi, There really is no way to disable downloading of your images. You can right click protect your page, let me know if you still want that and I will provide a link to a script, BUT I could go to view, source in the browser to get the path to the image and then just call to it directly. Also whenever you view a page it is download to your local workstation in the browser's cache. I would concure with Paperfish and watermark your images. Here are a few links for watermarking.. This is to the pricing page so you know what it costs before reading The basic package is free for under 100 images. http://www.digimarc.com/imaging/ibphotogpricing.htm This one is $35 US. Seems nice. http://www.atomintersoft.com/products/watermark-protector/ Brian Work hard, play fair, stay sane Edited by - gwj on 02/27/2002 08:14:26
|
|
|
|
Bill Seper
Posts: 416 From: USA Status: offline
|
RE: right click protection - 2/27/2002 11:02:32
The only way I can think is to use Flash (if you're a rich man.) Make a Flash movie with all the picks in thumbnail size. And if you have too many for one page just make another Flash movie and link to it from within the first ("load sprite".) Take all of your images and make a seperate mini Flash movie of just each individual image. Then when someone clicks on one of the thumbnails, make it link a "Load Movie" function and load the big image there. Do that with each image. When you're done you'll have a bunch of mini movies all linked to from within the first one. The reason you don't want to put them all in one movie is the obvious load time. Flash has a security lock feature that keeps people from opening you Flash file even if they go into the Temp File bin to retrieve it. Now for $50 you could get Swish and do all those same things. The only difference is that it doesn't have any way to lock the content. So if somebody has Swish or Flash on their machine they could still get it. But how many people own those products? It sounds complex but it's really not much more difficult than making regular web pages. *********** Moo Baby! Edited by - Bill Seper on 02/27/2002 11:04:02
|
|
|
|
paperfish
Posts: 184 From: None Status: offline
|
RE: right click protection - 2/28/2002 8:14:54
Will this technigue disable Print Screen? If someone wants the image, and can live with screen resolution only, they press Print Screen, paste the screen image into Paint (or other graphics application), trim and save.
|
|
|
|
Bill Seper
Posts: 416 From: USA Status: offline
|
RE: right click protection - 2/28/2002 11:08:24
Well, sure you can always print screen but web images are so compressed they look terrible printed out. Besides, the real fear here is someone stealing graphics and then using them on their own web pages. If you first have to print a very poor quality image and then have to scan it and then recompress it again for the web, needless to say the quality would be so bad that no one would bother. Besides, that' an awful lot of steps to go through. I know I wouldn't bother. *********** Moo Baby!
|
|
|
|
LB
Posts: 5551 From: Montana USA Status: offline
|
RE: right click protection - 2/28/2002 13:33:16
Hi, Bill - paperfish was refering to the "print scrn" key... you can click that and then paste directly into your graphics program. Quick and easy. If it's on the net, it's available. Best to consider a digital watermark, possibly a visual watermark, and put copyright notices on everything.... password protecting and requiring sign-up isn't a bad idea if it's something you want to keep exclusive. Linda
|
|
|
|
Bill Seper
Posts: 416 From: USA Status: offline
|
RE: right click protection - 3/1/2002 15:38:18
Oh yeah, I had forgotten about that. *********** Moo Baby!
|
|
|
|
Cam
Posts: 4 Joined: 2/3/2002 From: USA Status: offline
|
RE: right click protection - 3/2/2002 16:50:00
<!-- TWO STEPS TO INSTALL NO RIGHT CLICK: 1. Copy the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript1.1"> <!-- Original: Martin Webb (martin@irt.org) --> <!-- This script and many more are available free online at --> <!-- The JavaScript Source!! http://javascript.internet.com --> <!-- Begin function right(e) { if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) return false; else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) { alert("Sorry, you do not have permission to right click."); return false; } return true; } document.onmousedown=right; document.onmouseup=right; if (document.layers) window.captureEvents(Event.MOUSEDOWN); if (document.layers) window.captureEvents(Event.MOUSEUP); window.onmousedown=right; window.onmouseup=right; // End --> </script> </HEAD> <!-- STEP TWO: Copy this code into the BODY of your HTML document --> <BODY> <center>[ Try right-clicking the image and then the text link below ] <p> <img src="http://javascript.internet.com/img/tjsbutton.gif"> <p> <a href="http://javascript.internet.com">Text Link</a> <p><center> <font face="arial, helvetica" size="-2">Free JavaScripts provided<br> by <a href="http://javascriptsource.com">The JavaScript Source</a></font> </center><p> <!-- Script Size: 1.57 KB --> Cam
|
|
|
|
Cam
Posts: 4 Joined: 2/3/2002 From: USA Status: offline
|
RE: right click protection - 3/2/2002 16:56:02
As far as your open an outgoing link in a new window...click on hyperlink properties for that link and select target frame and click new window. Thats all there is to that
|
|
|
|
Gil
Posts: 7533 From: North Carolina, USA Status: offline
|
RE: right click protection - 3/2/2002 17:34:52
quote: <!-- TWO STEPS TO INSTALL NO RIGHT CLICK: 1. Copy the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript1.1"> <!-- Original: Martin Webb (martin@irt.org) --> <!-- This script and many more are available free online at --> <!-- The JavaScript Source!! http://javascript.internet.com --> <!-- Begin function right(e) { if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) return false; else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) { alert("Sorry, you do not have permission to right click."); return false; } return true; } document.onmousedown=right; document.onmouseup=right; if (document.layers) window.captureEvents(Event.MOUSEDOWN); if (document.layers) window.captureEvents(Event.MOUSEUP); window.onmousedown=right; window.onmouseup=right; // End --> </script> </HEAD> <!-- STEP TWO: Copy this code into the BODY of your HTML document --> <BODY> <center>[ Try right-clicking the image and then the text link below ] <p> <img src="http://javascript.internet.com/img/tjsbutton.gif"> <p> <a href="http://javascript.internet.com">Text Link</a> <p><center> <font face="arial, helvetica" size="-2">Free JavaScripts provided<br> by <a href="http://javascriptsource.com">The JavaScript Source</a></font> </center><p> <!-- Script Size: 1.57 KB -->
You forgot the third step: Take the site down, because you have run all your visitors away! Gil Harvey The Host Factory Resellers are our Specialty Find a Web Professional
|
|
|
|
imranqurai
Posts: 14 From: Knoxville, TN USA Status: offline
|
RE: right click protection - 3/10/2002 20:37:28
thanks for all your advice
|
|
New Messages |
No New Messages |
Hot Topic w/ New Messages |
Hot Topic w/o New Messages |
Locked w/ New Messages |
Locked w/o New Messages |
|
Post New Thread
Reply to Message
Post New Poll
Submit Vote
Delete My Own Post
Delete My Own Thread
Rate Posts
|
|
|