Given you have a combo box with 50 items, is it possible to select one of those items without scrolling down to it?
My problem is that in order to make this script reusable, I am entering the value in as a variable. That means I can not know the number of clicks for scrolling (or move the scroll bar) merely I just need to select the entry.
I have tried using ComboBoxFindString, ElementFindChild, and ComboBoxSetSelectedText and they have not worked.
---- edited
I realized this also is a need for all forms. In our main window we have many controls and fields and take up multiple 'pages'.
Can I pick the control without scrolling the page down to it? I notice that TreeViewSelectItem mentions scrolling an item into view and selecting it. Is there another equivalent method for forms in general (and controls like a combobox)?