Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过下面的 SikuliX 1.1.0脚本打开上一个屏幕,但它没有按需要工作,似乎它跳过了以下指令:
KeyDown(Key.ALT) type(Key.TAB) keyUp()
请指导是否有人找到解决方案;)
如果要按 ALT + TAB,可以使用下一个命令:
type("\t", KeyModifier.ALT)
在这里,您会找到与您的问题类似的答案。也适用于其他键修饰符。