Jump to content

GuiGetCursorInfo issue


CyberSlug
 Share

Recommended Posts

Why doesn't GuiGetcursorInfo tell me when the mouse is over a tab control, group, or AVI control? Buttons, pics, and other controls are reported just fine.

GuiCreate("Watch the tooltip")

GuiCtrlCreateGroup("Frame", 130, 20, 70, 70)
GuiCtrlCreateAvi(@ScriptDir & "\SampleAVI.avi",-1, 220, 40)
GuiCtrlCreatePic(@ScriptDir & "\SampleImage.bmp", 280, 30)

GuiCtrlCreateButton("Button", 20, 130, 100, 30)
GuiCtrlCreateCheckbox("Checkbox", 140, 130, 100, 30)

guictrlcreateTab(10, 10, 100, 100)
guiCtrlcreateTabItem("one")
guiCtrlcreateTabItem("two")

GuiSetState()
while Guigetmsg() <> -3;$GUI_EVENT_CLOSE        
  $info = GuiGetCursorInfo()
  If isArray($info) Then ToolTip("ID#:  " & $info[4])
Wend
Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Link to comment
Share on other sites

I mean this could somebody explain who did program the "Autoit Window Spy" cause this gives back the right control id's - for pics and tabs too...Larry, you did program it - right, didn't you?

Link to comment
Share on other sites

@Larry: alright... now I know what you mean... I found some codesnip in the internet :)

And that could be our solution or Jon can modify the function a little bit if he founds the time..."EnumChildWindows" is the answer ;)

So a big thanks to James Brown from "Catch22 Productions" too :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...