![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Is there a simple way of disabling a user from downloading images placed within an html page? Thanks for the assist. |
#3
| |||
| |||
|
|
Is there a simple way of disabling a user from downloading images placed within an html page? Thanks for the assist. |
#4
| |||
| |||
|
|
Is there a simple way of disabling a user from downloading images placed within an html page? |
#5
| |||
| |||
|
#6
| |||
| |||
|
|
One of the best solutions that I read, is to have a positioned div with a transparent gif *on top* of a CSS background of your actual image. From the web, it only looks like your image is there because they will be seeing through the transpareent GIF. And if they right-click to save, they will only save the transparent GIF. If they view source they won't find it, because it'll be well hidden in your CSS file as a background image. (And you can crunch all your CSS code up into 1 or 2 lines.) However if they REALLY want your images they might take a screen capture and steal it that way. This is the best solution I know of. |
#7
| |||
| |||
|
|
Is there a simple way of disabling a user from downloading images placed within an html page? Thanks for the assist. |
#8
| |||
| |||
|
|
It's a lame best solution though - wouldn't you agree? -- Murray --- ICQ 71997575 Team Macromedia Volunteer for Dreamweaver (If you *MUST* email me, don't LAUGH when you do so!) ================== http://www.dreamweavermx-templates.com - Template Triage! http://www.projectseven.com/go - DW FAQs, Tutorials & Resources http://www.dwfaq.com - DW FAQs, Tutorials & Resources http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes ================== "mzanime.com" <webforumsuser (AT) macromedia (DOT) com> wrote in message news:ctogl4$rci$1 (AT) forums (DOT) macromedia.com... One of the best solutions that I read, is to have a positioned div with a transparent gif *on top* of a CSS background of your actual image. From the web, it only looks like your image is there because they will be seeing through the transpareent GIF. And if they right-click to save, they will only save the transparent GIF. If they view source they won't find it, because it'll be well hidden in your CSS file as a background image. (And you can crunch all your CSS code up into 1 or 2 lines.) However if they REALLY want your images they might take a screen capture and steal it that way. This is the best solution I know of. |
#9
| |||
| |||
|
|
neuron wrote: Is there a simple way of disabling a user from downloading images placed within an html page? Thanks for the assist. Place this script in the <head> of your document: script type="text/javascript" var msg="Your right mouse button has been disabled while\n" msg+="you are viewing this page because we don't care\n"; msg+="about usability and value our images more than\n"; msg+="our customers."; document.oncontextmenu=new Function("alert(msg);return false") /script Gary |
#10
| |||
| |||
|
|
One of the best solutions that I read |
![]() |
| Thread Tools | |
| Display Modes | |
| |