【已解决】GUIGetCursorInfo在脚本退出时报数组维度错误
本帖最后由 smooth 于 2022-4-18 10:09 编辑GUIGetCursorInfo在脚本退出时报数组维度错误,见附件图片。GUIGetCursorInfo函数只有一个参数,那就是窗口的句柄,不知道为什么会报这样的错误。
;鼠标经过"客户端版"Label时变手型、变颜色、出现下划线。
Local Static $kh = 0
$info = GUIGetCursorInfo($hGui) ;获取鼠标光标相对于 GUI 窗口的位置.
If $info = $RunKHLabel And $kh = 0 Then ;$info,即获取鼠标悬停位置的控件 ID
GUICtrlSetFont($RunKHLabel, 12, 400, 4, "Microsoft YaHei")
GUICtrlSetColor($RunKHLabel, 0xFF0000) ;红色
$kh = 1
ElseIf $info <> $RunKHLabel And $kh = 1 Then
GUICtrlSetFont($RunKHLabel, 12, 400, 0, "Microsoft YaHei")
GUICtrlSetColor($RunKHLabel, 0x0000FF) ;蓝色
$kh = 0
EndIf
加判断
If not @error then
或
If isarray($info) then
zghwelcome 发表于 2022-4-18 09:49
加判断
If not @error then
或
这个函数获取到的,还有不是数组的时候,没往这方面考虑过,谢谢大佬的指点。
页:
[1]