Hi,
This is still an issue in 5.14.
Has someone found a workaround?
Search found 7 matches
- Feb 3rd, ’24, 19:00
- Forum: General Discussion
- Topic: Hotkey only active in Window Title [5.10]
- Replies: 8
- Views: 4769
- Aug 21st, ’23, 15:43
- Forum: General Discussion
- Topic: Hotkey only active in Window Title [5.10]
- Replies: 8
- Views: 4769
Re: Hotkey only active in Window Title [5.10]
Thank you! Good to know. 
- Aug 18th, ’23, 23:20
- Forum: General Discussion
- Topic: Hotkey only active in Window Title [5.10]
- Replies: 8
- Views: 4769
Re: Hotkey only active in Window Title [5.10]
This is still an issue in 5.12
It would be nice if it got fixed.
Thanks.
It would be nice if it got fixed.
Thanks.
- Jun 6th, ’23, 15:12
- Forum: General Discussion
- Topic: Using the 'Space' keystroke as the selection key doesn't work.
- Replies: 1
- Views: 3901
Using the 'Space' keystroke as the selection key doesn't work.
Using the 'Space' keystroke as the selection key doesn't work. I have it checked it in the options, but it types space instead of selecting.
What can be the problem?
Please help.
What can be the problem?
Please help.
- Jun 6th, ’23, 13:51
- Forum: General Discussion
- Topic: Can't make my script work ONLY in a specific window
- Replies: 2
- Views: 4786
Re: Can't make my script work ONLY in a specific window
Thank you! That worked.
- Jun 5th, ’23, 23:51
- Forum: General Discussion
- Topic: Can't make my script work ONLY in a specific window
- Replies: 2
- Views: 4786
Can't make my script work ONLY in a specific window
I'm trying to make Fastkeys insert two Enter when I hit enter once and one Enter on Shift+Enter, only when typing in the Obsidian app. Unfortunately, it does it in all apps, regardless of the code I use. Here are two examples: #IfWinActive ahk_exe Obsidian.exe ::Enter:: Send {Enter 2} return ::^Ente...
- Feb 20th, ’23, 21:11
- Forum: User Commands and Scripts
- Topic: Loop Macro
- Replies: 3
- Views: 10525
Loop Macro
Hi,
I'm trying to loop a macro and it works well, but I can't make it stop by pressing escape.
Please help,
tnx
I'm trying to loop a macro and it works well, but I can't make it stop by pressing escape.
Code: Select all
Loop, 3
{
CoordMode, Mouse, Screen
Sleep, 1203
MouseMove, 1644, 938
Send, {LButton}
}tnx
