上面最左边的字符在表达式中是非法的
The leftmost character above is illegal in an expression
我正在尝试使用此行将鼠标移动分配给 Ctrl-Q:
^q::MouseMove, 100, 100; moves mouse to northwest
但它会导致错误。如何解决?
如果你想在 ahk 的同一行上发表评论,你必须在最后一个字符和分号之间使用 space。
^q::MouseMove, 100, 100; moves mouse to northwest <- this will fail.
^q::MouseMove, 100, 100 ; moves mouse to northwest <- this works.
是否可以为评论分配不同的标记?像 //?
顺便说一句,您的解决方案有效,我同意了。
是的,你可以。你应该使用 #CommentFlag //
如果您有其他问题,请创建一个新主题。
我正在尝试使用此行将鼠标移动分配给 Ctrl-Q:
^q::MouseMove, 100, 100; moves mouse to northwest
但它会导致错误。如何解决?
如果你想在 ahk 的同一行上发表评论,你必须在最后一个字符和分号之间使用 space。
^q::MouseMove, 100, 100; moves mouse to northwest <- this will fail.
^q::MouseMove, 100, 100 ; moves mouse to northwest <- this works.
是否可以为评论分配不同的标记?像 //?
顺便说一句,您的解决方案有效,我同意了。
是的,你可以。你应该使用 #CommentFlag //
如果您有其他问题,请创建一个新主题。