Search found 1824 matches
- Jan 15th, ’25, 06:52
- Forum: General Discussion
- Topic: Free Version Limitations
- Replies: 2
- Views: 108
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: 140
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: 4
- Views: 113
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: 1457
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
}
- Dec 25th, ’24, 21:38
- Forum: General Discussion
- Topic: Can I have a dictionary for script command
- Replies: 4
- Views: 468
- Dec 25th, ’24, 07:55
- Forum: General Discussion
- Topic: Can I have a dictionary for script command
- Replies: 4
- Views: 468
Re: Can I have a dictionary for script command
Sorry, I’m nor sure I understand the question, could you rephrase?
- Dec 20th, ’24, 23:16
- Forum: General Discussion
- Topic: Folder Search in the Explorer
- Replies: 4
- Views: 513
Re: Folder Search in the Explorer
Sounds like Auto Complete module would be perfect for the job.
- Dec 19th, ’24, 22:59
- Forum: General Discussion
- Topic: Folder Search in the Explorer
- Replies: 4
- Views: 513
Re: Folder Search in the Explorer
Create a new Text expander item, Type: Run, and set the path to the folder into the command field.
https://fastkeysautomation.com/documentation5/Run.html
https://fastkeysautomation.com/documentation5/Run.html
- Dec 15th, ’24, 07:23
- Forum: User Commands and Scripts
- Topic: Trying to make this script is driving me crazy
- Replies: 3
- Views: 570
Re: Trying to make this script is driving me crazy
You are welcome!
- Dec 13th, ’24, 14:16
- Forum: User Commands and Scripts
- Topic: Trying to make this script is driving me crazy
- Replies: 3
- Views: 570
Re: Trying to make this script is driving me crazy
Type:Command
Or
Add short pauses in miliseconds to allow the software some time. You can experiment with the timings.
Code: Select all
Send, ^c
Sleep, 100
Send, ^r
Send, 100
Send, ^v
Send, {Tab}
Code: Select all
Send, ^c{100}^r{100}^v{Tab}