Welcome Guest ( Log In | Register )



2 Pages V   1 2 >  
Reply to this topicStart new topic
> How to Disable Print Screen?
Twiggy
post Mar 23 2006, 05:12 AM
Post #1


Newbie [ Level 2 ]
Group Icon

Group: Banned
Posts: 22
Joined: 24-January 06
Member No.: 10,862



I'm not sure if this is the right place for posting this, but I'll give it a shot anyway.
I have a problem with copycats. There are a lot of people who steal my and my friends stuff. Well I don't really care myself, but it really bothers some of my friends. They all disalbe right-clicking, however people still can copy their stuff using Print Screen, so I'm just interested, is there any script/code or anything that can disable print screen? Is it possible?
Thanks in advance.
Go to the top of the page
 
+Quote Post
Sarah81
post Mar 23 2006, 08:36 PM
Post #2


That really was a Hattori Honzo sword.
Group Icon

Group: Members
Posts: 473
Joined: 27-August 05
From: Texas, USA
Member No.: 8,126



You can Google "disable print screen" and come up with examples and discussions like these, but most Internet users will figure out how to get around disabling the "print screen" command.

Here are a few other things you can do to help deter thieves:

1. Watermark or otherwise mark your images using photo-editing software. Even just putting your URL on the photo will help deter thieves - and if they steal anyway, their visitors will notice your URL and might visit your site.

2. Get a blog and set security to "friends only." Use this forum for posting things that you really, really don't want other people to steal.

3. Post copyright notices for text and images. Put one in the HTML "comments" as well as one that users can see on each page of your site.

Go to the top of the page
 
+Quote Post
shiv
post Mar 23 2006, 09:27 PM
Post #3


Member [ Level 2 ]
Group Icon

Group: Members
Posts: 53
Joined: 20-March 06
Member No.: 12,139



QUOTE(Twiggy @ Mar 23 2006, 05:12 AM) *

I'm not sure if this is the right place for posting this, but I'll give it a shot anyway.
I have a problem with copycats. There are a lot of people who steal my and my friends stuff. Well I don't really care myself, but it really bothers some of my friends. They all disalbe right-clicking, however people still can copy their stuff using Print Screen, so I'm just interested, is there any script/code or anything that can disable print screen? Is it possible?
Thanks in advance.


you can use html guardian's image guardian feature. infact its the only option as far as i know.

you just need to check the 'Disable Clipboard & Print Screen' box. this will disable the visitor' clipboard...so making a copy of the image becomes impossible.

there are lot of other features u can check out in html guardian...believe me its total guardian.

best of all u can download it for free wink.gif


cheerz!

shiv
Go to the top of the page
 
+Quote Post
organicbmx
post Mar 23 2006, 09:45 PM
Post #4


Premium Member
Group Icon

Group: Members
Posts: 284
Joined: 2-June 05
From: Dorset, England
Member No.: 5,730



what kind of things are being stolen. with all my photographs i just make sure that the image size i use on all web images in nice an small to stop anyone getting a hig-res version of something. it's hard to claim something as yours if you have no master. thats my opinion anyway.

if it is a hig res important file make a restricted blog like sarah suggested. the software shiv suggested will be find as long as most people are browsing on i.e. because other browsers will be unafected.
Go to the top of the page
 
+Quote Post
Twiggy
post Mar 24 2006, 04:49 AM
Post #5


Newbie [ Level 2 ]
Group Icon

Group: Banned
Posts: 22
Joined: 24-January 06
Member No.: 10,862



Sarah81
Thank you! However I've already tried it all...and plus people steal not from the blogs but from the artfolio websites.

shiv Thanks, I guess I should try it.

organicbmx People steal ehmm....art? Well they still blends, collages, layouts etc. And usually people put their copyright on them, but still, they are a lot of ways of erasing the copyright and putting your own name on them. So I'm kinda confused, but as I said I really don't care if people steal what I do, cause if you publish smth in the Internet that 100% means that it will be stolen or just taken without your permission.
I could remake all my stuff and resize them, but people will find another many ways of using them, for example for making icons.
Uh, perhaps it's just human nature and all we have to do is just live with it.
Go to the top of the page
 
+Quote Post
organicbmx
post Mar 24 2006, 04:15 PM
Post #6


Premium Member
Group Icon

Group: Members
Posts: 284
Joined: 2-June 05
From: Dorset, England
Member No.: 5,730



i guess that if you made a sig and someone riped it off and claimed it as their own, file size wouldnt matter. sorry i must have been tired, i was thinking in terms of photographs or other digital print media not internet media. i.e. 300 dpi compared to 72 dpi.
Go to the top of the page
 
+Quote Post
Nehm4
post Mar 25 2006, 12:11 AM
Post #7


Newbie [ Level 2 ]
Group Icon

Group: Members
Posts: 13
Joined: 21-March 06
Member No.: 12,157



That would be a cool feature for the future safety of material. But I am kinda paranoid sometimes... tongue.gif
Go to the top of the page
 
+Quote Post
shadow-x
post Apr 4 2006, 08:03 PM
Post #8


Newbie [ Level 2 ]
Group Icon

Group: Members
Posts: 26
Joined: 4-April 06
Member No.: 12,473



Ahh I've been thinking of a script like this for a while so thanks for giving me a reason to find one biggrin.gif

Theoretically it could be possible to preload an image such as a full sceen plain black image and make sure it will fill the screen no matter where the scroll is at and then hide it. Then use javascript to detect the key press event of the print screen key and use this to fire an event to make the black image visible. it all works perfectly in my mind and I cant see any reason why it wouldnt work so long as javascript can hide the image and then show it easilly enough, which I havent tried myself. And it will work no mater what a persons bandwith is because the image is pre-loaded.

Another way it could be done to protect only the images, which is most likely the way I will try it, is to create every image as a rollover image and again use the keydown or keypress event in JS to make the images all rollover when the print screen key is pressed. Then the images would be safe. Anyway the code for detecting a keypress is this:

CODE

function doSomething(e)
{
    var code;
    if (!e) var e = window.event;
    if (e.keyCode) code = e.keyCode;
    else if (e.which) code = e.which;
    var character = String.fromCharCode(code);
    alert('Character was ' + character);
}


Source: http://www.quirksmode.org/js/events_properties.html#key

so by adding a small if statement to compare the key pressed and the value of the print screen key you can use this code to fire off another event to rollover the images or something like that. And if you dont like either of those methods you can just adapt that code to detect the print screen key anyway smile.gif if it works then let me know!
Go to the top of the page
 
+Quote Post
vhortex
post Apr 6 2006, 12:29 PM
Post #9


Guilty Until Proven Innocent
Group Icon

Group: Members
Posts: 372
Joined: 13-April 05
Member No.: 3,937



QUOTE(shadow-x @ Apr 5 2006, 04:03 AM) *

Ahh I've been thinking of a script like this for a while so thanks for giving me a reason to find one biggrin.gif



guess that if it involves browsers, there are hundreds of ways to deactivate that script anyway and there are image capture tools that have timers.

Just a small tip, better put water mark in you photos/arts.. much more efficient since the time consumed in removing the watermark compare to the gain is way to much high and not practical.
Go to the top of the page
 
+Quote Post
CaptainRon
post Jun 6 2006, 08:50 PM
Post #10


Premium Member
Group Icon

Group: Members
Posts: 238
Joined: 9-September 05
Member No.: 8,400



well i used a method to do it... but i dont know how many will be willing to try it.
see, simply convert ur jpg images to wmv videos that stream across network. load windows media player on webbrowser to load the media. now printscreen will behave pretty awkward... u can try to print screen a movie playing in media player and see what happens when u paste it else where.

u can use Jasc Animation Shop to convert images into various types of videos.

and with right click disabled, a better way is to drag and select the image, and press Ctrl+C instead, and the image would then be copied. u cud also press ctrl+A to select all and then ctrl+V in another application, and filter out the image u need.
Go to the top of the page
 
+Quote Post

2 Pages V   1 2 >
Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Getting Screen Resolution using Javascript.(8)
  2. Javascript: Disable Mouse Right-click In Browser(16)
  3. Disable Display Properties Tabs(2)
  4. Disable Or Limit Access To The Control Panel(8)
  5. Disable Recent Docs History In Windows(2)
  6. Windows Media Player Plays All Video In Full Screen(11)
  7. Blue Screen - irql_not_less_or_equal(29)
  8. Print To Preview(2)
  9. Window Logon Screen(5)
  10. How To Add Administrator Account In Logon Screen(3)
  11. Disable Task Manager 1 Line Code![vb6](32)
  12. Customizing The Appearance Of Cleartype Screen Font Smoothing(0)
  13. Disable Crash Recovery Restore Session Option On Firefox 2(2)
  14. Need A Javascript To Enable / Disable Buttons(1)
  15. Disable Ads Using A Single Line Of Text(9)
  1. Recommendations For Freeware Screen Capture Video Software?(5)
  2. How To Change Language At Login Screen(7)
  3. Auto Screen Position Changing Possible?(5)
  4. Digital Painting Of A Tree Using Gimp(7)
  5. Digital Painting Of Flying Boat In Gimp(0)
  6. How To Disable Safe Mode In Direct Admin.(1)
  7. Laptop Screen Saver Problem(2)
  8. How To Disable The Enter Key Of An Input Text Box(6)
  9. Disable Scan And Repair In Vista(0)
  10. Soundtrack Back To Avi With Black Screen(1)
  11. Screen Shots(8)
  12. Re-ordering Welcome Screen & Moving Heavily Fragmented File(1)
  13. Lcd Screen(5)


 



- Lo-Fi Version Time is now: 9th July 2008 - 04:48 AM