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.

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to