Search found 1845 matches

by Marko
Feb 9th, ’25, 11:13
Forum: User Commands and Scripts
Topic: Curious if Fastkeys can do this...
Replies: 3
Views: 167

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...
by Marko
Feb 9th, ’25, 10:57
Forum: General Discussion
Topic: Gestures Problems and Questions
Replies: 3
Views: 152

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.
by Marko
Feb 8th, ’25, 18:57
Forum: Suggestions
Topic: Feature Request: Macro Timeout function
Replies: 1
Views: 102

Re: Feature Request: Macro Timeout function

For such situations you can use the Reload shortcut which can be defined in Preferences/General/Shortcuts.
by Marko
Feb 7th, ’25, 18:06
Forum: User Commands and Scripts
Topic: Insert another function after list
Replies: 2
Views: 141

Re: Insert another function after list

Some alternatives:
- Copy %INSERT_'cp% part to all alternative phrases
- Use Selection Form macro instead of multiple substitutes
by Marko
Feb 7th, ’25, 17:58
Forum: Suggestions
Topic: Brightness control with the mouse wheel
Replies: 2
Views: 108

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
by Marko
Feb 7th, ’25, 17:53
Forum: General Discussion
Topic: SEND MONTH FORMULA IN CAPITAL LETTERS
Replies: 2
Views: 138

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
by Marko
Feb 7th, ’25, 17:52
Forum: General Discussion
Topic: Gestures Problems and Questions
Replies: 3
Views: 152

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.
by Marko
Feb 5th, ’25, 13:43
Forum: General Discussion
Topic: mouse gestures for new / close tab
Replies: 9
Views: 682

Re: mouse gestures for new / close tab

Code: Select all

{Click}{Ctrl Down}w{Ctrl Up}
or Type: Command

Code: Select all

Send, {Click}
Send, {Ctrl Down}w{Ctrl Up}
by Marko
Jan 30th, ’25, 11:39
Forum: General Discussion
Topic: Priority of shortcuts
Replies: 1
Views: 301

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
by Marko
Jan 30th, ’25, 11:31
Forum: User Commands and Scripts
Topic: Sort Music Library
Replies: 1
Views: 399

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