其他分享
首页 > 其他分享> > AutoHotKey 使用笔记

AutoHotKey 使用笔记

作者:互联网

相关资源网站:
官网:https://www.autohotkey.com/
社区:https://www.autoahk.com/
中文文档:https://wyagd001.github.io/zh-cn/docs/AutoHotkey.htm

下载、安装、执行

  1. 访问 AutoHotkey 主页: https://autohotkey.com/
  2. 点击下载: https://autohotkey.com/download/ahk-install.exe
  3. 在安装 Autohotkey 过程中, 需要你选择安装 UNICODE 或者 ANSI 版本. 你很可能需要 UNICODE 版本, 简单点说, 如果你想要它支持非英文字符和数字, 那就选择 UNICODE 版. 版本选择之后, 一直点下一步直到你看到安装(Install) 按钮.

创建一个脚本,xxx.ahk

^j::
Send, My First Script
Return

保存文件
双击文件,或者右键 Run Script 来运行文件,接下来就可以使用你的快捷键了

文件内容解释:

标签:Return,AutoHotKey,Script,笔记,Send,https,使用,com,UNICODE
来源: https://www.cnblogs.com/wbyixx/p/15418985.html