Fridolin 0 Posted April 17, 2010 I'm new to AutoIt and as far as I see till now I can do a lot of things with AutoIt but I'm afraid not that what I would like to do: - my favorite website has an Accept button to be pressed at the very first loading in the morning; if I load the site the second time a day no Accept button is shown - the page has some listboxes, and I have to click a specific combination of listbox entries - the site shows a a table of data, and I have to click to a specific label in one of the column headers Does AutoIt have built in functions to find the button and listboxes and to place there the cursor, or to position the cursor to a specific x/y coordinate relative to the window's upper left corner? I'm a little bit familiar with Visual Basic so I don't need to have a complete script code, I only would like to know if it could be done with AutoIt and if yes with which functions. Thank you, Fridolin Share this post Link to post Share on other sites
Richard Robertson 187 Posted April 17, 2010 Yes, AutoIt is very good at moving the mouse and clicking it. Look at the functions MouseMove and MouseClick. If the things you need to click are always in the same spot, these will do everything you need in a simple way. Share this post Link to post Share on other sites
Zedna 280 Posted April 17, 2010 For interacting with websites look at IE UDF in Autoit's helpfile. Resources UDF ResourcesEx UDF AutoIt Forum Search Share this post Link to post Share on other sites