工作流程是简单的全选、剪切、粘贴。
我用ahk完成了一个,能正常工作。autoit3不工作实在费解啊
现贴上ahk的代码#b::
if WinActive("ahk_class PP11FrameClass") or WinActive("ahk_class OpusApp")
{
BlockInput On
Clipboard=
click 2
WinWaitActive,ahk_class EQNWINCLASS,,2
if ErrorLevel
{
BlockInput Off
MsgBox,0,出错啦, 超时2s,2
return
}
sendinput ^a
sleep 100
sendinput ^x
ClipWait,2,1
if ErrorLevel
{
BlockInput Off
MsgBox,1, 尝试复制到剪贴板失败,,出错啦,2
return
}
sleep 200
sendinput ^v
Clipboard=
sleep 1200
WinClose, ahk_class EQNWINCLASS
sleep 100
}
else
{
BlockInput Off
MsgBox,0,出错啦, 没找到程序窗口^_^,2
}
BlockInput Off
return
|