How to send hotkey using type into in StudioX

Hey community,

I am creating automation for Outlook where I need to go from one sent mail to the next using the shortcut (ctrl+.) but the issue I am facing is that instead of moving to the next sent mail it is selecting all sent emails.

Any suggestions or help will be highly appreciated.

Best regards,
Muhammad Anas.
question

Hi @Muhammad_Anas_Baloch

Instead of using type into activity, you can make use of Keyboard shortcuts activity in StudioX.

Hey @Aniket_Ninawe, keyboard shortcuts do not support the ctrl command.

Hey,
try to use advanced editor for ‘type into’ activity and type expression:
for example: ctrl + s:
“[d(ctrl)]s[u(ctrl)]”

or for your example ctrl+.
“[d(ctrl)].[u(ctrl)]”

image

it works :slight_smile:

1 Like

Hi @Muhammad_Anas_Baloch

Try giving this by opening the Open the Advanced Operator and give the below

string.Format("{0}", "[k(ctrl)]+[k(s)] ".ToString)

image

Hope it helps!!

1 Like

Hi,

FYI, the following official document helps you.

Regards,

1 Like