如何发送对脚本自身托盘图标的点击事件
本帖最后由 afan 于 2010-2-2 23:32 编辑我写了个脚本,运行一段代码后想让它暂停,想利用脚本自身的暂停功能, 就是点击一下托盘图标,显示一个红叉, 脚本已暂停,在程序中应该如何实现这个点击? 自行解决了Func _pause()
$hToolbar = ControlGetHandle("", "", "")
If @error Then Return 0
$iButCount = _GUICtrlToolbar_ButtonCount($hToolbar)
If $iButCount = 0 Then
TrayTip("错误", "没有找到托盘程序,请手动暂停!",50)
Return 0
EndIf
$hButton = ControlGetHandle("", "", "Button2")
If $hButton <> "" Then ControlClick("", "", "Button2")
For $i = 1 To $iButCount - 1
$text = _GUICtrlToolbar_GetButtonText($hToolbar, $i)
;MsgBox(0,$i,$text)
If String($text) = _Getname() Then ExitLoop
Next
$cID = _GUICtrlToolbar_IndexToCommand($hToolBar,$iButCount - $i - 1)
_GUICtrlToolbar_ClickButton($hToolBar, $cID, "right", True)
EndFunc
好贴 收藏了
页:
[1]