yonda Posted February 3, 2007 Posted February 3, 2007 I tried searching for my answer, but couldn't find any threads on it. I was wondering, how is it possible for AutoIt to press the Tab button every few seconds? Do I add a line anywhere in the script or in the middle? And what line should I add? Thanks in advance.
Pakku Posted February 3, 2007 Posted February 3, 2007 I tried searching for my answer, but couldn't find any threads on it. I was wondering, how is it possible for AutoIt to press the Tab button every few seconds? Do I add a line anywhere in the script or in the middle? And what line should I add? Thanks in advance. Hi, first of all: welcome to the autoit community second: the help file is your guide to learn autoit and it i'sn't difficult to find out how to do what you want do. So use it and learn of it. and the last: here it is: While 1 ;start loop Send("{TAB}") ;sends the tabkey Sleep(1000) ;waits 1000 miliseconds = 1 second WEnd ;end loop this script will go around for ever so you have to modify it yourself Arjan How can someone use Windows without using AutoIt?That one would properly don't know how to handle a computer!My scripts:Send files over internetKind of RSS reader3Draw ProUDF: convert a character string to a binary one and backCalculate PiCommand line downloader (Youtube/Google video)Set the transparency of a window just by hitting a key!Secure your pcOther things:My filemanMy profilePM me
yonda Posted February 3, 2007 Author Posted February 3, 2007 (edited) Thanks a bunch, I was having trouble finding the help file but forgot to look in the most obvious place, the AutoIt folder itself (was looking for it on this site). Thanks again. Edited February 3, 2007 by yonda
Pakku Posted February 3, 2007 Posted February 3, 2007 your welcome How can someone use Windows without using AutoIt?That one would properly don't know how to handle a computer!My scripts:Send files over internetKind of RSS reader3Draw ProUDF: convert a character string to a binary one and backCalculate PiCommand line downloader (Youtube/Google video)Set the transparency of a window just by hitting a key!Secure your pcOther things:My filemanMy profilePM me
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