sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #51013
Re: [Question #679226]: Keyboard frozen after script run --- need to press ctrl-alt-c
Question #679226 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/679226
Status: Open => Answered
RaiMan proposed the following answer:
the only thing I can see, is that you are mixing the SikuliX AWT Robot
(type()) with your own Robot instance.
Not sure what that might do.
Why don't you use the SikuliX features like
type("r", Key.WIN)
instead of
robot.keyPress(KeyEvent.VK_WINDOWS);
robot.keyPress(KeyEvent.VK_R);
robot.keyRelease(KeyEvent.VK_WINDOWS);
robot.keyRelease(KeyEvent.VK_R);
BTW: 1.1.2 is no longer supported for such special cases.
Use 1.1.4 snapshot
--
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.