It shows that you are unregistered. Please register with us by clicking Here
![]() |
|
![]() |
![]() | Register - FAQ - Today's Posts - New Posts - Support - Search | ![]() |
|
|
#1 (permalink) |
|
Member
Join Date: Jun 2006
Age: 29
Posts: 74
|
I'm currently reviewing the specs for the website of a book we're about to publish. It goes like this, once you purchase a printed copy of the book, you get access to its online website where you can view images and watch videos. However, the user should not be able to download these images / videos. Is there a way to do it?
__________________
Certified CSS Sushi Chef |
|
|
|
|
|
|
|
#2 (permalink) |
|
Forum Management
|
There are some Javascript solutions, but are not 100%. It would work for the less "computer savvy" crowd. I haven't looked into this for a while now, so maybe there's something new floating around.
__________________
Larry [DarkStar Retro Project] - A world wide search for ultra-rare software. "Writing is the most fun you can have by yourself!" --Terry Pratchett ---- Gorgeous On Life - The world from a Cat's point of view! |
|
|
|
|
|
#3 (permalink) |
|
Member
|
Yes I agree, there are some javascript codes but that work only for less "computer savvy" crowd. There may be several other ways to download pictures / save text even if you have used these codes which prevent the user from downloading pictures / text.
|
|
|
|
|
|
#4 (permalink) |
|
Member
|
No way to prevent images, the user can always just print screen.
__________________
Indiana Jones |
|
|
|
|
|
#5 (permalink) |
|
Member
Join Date: Jun 2006
Age: 29
Posts: 74
|
I've thought about using javascript too. Does anyone know or has an idea what technology is being used by the Google book website?
__________________
Certified CSS Sushi Chef |
|
|
|
|
|
#6 (permalink) |
|
Senior Member
|
This simple Java script will stop people from right click on your images and saving them. But they can allways do it other ways.
Place in the <head> Code:
<script language="JavaScript"> <!--
// No rightclick script v.2.5
// (c) 1998 barts1000
// barts1000@aol.com
// Don't delete this header!
var message="Sorry, that function is disabled.\n\nContents & Graphics Copyright ©your name\nOur work is not Public Domain, and should NOT be taken from this site."; // 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>
|
|
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Please review our new website design (hosting website | zachary | Website Reviews | 11 | 08-04-2006 10:56 PM |
| The Book to Film Process | kibeth | Entertainment | 2 | 08-01-2006 12:43 PM |
| It There A Book? | skaterman 2 | Forum Management | 2 | 12-03-2005 03:42 PM |