← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #689020]: Checking shortcut keys for opening a tool window

 

Question #689020 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/689020

    Status: Open => Answered

RaiMan proposed the following answer:
Key.CAPS_LOCK cannot be "typed"

 type(Key.ALT+"m"+"a")
is not valid either

 type("ma", Key.ALT)

or even

 keyDown(Key.ALT)
 type("ma")
KeyUp()

If you wanted uppercase m and a:

 keyDown(Key.ALT)
 type("MA")
 KeyUp()

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.