More than one Shortcut
Hi,
Is it possible more than one shortcut hotkey.
Because I have the same shortcut hotkey for different active windows.
It pops up the duplicate entry when saving.
Cheers,
Vincent
Is it possible more than one shortcut hotkey.
Because I have the same shortcut hotkey for different active windows.
It pops up the duplicate entry when saving.
Cheers,
Vincent
Hi,
Yes it's possible if you target shortcut to certain window:
In Shortcuts, click More Options and then add windows title in Window
When you activate the target window, the shortcut of this window is set to first.
Yes it's possible if you target shortcut to certain window:
In Shortcuts, click More Options and then add windows title in Window
When you activate the target window, the shortcut of this window is set to first.
Thanks for the tips. How to set for the multi-windows? I have tried , ; | and all cannot work.
Hi,
PS. I often made mistakes at the beginning by forgetting what is written in the help "This setting overrules the Only active in/Not active options set in the Preferences"
You should also close the configuration window so that the program reloads the changes. (you should see the progress bar briefly)
- A window title name can be partial (i.e: word mean MsWord, Document 1 - MsWord)
Use tool to identify window title (https://www.fastkeysautomation.com/docu ... ation.html) - comma ( , ) is the delimiter (no spaces)
PS. I often made mistakes at the beginning by forgetting what is written in the help "This setting overrules the Only active in/Not active options set in the Preferences"
You should also close the configuration window so that the program reloads the changes. (you should see the progress bar briefly)
I noticed that the active window is not stable. Sometimes, the shortcut cannot detect the active windows.
I have opened the fast key and save it again.
However, I don't have this problem by using the autohotkey script directly.
I'm using the latest version (portable and desktop) both have the same problem.
Is that any way to optimize it?
I have opened the fast key and save it again.
However, I don't have this problem by using the autohotkey script directly.
I'm using the latest version (portable and desktop) both have the same problem.
Is that any way to optimize it?
Can you please give me an example?
Sorry for the late reply. Here's my setup, I have tried to close the browser tab by "Alt + F4". By default, it kills the browser and closes everything.
Occasionally, it will close the browser instead of the browser tab.
Then, I tried to apply the "process" name instead of "class" name but same problem.
Previously, I use the same setup for autohotkey without any problems.
Can you post your working AutoHotkey script you want to replicate?
Hi Marko,
Sure, sorry for the late reply.
This is the code for autohotkey. Currently, I have deactivated the shortcut function on FastKeys due to inconsistency.
```
WinActive("ahk_class" Chrome_WidgetWin)
!F4::
Send {LCtrl down}w{LCtrl up}
return
```