On Windows, The PrintScreen key doesn't generate a KeyDown event at all, so you can't call Keyboard.asyncKeyDown then to test for PrintScreen.
On 1/21/07, Tom Benson <[EMAIL PROTECTED]> wrote:
FWIW you can detect individual function key presses by testing keyboard.asynckeydown in KeyDown events, and you could probably extend this to test for the print screen key, which I believe is F16 (?) on windows. Therefore if you put this in your keydown event it should capture it > if Keyboard.asyncKeyDown(106) then > //F16 - (print screen) was pressed > return true > end - Tom
_______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
