Jump to content

PinkAngel

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by PinkAngel

  1. hi, thank you for your responses. Really appreciate them @ TurionAlte: yes , you are right, the scenario is that AutoIT should read the value in another program's progress bar. I was able to resolve this issue by monitoring the window's Status Bar. Because upon first load, the Status Bar says "Restoring Details". When the data are completely loaded to the listbox, the status becomes "Ready". The below code solves my problem: Do $var = StatusbarGetText("MyWindow") Sleep(1000) Until $var = "Ready" If (StatusbarGetText("MyWindow") = "Ready") Then ControlListView("MyWindow", "", "SysListView321", "SelectAll") EndIf I've got one problem though. The Delete Button is inside a Toolbarwindow. Any idea how to access the buttons in a ToolbarWindow? I tried ControlClick but to no avail. Thanks a lot.
  2. Hi, Yes, i think its multi- threading. the population of the listbox and the progress are already existing on the application. the script that i need to write is about selecting the listbox items and deleting them. but i can only do that if the list items are all loaded to the listbox which is indicated by a progress bar.
  3. Hi Guys, I am creating a script that will select items on a listbox and delete them. My problem is that the application gets the data from an external database which makes loading to listbox rather slow. It has a progress bar which indicates that loading progress. How can I make my script wait for the progress bar to be completed before executing my script of selecting listbox items then deleting them? Your valuable help will be greatly appreciated. thanks, Pink Angel
  4. Thanks a lot. I will try that. I made a workaround though. I added a name attribute on the image and just referenced it using that name, then used _IEAction()
  5. hi nfaustin, thanks for the quick reply. I tried _IEImgClick but it didn't work. thanks, PinkAngel
  6. Hi, I am working on a script that will automatically log in to our web page. My problem is that the login button which AutoIT should automatically click is an image with the following details: <input type="image" src="/static/images/login.gif"> How do I reference this control if I want to use ControlClick or ControlSend? I am new to AutoIt and your valuable help is greatly appreciated. thanks, PinkAngel
×
×
  • Create New...