我想写一个短语来运行Autokey脚本一段预定的周期。最好是使用切换键,但现在也可以使用开始键“ x”和停止键“ y”。
我从自动点击开始,因为稍后可以插入最终说明。有时在游戏中使用自动点击器会很方便,在没有UI的游戏中,最好使用一次但两次单击按钮十到20次。
我已经制作了要调用的脚本,并以预定的周期数运行它。我已经阅读了AutoKey的api参考,并看到所需的所有元素都可用。
phrase-file:
if not store.has_key("active"):
store.set_value("active",0)
while active =1
<autoclick-script= args=>
script-file:
mouse.click_relative_self(0,0,1)
time.wait(0.2)
我希望获得类似于以下结构的工作脚本:
bool active(bool,0);
wait for input 'ü' ;
if 'ü' pressed set active to true/1 ;
while active is true run script();
wait(x) runloop();
wait for input while true;
set active to false/0 ;