Page 1 of 1

Simple keystrokes

Posted: Sep 29th, ’24, 20:40
by margo16
Hi All,
I'm a new user trying this out for my work. I'm trying to automate simple keystrokes. Not a key combination, just a simple press.
Example:
- at first "Backspace", then "1", then "Y", and in the end "G"
And assign this sequence to the F5 key. How to do it in FastKeys?
Thanks.

Re: Simple keystrokes

Posted: Oct 1st, ’24, 18:46
by Marko
Use Shortcuts module and create a new shortcut, Type: Send. Set the shortcut to be F5.
Your key sequence would be
{Backspace}1YG

Check the following tutorial video:
Simulating keystrokes - Automate pressing keyboard keys

Re: Simple keystrokes

Posted: Oct 2nd, ’24, 18:55
by margo16
Thank you very much!
But maybe my system doesn't understand such a keystroke speed.
Is it possible to pause (in 1 second) temporarily before pressing each key?
Thanks.

Re: Simple keystrokes

Posted: Oct 3rd, ’24, 08:52
by Marko
Type: Send

Code: Select all

{Backspace}{1000}1{1000}Y{1000}G
or Type: Command

Code: Select all

Send, {Backspace}
Sleep, 1000
Send, 1
Sleep, 1000
Send, Y
Sleep, 1000
Send, G