Special characters must be enclosed in braces, like this:
{{}, {}}, {#}
Search found 1860 matches
- Jan 28th, ’25, 14:08
- Forum: Suggestions
- Topic: if-else-condition don't work with Smarty Vars
- Replies: 4
- Views: 1234
- Jan 28th, ’25, 10:49
- Forum: Suggestions
- Topic: if-else-condition don't work with Smarty Vars
- Replies: 4
- Views: 1234
Re: if-else-condition don't work with Smarty Vars
How is the condition defined?
- Jan 25th, ’25, 10:21
- Forum: Announcements
- Topic: Limited time offer - Upgrade to FastKeys 6
- Replies: 2
- Views: 955
Limited time offer - Upgrade to FastKeys 6
We have released a new major version 6.0 release with many new powerful features and enhancements. FastKeys 6.0 is a separate release and can be installed separately from the old version. This is not a free upgrade, however, we offer a 40% upgrade discount to our registered users of Personal and Pro...
- Jan 25th, ’25, 09:59
- Forum: Announcements
- Topic: FastKeys 6.0 Released
- Replies: 7
- Views: 2911
FastKeys 6.0 Released
This is a new major version 6.0 release with many new powerful features and enhancements. Please note that this is a separate release and not a free upgrade. Existing users can continue using version 5 which is still fully supported. We offer a 40% upgrade discount for registered users for a 2 month...
- Jan 20th, ’25, 22:56
- Forum: General Discussion
- Topic: mouse gestures for new / close tab
- Replies: 9
- Views: 2091
Re: mouse gestures for new / close tab
If your mouse is hovering over the tab, first send a mouse click {Click} to open it and then continue with other commands.
- Jan 20th, ’25, 22:52
- Forum: General Discussion
- Topic: restore backup
- Replies: 1
- Views: 732
Re: restore backup
First check Preferences/General/Folders - is the the backup files folder set correctly?
After selecting File/Restore backup, select the file name from the dropdown list first to show available backups.
After selecting File/Restore backup, select the file name from the dropdown list first to show available backups.
- Jan 15th, ’25, 06:52
- Forum: General Discussion
- Topic: Free Version Limitations
- Replies: 2
- Views: 709
Re: Free Version Limitations
It’s a 15 day trial - there are no limitations and you can test all the features to see how it works for you.
- Jan 13th, ’25, 18:25
- Forum: Suggestions
- Topic: Bad date
- Replies: 1
- Views: 656
Re: Bad date
It works as expected at my end. How is the date format defined?
- Jan 13th, ’25, 16:13
- Forum: General Discussion
- Topic: mouse gestures for new / close tab
- Replies: 9
- Views: 2091
Re: mouse gestures for new / close tab
For this to work you need to enable the option to enable modifiers (special characters) in Preferences/Text Expander.
Alternatively you can use
{Ctrl Down}t{Ctrl Up}
Alternatively you can use
{Ctrl Down}t{Ctrl Up}
- Jan 6th, ’25, 18:00
- Forum: General Discussion
- Topic: Closing of a specific AHK script (can get it to work in AHK 1.1.37.01)
- Replies: 5
- Views: 2322
Re: Closing of a specific AHK script (can get it to work in AHK 1.1.37.01)
How about this?
Code: Select all
name:="test.ahk"
DetectHiddenWindows On
SetTitleMatchMode RegEx
IfWinExist, i)%Name%.* ahk_class AutoHotkey
{
WinClose
WinWaitClose, i)%Name%.* ahk_class AutoHotkey, , 2
}