Hello, I am new to AutoIT (just got it yesterday) and I am already loving it, but I am having a little trouble.
I am trying to automate my way through a program, but I do not wish to use the MouseClick command. I am trying to use the ControlClick command, however, the ControlID on the object I need to click on is dynamic and it changes everytime the program runs.
I am wondering if there is a script that can be written to get the ControlID of an object and return it in a variable that I can place in the ControlClick command...
for example:
Dim $CtrlID
*YayGetTheControlIDScript*
ControlClick("Management Form", "", "$CtrlID")
can this be done?
Any help would be greatly appreciated.