sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #59555
Re: [Question #817924]: Changing language using sikuli
Question #817924 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/817924
jhonleoo posted a new comment:
In Sikuli, the keyDown and keyUp functions work for individual keys, but
combining them like Key.ALT + Key.SHIFT doesn’t function as expected. To
switch language using ALT + SHIFT on Linux, try pressing the keys
sequentially:
python
Copy code
keyDown(Key.ALT)
keyDown(Key.SHIFT)
keyUp(Key.SHIFT)
keyUp(Key.ALT)
This ensures both keys are properly triggered in sequence. If it still doesn’t work, verify your keyboard layout switcher settings on Debian to confirm ALT + SHIFT is the correct combination.https://gulfitscrap.com/Home/scrap_services
--
You received this question notification because your team Sikuli Drivers
is an answer contact for SikuliX.