|
Posted by Chris F.A. Johnson on 11/01/06 02:50
On 2006-11-01, techfiddle wrote:
> richard wrote:
>> Unless you personally took the image with your own camera, you do not own
>> rights to that image.
>
> I paid someone to take the image. So I think I own the rights to it.
That depends on the contract you signed; otherwise it belongs to
the person who took it.
> This block of code may work:
>
><script language=JavaScript>
><!--
>
> //Disable right mouse click Script
> //By Maximus (maximus@nsimail.com)
> //For full source code, visit http://www.dynamicdrive.com
>
> var message="Sorry This function is disabled. The graphics and script
> on this page are not Public Domain and are not available for download
> or use.";
> ///////////////////////////////////
> function clickIE() {if (document.all) {alert(message);return false;}}
> function clickNS(e) {if
> (document.layers||(document.getElementById&&!document.all)) {
> if (e.which==2||e.which==3) {alert(message);return false;}}}
> if (document.layers)
> {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
> else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
>
> document.oncontextmenu=new Function("return false")
> // -->
></script>
>
>
> Not sure, about to try it. Which is from:
>
> http://www.sheilascorner.com/sheila.shtml
>
> Sheila's code is a total mystery to me.
Same here, but it doesn't prevent me fromn downloading any images
from her page.
--
Chris F.A. Johnson <http://cfaj.freeshell.org>
===================================================================
Author:
Shell Scripting Recipes: A Problem-Solution Approach (2005, Apress)
[Back to original message]
|