|
Subject:
|
How to disable Right-click to Save Picture As....
|
|
Posted By:
|
bekim
|
Post Date:
|
12/25/2004 7:01:32 AM
|
Hello I wanted how I can disable the Right-click to Save Picture As with images. Don't know if this is a Javascipt, css, or html question.
|
|
Reply By:
|
meow
|
Reply Date:
|
12/25/2004 7:11:00 AM
|
You can't stop people from saving your images. That said, what you think of is JavaScript. It doesn't work and it's highly annoying. Maybe you yourself sometimes use the context menu for something else than to steal other people's work? 
|
|
Reply By:
|
anshul
|
Reply Date:
|
12/27/2004 5:40:14 AM
|
however, least! u can disable MSIE 'pop-up' for image->save as <meta http-equiv="imagetoolbar" content="no">
( u may create members area, let them login or pay for ur images ) sometimes, i've seen i can't save a web page ( though images can be saved ) X "This Web page colud not be saved" HTTP is a stateless protocol, i think, this is a error in local pc.
|
|
Reply By:
|
Snib
|
Reply Date:
|
12/27/2004 2:53:36 PM
|
There is no way to prevent people from saving any image that you display. Even if you were to disable the context menu and the image toolbar, you can just disable JavaScript or even crop a screen capture.
-Snib - http://www.snibworks.com Where will you be in 100 years?
|
|
Reply By:
|
bekim
|
Reply Date:
|
1/6/2005 9:26:20 PM
|
Dear Snib,
What you said is not possible is possible. Check out http://www.mitsucars.com/eclipse/index.html JS files work but when I tried to take .js file and .gif files I get error message. How do you think they did this???
|
|
Reply By:
|
joefawcett
|
Reply Date:
|
1/7/2005 3:35:41 AM
|
Which image? Trying to save the main car photo worked as expected.
--
Joe (Microsoft MVP - XML)
|
|
Reply By:
|
richard.york
|
Reply Date:
|
1/7/2005 10:08:07 AM
|
quote:
you can just disable JavaScript or even crop a screen capture.
And there's always my favorite.. going directly to the browser cache.
Regards, Rich
-- [http://www.smilingsouls.net] Mail_IMAP: A PHP/C-Client/PEAR solution for webmail Author: Beginning CSS: Cascading Style Sheets For Web Design
|
|
Reply By:
|
Vadivel
|
Reply Date:
|
1/7/2005 10:03:32 PM
|
Avoid cross posting :( http://p2p.wrox.com/topic.asp?TOPIC_ID=24545
Best Regards Vadivel
MVP ASP/ASP.NET http://vadivel.thinkingms.com
|
|
Reply By:
|
bekim
|
Reply Date:
|
1/9/2005 12:44:06 AM
|
Dear joefawcett, I am not talking about the main image but trying to download the js and mov files. Example try: http://www.mitsucars.com/eclipse/exterior.mov
http://www.mitsucars.com/eclipse/images/2004/ecl/360_exterior_thumb.gif
http://www.mitsucars.com/eclipse/js/snifferobj.js
Javascript works but I can't get to them. How do you do this??
|
|
Reply By:
|
bekim
|
Reply Date:
|
1/9/2005 12:45:21 AM
|
Hello richard.york, What do you mean by going directly to the browser cache? How do you do this??
|
|
Reply By:
|
meow
|
Reply Date:
|
1/9/2005 12:58:23 AM
|
I assume you use IE. Then everything is in Temporary Internet Files in the WinNT (or Windows) directory.
(o< //\ =^..^=
|
|
Reply By:
|
meow
|
Reply Date:
|
1/9/2005 1:09:15 AM
|
quote: Originally posted by bekim
Dear joefawcett, I am not talking about the main image but trying to download the js and mov files. Example try: http://www.mitsucars.com/eclipse/exterior.mov
http://www.mitsucars.com/eclipse/images/2004/ecl/360_exterior_thumb.gif
http://www.mitsucars.com/eclipse/js/snifferobj.js
Javascript works but I can't get to them. How do you do this??
By typing the wrong URL... 
They use root relative URLs and you treated them as (ordinary) relative URLs. Try these instead. http://www.mitsucars.com/images/2004/ecl/360_exterior_thumb.gif http://www.mitsucars.com/js/snifferobj.js
They are guilty of having totally useless error pages though. 
(o< //\ =^..^=
|