Yokes9 Posted April 27, 2008 Posted April 27, 2008 Alright i've done some karel programming a few years ago but that is my only experience in any type of programming. I'm looking to do something simular to this Jump Label = 1 some tasks here If !@#$%^# then Tasks here Else Tasks Jump to = Jump Label 1 End If Continued Scirpt ;; Alright there doesn't seem to be jump labels in this so how can I create a loop or something to that nature that will do this. Basically i'm Trying to repeat the tasks before the if statement if it comes back false, but not start the program over just repeat starting on a specific line. I suck at programming... But I try really hard! :imwithstupid:
LarryDalooza Posted April 27, 2008 Posted April 27, 2008 While 1 some tasks here If !@#$%^# then Tasks here ExitLoop Else Tasks End If WEnd Continued Scirpt AutoIt has helped make me wealthy
Yokes9 Posted April 27, 2008 Author Posted April 27, 2008 Thanks! Thats so simple. By the way Autoit is unbelievable. Props to those that created it. While 1 some tasks here If !@#$%^# then Tasks here ExitLoop Else Tasks End If WEnd Continued Scirpt I suck at programming... But I try really hard! :imwithstupid:
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