Search found 13 matches

by M_L
23 Apr 2019, 00:30
Forum: Ask for Help (v1)
Topic: Block keys auto repeat input until release.
Replies: 1
Views: 817

Block keys auto repeat input until release.

I can't find a way to solve this issue: Releasing the modifier key before the alphanumerial key leads to its input, produced by auto repeat, to pass through. So whenever I release the keys in the wrong order I get false input. This hotkey ~RButton & w:: LongPressCommand("w", ^l, ^f) calls this funct...
by M_L
18 Apr 2019, 02:39
Forum: Ask for Help (v1)
Topic: A_PriorKey misses input of other script
Replies: 3
Views: 1583

Re: A_PriorKey misses input of other script

Thanks for replying and sorry for not answering (missed the notification?).
Both you tips helped me and so finally I do understand.
by M_L
13 Jan 2019, 03:50
Forum: Scripts and Functions (v1)
Topic: AutoHotInterception (AHI): Multi-Keyboard / Multi-Mouse support for AHK. Per-device blocking!
Replies: 345
Views: 199405

Re: AutoHotInterception (AHI): Multi-Keyboard / Multi-Mouse support for AHK. Per-device blocking!

Could be. I just repeat what's written in the install-interception cmd. There it says you need to restart. But anyway, not knowing could make people wonder why it's not working.
by M_L
10 Jan 2019, 05:15
Forum: Ask for Help (v1)
Topic: A_PriorKey misses input of other script
Replies: 3
Views: 1583

A_PriorKey misses input of other script

If sending a key in script_B, then ´A_PriorKey` in script_A does not recognize it.
Is that normal or a bug?
by M_L
09 Jan 2019, 08:20
Forum: Ask for Help (v1)
Topic: [dual monitor] move mouse cursor to the center of active window
Replies: 3
Views: 4208

Re: [dual monitor] move mouse cursor to the center of active window

Here you go @Henrryparth CenterMouseOnActiveWindow: Sleep 50 CoordMode,Mouse,Screen WinGetPos, winTopL_x, winTopL_y, width, height, A winCenter_x := winTopL_x + width/2 winCenter_y := winTopL_y + height/2 ;MouseMove, X, Y, 0 ; does not work with multi-monitor DllCall("SetCursorPos", int, winCenter_x...
by M_L
07 Jan 2019, 08:20
Forum: Scripts and Functions (v1)
Topic: AutoHotInterception (AHI): Multi-Keyboard / Multi-Mouse support for AHK. Per-device blocking!
Replies: 345
Views: 199405

Re: AutoHotInterception (AHI): Multi-Keyboard / Multi-Mouse support for AHK. Per-device blocking!

@EvilC concerning the issue with the blank/empty Monitor. You need to restart after installing Interception. It says so in the install-interception cmd. You might wanna add a reminder to the doc.
by M_L
12 Dec 2018, 06:42
Forum: Scripts and Functions (v1)
Topic: Lenovo Trackpad Configuration
Replies: 8
Views: 3844

Re: Lenovo Trackpad Configuration

@guest3456 Both Shifts are in a bad place. Kills ergonomics: esp. wrist, hand and pinky finger posture. Especially on notebooks you bend arm inwards, but for shift you have to move/bend outwards, which creates lots of movement and/or pain in the long wrong. My trick: put Shift on Space or Alt. Shift...
by M_L
12 Dec 2018, 06:25
Forum: Ask for Help (v1)
Topic: How could I control the MIDDLE BUTTON for thinkpad? Topic is solved
Replies: 4
Views: 3480

Re: How could I control the MIDDLE BUTTON for thinkpad? Topic is solved

Anyone knows the scancode (scXX) of the trackpad middle button, in case it has one? If it doesn't: how else could you use this button in an ahk script?
by M_L
05 Nov 2018, 13:31
Forum: Ask for Help (v1)
Topic: KeyWait unresponsive / delayed
Replies: 3
Views: 1002

Re: KeyWait unresponsive / delayed

Thanks, your code is fine. My problem is that KeyWait delays the SendInput so much that the letter q gets sends after the next letter I type. E.g. question would become uqestion. I know where this problem stems from: from the fact that KeyWait waits until the key is realized and just after that send...
by M_L
05 Nov 2018, 03:45
Forum: Ask for Help (v1)
Topic: KeyWait unresponsive / delayed
Replies: 3
Views: 1002

KeyWait unresponsive / delayed

Namaste @all, I use KeyWait to detect long key presses. Problem is: if I don't do a long press, hence press and release it quickly, it stills delays the processing. I would expect that on release it instantly sends my commands, without any delay whatsoever. The result is that the characters I type a...
by M_L
28 Apr 2017, 08:19
Forum: Ask for Help (v1)
Topic: Alt-Key Hotkey Terror
Replies: 0
Views: 413

Alt-Key Hotkey Terror

Any idea why that Hotkey does not work on my Win10 system with german keyboard layout? !2:: !3:: Loop{ ModKey := A_ThisHotkey SendInput {LCtrl Down}{LWin Down} IF(ModKey="2") SendInput {Left} ELSE IF(ModKey="3") SendInput {Right} IF (!GetKeyState("Alt", "P")){ ;MsgBox "out" SendInput {LCtrl Up}{LWin...
by M_L
24 Apr 2017, 02:51
Forum: Ask for Help (v1)
Topic: Emulated key as Hotkey for other functions
Replies: 0
Views: 403

Emulated key as Hotkey for other functions

Hello @all, I mapped capslock to ctrl and have some scripts that are triggered with a Ctrl+*SomeCharacterKey* Combination. Sadly the emulated ctrl key does not trigger those functions, while the real ctrl key still does. What can I do that the emulated ctrl key also triggers those functions? Capsloc...

Go to advanced search