Help with a code!

Super-Supra

(Banned)
4,111
Can some one tell me the code, that disables people from copying material? Like the code that doesn't allow you to right click on it. Like the flash thing. I'm sorry if I ask the question wrong, but I really need some help with that code.
 
i dunno the code off the top of my head but just goto a site that does that and then (this should work) goto view->source then look for a javascript thing (i think) that says somthing about rightclick.disable or something and there should be a bunch of code with it
 
Please note that it is incredibly simple for people to get around right click suppression. I'm not trying to scare you, just informing you of the malicious people out there. I'm sure there are people here that can help you completely protect your site.
 
Originally posted by the_cobbinator
Please note that it is incredibly simple for people to get around right click suppression. I'm not trying to scare you, just informing you of the malicious people out there. I'm sure there are people here that can help you completely protect your site.

I get through it most of the time by alternating left and right clicking.

Weird I know but it works.

But that code is just tacky looking, as long as you've got all your work watermarked, then people would be able to identify it even if it was stolen, which is very unlikely.
 
I usually find that if I don't want the visitor to see my source code, I write it server-side, so that the code that goes to the browser is fairly vanilla.

Image theft is harder to stop. I think that if you are using images for commercial means (i.e. gallery previews), you need to pretty much trash the image, which is hard, and can be a lot of work. I'm working on some PHP code that will overlay a watermark at browsing-time.

Ultimately though, the right-click trick cannot stop users from taking the data out of their cache.
 
Originally posted by the_cobbinator
Please note that it is incredibly simple for people to get around right click suppression. I'm not trying to scare you, just informing you of the malicious people out there. I'm sure there are people here that can help you completely protect your site.
All you have to do is disable Javascript or use a borwser that doesn't support Javascript (anything v4 and below should do the trick).
 
Or you can just go View > View Source and take the picture links from there.

I think the script is ugly, unless you make it not come up with an unco prompt box saying "This has been disabled lalalal". Make it simple disable right clicking, not make a prompt box come up as well.
 
Back