Lock PrintScreen function

0

I know the question is controversial, but I want to know if it really blocks the print screen function altogether. In Windows Forms you have to delete the clipboard with the clipboard.clear, but already in JavaScript this is not allowed for security reasons. So this really in both situations and platforms can not do, right?

    
asked by anonymous 05.11.2014 / 18:09

2 answers

1

You can not disable the screen grabbing from the web browser, it would only be possible by installing additional software on the user's PC.

There are some IRM (Information Rights Management) tools available that do this, such as securing Windows / DirectX API calls and also video memory monitoring, such as Oracle IRM or Microsoft IRM technology.

Especially the latter may be of interest as there is also an add-on to Rights Management for Internet Explorer.

But as others have said, any IRM / DRM technology controversies and you should understand that most of the time will limit or irritate your users.

Source:

link

    
04.03.2016 / 13:11
0

Would something like this not work?

$(document).keyup(function(e){
  if(e.keyCode == 44) return false;
});
    
05.11.2014 / 19:10