How to open run window : type("R", KeyModifier.WINDOWS) is not working

Asked by thomas

type("R", KeyModifier.WINDOWS)

is not working

Question information

Language:
English Edit question
Status:
Solved
For:
SikuliX Edit question
Assignee:
No assignee Edit question
Solved by:
RaiMan
Solved:
Last query:
Last reply:
Revision history for this message
Best RaiMan (raimund-hocke) said :
#1

might be a typo - should be:

type("R", KeyModifier.WIN)

and to open the run window it must be:

type("r", KeyModifier.WIN)

with the lower case letter.

Your version would make shift-win-r, which does nothing.

Revision history for this message
thomas (ramitdas2009) said :
#2

Thanks RaiMan, that solved my question.