danpaul23 Posted January 9, 2007 Posted January 9, 2007 I haven't programmed since I was programing Basic when I was around 10 years old and I just started trying to use Autoit today. My apologies for what I'm sure is a very basic question. Basically I'm trying to develop a program and the first part of the program is to open a browser and type in a URL. I've figured out how to open the browser and type the URL but I don't understand how to get the cursor to go to the web address box in the browser. I have the controlID for the box but I just don't understand what comand I need to use to make the cursor go there. Thanks.
BALA Posted January 9, 2007 Posted January 9, 2007 (edited) You could always use the MouseMove command. Example: MouseMove ( 345, 255, 0) The first number is the X position, the second is the Y position, and the third is the speed of the move (0 being fastest speed possible) Edited January 9, 2007 by BALA [font="Comic Sans MS"]BA-LA[/font]http://ba-la.110mb.comJoin my community, CLICK HEREAlternative links to my site:http://www.ba-la.tkhttp://www.ba-la.co.nrContact me if you would like to help with some of my projects: joeythepirate@gmail.com
danpaul23 Posted January 9, 2007 Author Posted January 9, 2007 You could always use the MouseMove command. Example: MouseMove ( 345, 255, 0) The first number is the X position, the second is the Y position, and the third is the speed of the move (0 being fastest speed possible) HEY awesome! I just wrote my first program, or mini-program or whatever. I used the movemouse command with the MouseClick("left") comand and it worked! Thanks!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now