To stop others from copying pictuers from my web site

T

Tom Pepper Willett

How do I stop people from downloading my graphics or code?

http://www.jamesshuggins.com/h/web1/how_do_i_stop_downloading.htm

http://www.jimcoaddins.com/protect.htm

--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
FrontPage 2003 Product Information:
http://www.microsoft.com/office/frontpage/prodinfo/default.mspx
Understanding FrontPage:
http://msdn.microsoft.com/office/understanding/frontpage/
FrontPage 2002 Server Extensions Support Center:
http://support.microsoft.com/default.aspx?scid=fh;en-us;fp10se
===
| How do I stop someone from copying pictures from my web site
 
K

Kevin Spencer

How can you stop someone from robbing you? Of course, you can't. You can
only complain to the authorities if you can identify and prove who did it.
Same here. Copyright your images. There are digital watermarks you can use
to track them if needed. Then you can take the offender to court. Assuming
you can find them.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.
 
G

Guest

-----Original Message-----
How do I stop someone from copying pictures from my web site
.
Hello,

I have found this to be an effective deterrant for those
visitors who love to right click and take pictures from
my sites...(you can copy/paste the following into the
CODE portion of Frontpage)...


<SCRIPT LANGUAGE="JavaScript1.1">
<!-- Original: Martin Webb ([email protected]) -->

<!-- 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>



Best of luck,
Anna
 
K

Kevin Spencer

That is only a deterrent to the ignorant, which means that it is no
deterrent at all. Send me the URL of your web site and I'll send you copies
of every picture in it, if you like.

As a matter of fact, using FrontPage, I can get a copy of your entire web
site by using the Import command.

Advising people to do things that don't work is not a good idea. Remember
"The Emperor's New Clothes."

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.
 
C

CodeBubba

How do I stop someone from copying pictures from my web site? <<

Simple: Don't publish them on your website. :)

There are many tools that can do a screen-capture of the image as displayed
on their screen even if you should manage to block script-controlled
download of the image to their hard drive. If you're trying to do something
like sell paintings, etc. simply post a low-resolution version of your
picture so your prospective customers can see what the picture looks like
but not have a real copy of it.

-bwr-
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top