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.
Aniket_Ninawe
(Aniket Chandrakant Ninawe)
December 15, 2023, 4:34pm
2
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.
pikorpa
(Piotr Kołakowski)
December 17, 2023, 9:22am
4
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)]”
it works
1 Like
Parvathy
(PS Parvathy)
December 17, 2023, 11:11am
5
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)
Hope it helps!!
1 Like
Yoichi
(Yoichi)
December 17, 2023, 11:47am
6
Hi,
FYI, the following official document helps you.
The UiPath Documentation Portal - the home of all our valuable information. Find here everything you need to guide you in your automation journey in the UiPath ecosystem, from complex installation guides to quick tutorials, to practical business...
Regards,
1 Like