Jump to content

Recommended Posts

Posted

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.

Posted

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

Posted (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 by yonda

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...