Jump to content

Recommended Posts

Posted (edited)

I want to make advanced loop, example:

My simple program in Notepad must write "q" 500 times. But at 100, 200, 300, 400 and 500 time I want to write "b". How make it?

Run("notepad.exe")

WinWaitActive("Untitled - Notepad")

For $i = 1 to 500
send("q");
sleep(2000);
Next

It must looks like that:

qqqq(...)bqqq(...)bqqq(...)bqqq(...)bqqq(...)b

Thanks for any help, and sorry about my language ;P

Edited by b212
Posted

If isInt($i/100) Then 
    send("b")
EndIf

Basically how that works is if the number is divisible by 100 then it will be true.

I think, not sure about the returns and stuff, or even if the math is right (never could remember exactly what order to put it in :idiot:) but that's the basics.

"I thoroughly disapprove of duels. If a man should challenge me, I would take him kindly and forgivingly by the hand and lead him to a quiet place and kill him." - Mark TwainPatient: "It hurts when I do $var_"Doctor: "Don't do $var_" - Lar.
Posted

I was tryin that:

Run("notepad.exe")

WinWaitActive("Bez tytułu - Notatnik")

For $i = 1 to 50
send("q ");
sleep(200);
Next

If isInt($i/10) Then 
   send("b")
EndIf

And script just make 50 times "q"... :idiot:

Posted

100... you're using a 10?

"I thoroughly disapprove of duels. If a man should challenge me, I would take him kindly and forgivingly by the hand and lead him to a quiet place and kill him." - Mark TwainPatient: "It hurts when I do $var_"Doctor: "Don't do $var_" - Lar.
  • Developers
Posted

Run("notepad.exe")
WinWaitActive("Untitled - Notepad")
For $y = 1 To 5
   For $i = 1 To 100
      Send("q");
      Sleep(2000);
   Next
   Send("b");
Next

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted

Ah, that is probably faster. Good call JdeB :idiot:

"I thoroughly disapprove of duels. If a man should challenge me, I would take him kindly and forgivingly by the hand and lead him to a quiet place and kill him." - Mark TwainPatient: "It hurts when I do $var_"Doctor: "Don't do $var_" - Lar.

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