jaehyunb Posted September 14, 2005 Share Posted September 14, 2005 (edited) sddf Edited September 15, 2005 by jaehyunb Link to comment Share on other sites More sharing options...
BigDod Posted September 14, 2005 Share Posted September 14, 2005 how do i disable printscreen button while autoit script is runningi would also like to know how to do that in autoit 2.xx as well<{POST_SNAPBACK}>Have a look at this thread to see if it helps you. I can do no more as I do not understand the script I just found it by searching. Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother Link to comment Share on other sites More sharing options...
seandisanti Posted September 14, 2005 Share Posted September 14, 2005 how do i disable printscreen button while autoit script is runningi would also like to know how to do that in autoit 2.xx as well<{POST_SNAPBACK}>i'm not sure about disabling the print screen key itself, but if your intent is to kill the screenshot capability, you could make a script that puts an empty string into the clipboard when the key is pressed...one sec i'll write something up real quick and test it... Link to comment Share on other sites More sharing options...
seandisanti Posted September 14, 2005 Share Posted September 14, 2005 i'm not sure about disabling the print screen key itself, but if your intent is to kill the screenshot capability, you could make a script that puts an empty string into the clipboard when the key is pressed...one sec i'll write something up real quick and test it...<{POST_SNAPBACK}>here ya go:#include<ispressed.au3> while 1 if _IsPressed("2c") Then ClipPut("") MsgBox(0,"oops","print screen is disabled") EndIf sleep(100) WEnd Link to comment Share on other sites More sharing options...
w0uter Posted September 14, 2005 Share Posted September 14, 2005 screenshots aint saved in the text clipboard. My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll Link to comment Share on other sites More sharing options...
seandisanti Posted September 14, 2005 Share Posted September 14, 2005 screenshots aint saved in the text clipboard.<{POST_SNAPBACK}>it still disabled it on my system... did it not work on yours, or were you just giving advice? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now