Jump to content

Recommended Posts

Posted

hello,

i wanna run autoit in the background until i press het hotkey but i have a function now:

$i = 1

While $i <= 0

sleep ("10000")

WEnd

but autoit simple stopts after 1 second.

What else can i use to keep autoit running until i press the hotkey ?

Posted

You tell AutoIt to loop while $i is smaller or equal to 0. But you set $i to 1 right before that.

An endless loop is easy to get:

While 1

....

WEnd

Posted

ok just found it but another problem

i want autoit to send something like that

<a href="bla.html">

but it gives an error at the " how can i send " in an sentence ?

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...