按键设置
autohotkey代码
#IfWinActive ahk_exe Mspaint.exe
{
F3::setLine()
F1::setCurve()
F2::rectangle()
F5::downArrow()
F7::srollDown()
F8::init()
F6::selectRect()
`::textInput()
}
; 清除上次的其他形状
clearHistory(){
SendInput, {Alt}
SendInput, {1}
}
setLine(){
clearHistory()
; 中间需要延时一下,否则太快无法反应
Sleep,200
; 真正使用直线
SendInput, {Alt}
SendInput, {3}
SendInput, {Enter}
}
setCurve(){
; 清除上次的其他形状
clearHistory()
; 中间需要延时一下,否则太快无法反应
Sleep,200
; 真正使用直线
SendInput, {Alt}
SendInput, {3}
SendInput, {Right}
SendInput, {Enter}
}
rectangle(){
; 清除上次的其他形状
clearHistory()
; 中间需要延时一下,否则太快无法反应
Sleep,200
; 真正使用直线
SendInput, {Alt}
SendInput, {3}
SendInput, {Right 3}
SendInput, {Enter}
}
downArrow(){
; 清除上次的其他形状
clearHistory()
; 中间需要延时一下,否则太快无法反应
Sleep,200
; 真正使用直线
SendInput, {Alt}
SendInput, {3}
SendInput, {Down 2}
SendInput, {Enter}
}
srollDown(){
SendInput, {WheelDown}
}
selectRect(){
SendInput, {Alt}
SendInput, {1}
}
textInput(){
SendInput, {Alt}
SendInput, {2}
}
intiFontSize(){
SendInput, {Alt}
SendInput, {T}
; 中间需要延时一下,否则太快无法反应
Sleep,500
; 真正使用直线
SendInput, {F}
SendInput, {S}
SendInput, 20
SendInput, {Enter}
}
initSetLine(){
SendInput, {Alt}
SendInput, {3}
SendInput, {Enter}
}
initSetLineWidth(){
; 设置宽度
SendInput, {Alt}
SendInput, {H}
SendInput, {S}
SendInput, {Z}
Sleep,500
SendInput, {Down}
SendInput, {Enter}
}
initSetTextInput(){
SendInput, {Alt}
SendInput, {2}
Click
}
initSetTextBold(){
SendInput, {Alt}
SendInput, {T}
Sleep,500
SendInput, {F}
SendInput, {B}
}
initFontColor(){
SendInput, {Alt}
SendInput, {H}
SendInput, {E}
SendInput, {C}
SendInput, {Tab 7}
SendInput, 255
SendInput, {Tab 4}
SendInput, {Enter}
}
initBackColor(){
SendInput, {Alt}
SendInput, {H}
SendInput, {2}
Sleep,500
SendInput, {Alt}
SendInput, {H}
SendInput, {E}
SendInput, {C}
SendInput, {Tab 7}
SendInput, 0
SendInput, {Tab}
SendInput, 0
SendInput, {Tab}
SendInput, 0
SendInput, {Tab 2}
SendInput, {Enter}
}
initDeleteAll(){
SendInput, {Ctrl Down}a{Ctrl Up}
SendInput,{Delete}
}
init(){
; 设置Font Color
initFontColor()
Sleep,500
initBackColor()
Sleep,500
initDeleteAll()
Sleep,500
; 切换直线
initSetLine()
Sleep,500
; 设置线宽
initSetLineWidth()
Sleep,500
; 切换文字框
initSetTextInput()
Sleep,500
; 设置字体大小
intiFontSize()
Sleep,500
; 设置字体变粗
initSetTextBold()
Sleep,500
; 返回
SendInput, {Alt}
SendInput, {1}
Sleep,500
; 返回,颜色选择重新切换到1
SendInput, {Alt}
SendInput, {H}
SendInput, {1}
}