CyberSlug Posted October 24, 2004 Posted October 24, 2004 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!
CyberSlug Posted October 24, 2004 Author Posted October 24, 2004 I'm not seeing any styles like that for other controls.... and it seems that SS_NOTIFY only affects mouse clicks. Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Holger Posted October 25, 2004 Posted October 25, 2004 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? Old project:GUI/Tray menu with icons and colors Other old stuff:IconFileScanner, TriState/ThreeState GUI TreeView, GUI ContextMenu created out of a TreeView
Holger Posted October 25, 2004 Posted October 25, 2004 @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 Old project:GUI/Tray menu with icons and colors Other old stuff:IconFileScanner, TriState/ThreeState GUI TreeView, GUI ContextMenu created out of a TreeView
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now