How to insert combination keys? Ex: Shift+F3

how to use hotkeys for “Shift+F3”? I’ve tried selecting shift form checkbox and adding ‘f3’ in the key box. But this is not working, could someone please guide

I have tried with both small & capital letter ‘f’

TOKEN:=OPERATION(SPECIAL_CHARS)
OPERATION:=k|d|u
SPECIAL_CHARS:=alt|lalt|ralt|shift|lshift|rshift|ctrl|lctrl|rctrl|lwin|rwin|ins|del|home|end|pgup|pgdn|enter|
left|right|up|down|tab|esc|back|pause|f1|f2|f3|f4|f5|f6|f7|f8|f9|f10|f11|f12|caps|num|add|
sub|mul|div|decimal|break|num0|num1|num2|num3|num4|num5|num6|num7|num8|num9|numenter|scroll|sleep
k:=synthesize a key down followed by a key up event for the specified key.
d:=synthesize a key down event for the specified SPECIAL_CHARS.
u:=synthesize a key up event for the specified SPECIAL_CHARS.
Example: text = “AbC[d(ctrl)]a[u(ctrl)k(alt)]”
This sample sequence outputs “AbC”, then holds down (d) the Ctrl key,
presses “a” and then releases Ctrl (u) and hits Alt (k = press and release).

4 Likes

above is the solution

how about holding ctrl and shift, then pressing end while on hold?
then press ctrl+c?

sorry, newbie here?

appreciate the help. Thank you very much in advance!!!