本帖最后由 smooth 于 2022-4-18 10:09 编辑
GUIGetCursorInfo在脚本退出时报数组维度错误,见附件图片。GUIGetCursorInfo函数只有一个参数,那就是窗口的句柄,不知道为什么会报这样的错误。 ;鼠标经过"客户端版"Label时变手型、变颜色、出现下划线。
Local Static $kh = 0
$info = GUIGetCursorInfo($hGui) ;获取鼠标光标相对于 GUI 窗口的位置.
If $info[4] = $RunKHLabel And $kh = 0 Then ;$info[4],即获取鼠标悬停位置的控件 ID
GUICtrlSetFont($RunKHLabel, 12, 400, 4, "Microsoft YaHei")
GUICtrlSetColor($RunKHLabel, 0xFF0000) ;红色
$kh = 1
ElseIf $info[4] <> $RunKHLabel And $kh = 1 Then
GUICtrlSetFont($RunKHLabel, 12, 400, 0, "Microsoft YaHei")
GUICtrlSetColor($RunKHLabel, 0x0000FF) ;蓝色
$kh = 0
EndIf
|