不能
不能 最多2个
请问按键盒子要怎么写
a = WaitKey //等待用户按键,得到按键码。
让后你在通过后台进行多窗口同步!
简单列子:
Do
a = WaitKey
Call Plugin.Bkgnd.KeyPress(窗口句柄A, a)
//↑↑↑↑↑↑↑↑↑后台按键,需要两个参数:
//↑↑↑↑↑↑↑↑↑参数1:窗口句柄。
//↑↑↑↑↑↑↑↑↑参数2:按键码。
Call Plugin.Bkgnd.KeyPress(窗口句柄B, a)
Call Plugin.Bkgnd.KeyPress(窗口句柄C, a)
Call Plugin.Bkgnd.KeyPress(窗口句柄D, a)
Call Plugin.Bkgnd.KeyPress(窗口句柄E, a)
//后边还可以加。
Loop
鼠标部分就比较复杂,需要大漠绑定窗口才能实现。