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
Create a Shortcut - Hotkey like ALT + A
For example, to simulate Alt+A:
Type: Send
{Alt Down}A{Alt Up}
Or Type: Command
Send, !A
Type: Send
{Alt Down}A{Alt Up}
Or Type: Command
Send, !A
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.
What if I want to use three keys -like CTRL SHIFT V?
Thanks again for your help.
Type: Send
{Ctrl Down}{Shift Down}V{Shift Up}{Ctrl Up}
Or try Type: Command
Send, ^!v
{Ctrl Down}{Shift Down}V{Shift Up}{Ctrl Up}
Or try Type: Command
Send, ^!v
