I am somewhat new to AutoIT scripting... I've written a few scripts that work well but I am having trouble getting the controlcommand function to work with the "SelectString" argument to select an item in a ListBox. Here is the snipet of my script:
WinWaitActive("Select State(s) to Process")
ControlFocus("Select State(s) to Process","",1008)
ControlCommand("Select State(s) to Process","",1008,"SelectString",'ALASKA')
1008 represents the ControlID of "ListBox1" according to the AutoIT active window utility. When I run this script the Control Focus works but "ALASKA" is not selected from the ListBox of states.
Any help would be greatly appreciated! Eventually I want to replace 'ALASKA' in the function with a variable that is obtained from a user response, but I think I can figure that part out on my own....
Thanks!!