Page 1 of 1

Create a Shortcut - Hotkey like ALT + A

Posted: Oct 10th, ’24, 10:57
by Stoef69
Hello,

I would like to create a shortcut using a keyboard shortcut. When I press "tt", I want to execute ALT A. When I press "aa", I want to execute A+V.
I also want to do the same for three keys to be pressed at the same time, for example CTRL+SHIFT+V. How do I do this in fastkeys?
Thank you for your help.

Many Greetings

Re: Create a Shortcut - Hotkey like ALT + A

Posted: Oct 11th, ’24, 21:24
by Marko
For example, to simulate Alt+A:

Type: Send
{Alt Down}A{Alt Up}

Or Type: Command
Send, !A

Re: Create a Shortcut - Hotkey like ALT + A

Posted: Oct 13th, ’24, 17:02
by Stoef69
Thank you very much for your help. That's exactly how I tried it (Type: Send{Alt Down}A{Alt Up}), but it doesn't seem to work in Zoom as a keyboard shortcut. I wanted to use this to mute the audio signal.
What if I want to use three keys -like CTRL SHIFT V?
Thanks again for your help.

Re: Create a Shortcut - Hotkey like ALT + A

Posted: Oct 13th, ’24, 19:44
by Marko
Type: Send
{Ctrl Down}{Shift Down}V{Shift Up}{Ctrl Up}

Or try Type: Command
Send, ^!v

Re: Create a Shortcut - Hotkey like ALT + A

Posted: Oct 14th, ’24, 10:17
by Stoef69
That works fine. Thanks again For your help.