How to use Shift & Down Key Together

jassi_123

Member
Hello Team,

I have an application where I have to use Shift & Down Arrow key together.

So can someone tell me Global Send Key events which I have to use to fulfil this requirement.

Regards,
(Jaspreet Singh)
 

Sukesh Kumaru

Active Member
Hello Team,

I have an application where I have to use Shift & Down Arrow key together.

So can someone tell me Global Send Key events which I have to use to fulfil this requirement.

Regards,
(Jaspreet Singh)
Hi Jassi,

For shift use + and for Down Arrow use "DOWN"

finally use this syntax : "<+{DOWN}>{DOWN}"

Hope you got the answer.
 

Mwacuka

New Member
Hi all, I am facing issues with passing the following key combination to an application: Shift + F4.

I have used this value "+{F4}" as the text input to the global send keys in navigate action (see Navigate state.png), but get the error.-"Input string was not in a correct format". (see Error.png)

Would someone be able to point out what the issue is?

Thank you
 

Attachments

  • Error.png
    6.9 KB · Views: 17
  • Navigate stage.png
    31.5 KB · Views: 14

Sukesh Kumaru

Active Member
This may help you...
To specify that any combination of SHIFT, CTRL, and ALT should be held down while several other keys are pressed, enclose the code for those keys in parentheses. For example, to specify to hold down SHIFT while E and C are pressed, use "+(EC)". To specify to hold down SHIFT while E is pressed, followed by C without SHIFT, use "+EC".
 
Top