Jump to content

Get Text from a Toolbar Button


zenhold
 Share

Recommended Posts

Hello I´m new to AutoIt and I want to know how I can read the Text from a Toolbar-Button. (ToolBarWindow32)

I would like to Automate a Task in a certain App but the Information I need is in the Text of that Toolbar-Button.

Thanks for your Help

Link to comment
Share on other sites

  • Moderators

zenhold,

Welcome to the AutoIt forum. :)

You get the text of a toolbar button like this - I have used the taskbar as an example because we all have one:

#Include <GuiToolBar.au3>

; Get handle of taskbar
$hWnd = ControlGetHandle("[CLASS:Shell_TrayWnd]", "", "[CLASS:ToolbarWindow32;INSTANCE:4]") ; <<<<< If it does not work check the INSTANCE
; Get number of buttons
$iCount = _GUICtrlToolbar_ButtonCount($hWnd)
; Loop through buttons
For $i = 1 To $iCount - 1 Step 2 ; <<<<< You may need single step
    $iCmdID = _GUICtrlToolbar_IndexToCommand($hWnd, $i)
    $sText = _GUICtrlToolbar_GetButtonText($hWnd, $iCmdID)
    ConsoleWrite($sText & @CRLF)
Next

A couple of points to note: :idiot:

- 1. If the code does nto work, check the instance of the taskbar with the Window Info tool. I seem to remember that different OS's give different instance numbers to the various components of Shell_TrayWnd.

- 2. In the taskbar you need to use Step 2 as the even numbered buttons are invisible ones holding the process name. In your case you may well find that you need to single step the loop.

All clear? ;)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

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...