This content has been marked as final.
Show 2 replies
-
1. Re: Preventing users from capturing the screen
lite_As_AIR May 10, 2010 11:27 AM (in response to rob1717)use the clipboard class in AIR :
private function init():void { this.addEventListener(Event.ENTER_FRAME, onEnterFrame); } private function onEnterFrame(event:Event):void { Clipboard.generalClipboard.setData(ClipboardFormats.TEXT_FORMAT,"no print screen"); } -
2. Re: Preventing users from capturing the screen
rob1717 May 10, 2010 11:43 AM (in response to lite_As_AIR)Awsome, thanks.
