vote up 0 vote down star

I'm making user definable key macros to a program. (Those macros are limited to that program.)

I'm using TApplicationEvents to record key messages. And then use SendInput to play them back. But I need to disable mouse and keyboard so it wouldn't interrupt playback.

I can't use JournalPlaybackProc and JournalRecordProc because they are subject to UAC, UIPI in Vista and Win7.

Is there a easy way to block mouse and keyboard input while still using SendInput. (A way that doesn't need heightened privileges.)

Also I need one escape key that stops playback.

EDIT: TControl.Perform didn't work because it ignores hotkeys.

I thought of using reserved nibble (bits 25-28) in WM_KEY messages, but in the windows documentation it says it's reserved and do not use. What could be the consequences.

flag

80% accept rate

2 Answers

vote up 3 vote down

If you want the 'artificial input' to be limited to your own application, I wouldn't use SendInput. If you use TApplicationEvents.OnMessage to record messages, I would add a 'if not(PlayingBack) then' check in the OnMessage when playing back a macro and use Form1.Perform

link|flag
This is a nice idea. But that has one problem - it doesn't span multiple forms. Ex. If an button opens a new form and then it does something in that new form. I'm thinking, maybe it's somehow possible to get the active form and then redirect the input there. – egon Nov 27 at 22:35
I think I found the additional thing I need Screen.ActiveForm... (I'll test tomorrow...) – egon Nov 27 at 22:39
ok almost, but this doesn't play nice with hotkeys... – egon Nov 28 at 21:48
What do you understand under hotkeys? – Stijn Sanders Nov 29 at 20:30
About Screen.ActiveForm, you should also have a look at the FindControl function defined in the Controls unit, you should be able to use it from the OnMessage event handler. – Stijn Sanders Nov 29 at 20:35
show 1 more comment
vote up 0 vote down

I have always used AutoIT's DLL for sending KeyStrokes as well as Blocking Keyboard and Mouse.

There is one thing and that is AutoIT can't block Ctrl+Alt+Del keys.

Do check it out.

HTH

link|flag
That's a very interesting link. Thanks! – robsoft Nov 29 at 17:15

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.