原来AutoIt3Help.exe可以带参数运行,以前没发现
以前打开SciTe,点击帮助,捐助汉化。
出现这个点确定
自动打开帮助定位到这里。
反正我是一直不知道怎么实现的。今天突然发现AutoIt3Help.exe可以带参数运行。
分享一下了,知道的就路过。
打开荣誉列表例子:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("荣誉列表", 203, 122, 192, 124)
$Button1 = GUICtrlCreateButton("荣誉列表", 24, 24, 161, 73)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
$t0 = StringLeft(@AutoItExe, StringInStr(@AutoItExe, "\", 0, -1))
Run($t0 & "Autoit3Help.exe 荣誉列表")
If @error = 1 Then MsgBox(0, "错误", "帮助文件不存在")
EndSwitch
WEnd
当然如果你想扩充,请各人自由发挥想象。 |