AutoHotkey:无法关闭此脚本的先前实例。继续等待?

时间:2019-07-11 06:19:32

标签: autohotkey

我有一个AutoHotkey脚本,当我再次尝试运行它时会出现以下错误:

public class OnSwipeTouchListener implements OnTouchListener {

private final GestureDetector gestureDetector;

public OnSwipeTouchListener(Context ctx) {
    gestureDetector = new GestureDetector(ctx, new GestureListener());
}

@Override
public boolean onTouch(View v, MotionEvent event) {
    return gestureDetector.onTouchEvent(event);
}

private final class GestureListener extends SimpleOnGestureListener {

    private static final int SWIPE_THRESHOLD = 100;
    private static final int SWIPE_VELOCITY_THRESHOLD = 100;

    @Override
    public boolean onDown(MotionEvent e) {
        return true;
    }

    @Override
    public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
        boolean result = false;
        try {
            float diffY = e2.getY() - e1.getY();
            float diffX = e2.getX() - e1.getX();
            if (Math.abs(diffX) > Math.abs(diffY)) {
                if (Math.abs(diffX) > SWIPE_THRESHOLD && Math.abs(velocityX) > SWIPE_VELOCITY_THRESHOLD) {
                    if (diffX > 0) {
                        onSwipeRight();
                    } else {
                        onSwipeLeft();
                    }
                    result = true;
                }
            } else if (Math.abs(diffY) > SWIPE_THRESHOLD && Math.abs(velocityY) > SWIPE_VELOCITY_THRESHOLD) {
                if (diffY > 0) {
                    onSwipeBottom();
                } else {
                    onSwipeTop();
                }
                result = true;
            }
        } catch (Exception exception) {
            exception.printStackTrace();
        }
        return result;
    }
}

public void onSwipeRight() {
}

public void onSwipeLeft() {
}

public void onSwipeTop() {
}

public void onSwipeBottom() {
}

这是一个非常简单的脚本,具有以下设置:

Could not close the previous instance of this script. Keep waiting?

我正在从命令行启动脚本。我尝试使用#NoEnv #SingleInstance force SendMode Input DetectHiddenWindows, on SetWinDelay, -1 / /f选项,但没有效果。

我想要文档中描述的/force行为,描述为:

  

跳过该对话框并自动替换旧实例,其作用与Reload命令类似。

1 个答案:

答案 0 :(得分:2)

原来的问题是#SingleInstance Force指令。

从文档中

  

尽管允许延迟为-1(完全没有延迟),但建议至少使用0,以增加即使在CPU负载下脚本也可以正确运行的信心。

     

延迟为0会在内部执行Sleep(0),这会将脚本的时间片的其余部分提供给可能需要它的任何其他进程。如果不存在,则Sleep(0)根本不会休眠。

当我将其设置为SetWinDelay时,该脚本再也没有时间处理其他命令,包括发送给它的退出命令。

确保-1大于或等于0。