^5::
Run,
c
:\wnwb\wnwb.exe
return
^Space::#Space
其他的大家照着修改就OK了,能用定义的热键实在太多了,当然还有热字符串,也是可以的哟~~
F1 & E::
Process, Exist, EmEditor.exe
If
ErrorLevel>0
Sleep , 100
Else
Run , D:\EmEditor\EmEditor.exe
return
F1::
Process, Exist, iFlyVoice.exe
If
ErrorLevel>0
Process,close, iFlyVoice.exe
Else
Run,D:\图文处理\讯飞语音\最新一代讯飞语音输入法\iFlyVoice.exe
return
F12::Suspend
^y::
Send , {!}[图片说明](%Clipboard%)
return
^b::
Send , ^x
Send , **^v**
return
^i::
Send , ^x
Send , *^v*
return
^q::
Send , ^x
Sleep, 200
Loop
, 3
{
Send, ``
}
Send, {
Enter
}
Sleep, 200
Send , ^v{
Enter
}
Loop
, 3
{
Send, ``
}
Send , {
Enter
}
return
:*:1b::
Send,{#}{Space}
return
:*:2b::
Send,{#}{#}{Space}
return
:*:3b::
Send,{#}{#}{#}{Space}
return
:*:4b::
Send,{#}{#}{#}{#}{Space}
return
:*:5b::
Send,{#}{#}{#}{#}{#}{Space}
return
=========================
^l::
InputBox , 变量名1,请输入链接的文字:,如:52pojie
InputBox , 变量名2,请输入网页链接:,如:[url=https://www.52pojie.cn]https://www.52pojie.cn[/url]
Send , [%变量名1%](%变量名2%)
return
!h::
StringReplace, OutputVar, clipboard, Paste_Image.png , 配图说明,
All
clipboard := OutputVar
Sleep , 1500
Send , ^v
return
^#h::
FileGetAttrib, Attributes,
C
:\Windows\System32\Drivers\etc\hosts
IfInString, Attributes, R
FileSetAttrib, -R,
C
:\Windows\System32\Drivers\etc\hosts, 1
Gui Font, s12 Bold c0xFF00FF, 微软雅黑
Gui
Add
, Edit, v内容 x16 y24 w445 h283, 请粘入要加入的hosts新行
Gui Font, s30 Bold , 微软雅黑
Gui
Add
, Button, g写入 x32 y336 w396 h104, 写入hosts文件
Gui Show, w483 h480, hosts一键添加小工具(AHK制造)
return
写入:
Gui,Submit ,NoHide
FileAppend , .`n%内容%,
C
:\Windows\System32\Drivers\etc\hosts, UTF-8
return