junkew Posted February 23, 2009 Posted February 23, 2009 (edited) A small handy function to encapsulate handling the toolbar buttons a little easier Example #include <GuiToolbar.au3> $IEWindow = "[REGEXPTITLE:Internet Explorer; INSTANCE:1]" $GotoButton = "[CLASS:ToolbarWindow32; INSTANCE:4; CommandID:100]" _HandleToolBarButton($IEWindow, $GotoButton, "CLICK") ;_HandleToolBarButton($IEWindow, "[CLASS:ToolbarWindow32; INSTANCE:4; CommandID:100]", "CLICK") ;Specific function to handle toolbarwindow32 or compatible toolbars func _HandleToolbarButton($g_wndDescription, $g_objDescription, $g_objValue) ;local $x, $cmdID, $tbWndDescription $x=stringinstr($g_objDescription,";", 0 ,2); Get the location of second semicolon /; $tbWndDescription = stringleft($g_objDescription,$x-1) & "]"; Get the actual AutoIt TB Description $cmdID = stringmid($g_objdescription,stringinstr($g_objDescription,"CommandID:")+stringlen("CommandID:")) $cmdID= stringleft($cmdID,stringlen($cmdId)-1) $tbHandle = controlgethandle($g_wndDescription,"",$tbWndDescription);Get the toolbar handle $aRect = _GUICtrlToolbar_GetButtonRect ($tbHandle, $cmdID) ;Get its rectangle (relative position) ;If the action is to click if $g_objValue = "CLICK" Then ;find the location of the toolbar $pos=controlgetpos($g_wndDescription,"", $tbWndDescription); Get the toolbar location ;Add the location of the button mousemove($pos[0]+$aRect[0]+(($aRect[2]-$aRect[0])/2),$pos[1]+$arect[1]+(($aRect[3]-$aRect[1])/2),0) ;Move the mouse to the toolbarlocation and to right control sleep(2000) mouseclick("left") ;Don't click with below functions as it will click on disabled buttons ; ControlFocus($$g_wndDescription, "", $c) ; ControlClick($g_wndDescription, "", $tbHandle, "left",1, $aRect[0], 5) endif EndFunc Edit 24/02: Fixed the problems reported in the example Edited February 24, 2009 by junkew FAQ 31 How to click some elements, FAQ 40 Test automation with AutoIt, Multithreading CLR .NET Powershell CMDLets
iLoveAU3 Posted February 24, 2009 Posted February 24, 2009 C:\INCLUDE\test.au3(15,51) : WARNING: $g_wndDescription: possibly used before declaration. $tbHandle = controlgethandle($g_wndDescription, ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\INCLUDE\test.au3(15,51) : ERROR: $g_wndDescription: undeclared global variable. $tbHandle = controlgethandle($g_wndDescription, ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\INCLUDE\test.au3(16,62) : ERROR: _GUICtrlToolbar_GetButtonRect(): undefined function. $aRect = _GUICtrlToolbar_GetButtonRect ($tbHandle, $cmdID) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\INCLUDE\test.au3 - 2 error(s), 1 warning(s) !>08:03:26 AU3Check ended.rc:2 +>08:03:27 AutoIt3Wrapper Finished >Exit code: 0 Time: 1.468 source code is missing
BrettF Posted February 24, 2009 Posted February 24, 2009 It is a bit of a broken example here. You need to #include: #include <GuiToolbar.au3> And then fix the variable with $g_wndDescription. Cheers, Brett Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
junkew Posted February 24, 2009 Author Posted February 24, 2009 Fixed the problems (caused by beeing part of a larger framework) FAQ 31 How to click some elements, FAQ 40 Test automation with AutoIt, Multithreading CLR .NET Powershell CMDLets
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