Search found 1845 matches
- Feb 9th, ’25, 11:13
- Forum: User Commands and Scripts
- Topic: Curious if Fastkeys can do this...
- Replies: 2
- Views: 56
Re: Curious if Fastkeys can do this...
This code will replace all instances of the word in the selected text with one of the random choices. Create a shortcut, Type: Command Word:="Goodbye" List:= ["So long", "Fare well", "Bye bye"] send, ^c sleep 100 text:=clipboard while InStr(text, word) { Rando...
- Feb 9th, ’25, 10:57
- Forum: General Discussion
- Topic: Gestures Problems and Questions
- Replies: 3
- Views: 67
Re: Gestures Problems and Questions
RButton should work, you need to press and hold the right mouse button and make a gesture.
Also, gestures only work when the FastKeys window is closed.
Also, gestures only work when the FastKeys window is closed.
- Feb 8th, ’25, 18:57
- Forum: Suggestions
- Topic: Feature Request: Macro Timeout function
- Replies: 1
- Views: 47
Re: Feature Request: Macro Timeout function
For such situations you can use the Reload shortcut which can be defined in Preferences/General/Shortcuts.
- Feb 7th, ’25, 18:06
- Forum: User Commands and Scripts
- Topic: Insert another function after list
- Replies: 2
- Views: 71
Re: Insert another function after list
Some alternatives:
- Copy %INSERT_'cp% part to all alternative phrases
- Use Selection Form macro instead of multiple substitutes
- Copy %INSERT_'cp% part to all alternative phrases
- Use Selection Form macro instead of multiple substitutes
- Feb 7th, ’25, 17:58
- Forum: Suggestions
- Topic: Brightness control with the mouse wheel
- Replies: 2
- Views: 60
Re: Brightness control with the mouse wheel
Search the Library - there are Brightness Up/Down commands available and you can trigger them with any shortcut. For example you could use
Ctrl + WheelUp - Brightness Up
Ctrl + WheelDown - Brightness Down
Ctrl + WheelUp - Brightness Up
Ctrl + WheelDown - Brightness Down
- Feb 7th, ’25, 17:53
- Forum: General Discussion
- Topic: SEND MONTH FORMULA IN CAPITAL LETTERS
- Replies: 2
- Views: 64
Re: SEND MONTH FORMULA IN CAPITAL LETTERS
You could enable "No output" option and then use Insert command code macro instead:
Code: Select all
stringupper, DATETIME_Mese_prec, DATETIME_Mese_prec
Send, % DATETIME_Mese_prec
- Feb 7th, ’25, 17:52
- Forum: General Discussion
- Topic: Gestures Problems and Questions
- Replies: 3
- Views: 67
Re: Gestures Problems and Questions
Difficult so say, first try to reset the Preferences/Gestures to defaults.
There is no need to use a modifier, simply change Gestures shortcut to RButton.
There is no need to use a modifier, simply change Gestures shortcut to RButton.
- Feb 5th, ’25, 13:43
- Forum: General Discussion
- Topic: mouse gestures for new / close tab
- Replies: 9
- Views: 595
Re: mouse gestures for new / close tab
Code: Select all
{Click}{Ctrl Down}w{Ctrl Up}
Code: Select all
Send, {Click}
Send, {Ctrl Down}w{Ctrl Up}
- Jan 30th, ’25, 11:39
- Forum: General Discussion
- Topic: Priority of shortcuts
- Replies: 1
- Views: 257
Re: Priority of shortcuts
FastKeys normally overrides other shortcuts. If you find later on other program has a useful function assigned to the same shortcut, simply change it or remove it
- Jan 30th, ’25, 11:31
- Forum: User Commands and Scripts
- Topic: Sort Music Library
- Replies: 1
- Views: 344
Re: Sort Music Library
You would need an AutoHotkey script for this. Few ideas:
Creating a folder
https://www.autohotkey.com/docs/v1/lib/ ... ateDir.htm
Copy files
https://www.autohotkey.com/docs/v1/lib/FileCopy.htm
Creating a folder
https://www.autohotkey.com/docs/v1/lib/ ... ateDir.htm
Copy files
https://www.autohotkey.com/docs/v1/lib/FileCopy.htm