[Sikuli-driver] [Question #253723]: How to Create a Repeatable Loop

2014-08-27 Thread max
New question #253723 on Sikuli: https://answers.launchpad.net/sikuli/+question/253723 Hi, I just downloaded Sikuli 2 days ago. The Language and constructs are all very new to me, but the potential of this type of program is great. I have a very simple question. I have a program that runs overni

Re: [Sikuli-driver] [Question #253723]: How to Create a Repeatable Loop

2014-08-27 Thread max
Question #253723 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/253723 Description changed to: Hi, I just downloaded Sikuli 2 days ago. The Language and constructs are all very new to me, but the potential of this type of program is great. I have a very simple question. I have

Re: [Sikuli-driver] [Question #253723]: How to Create a Repeatable Loop

2014-08-27 Thread max
Question #253723 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/253723 Description changed to: Hi, I just downloaded Sikuli 2 days ago. The Language and constructs are all very new to me, I am not familiar with programming code. But the potential of this type of program is great

Re: [Sikuli-driver] [Question #253723]: How to Create a Repeatable Loop

2014-08-28 Thread RaiMan
Question #253723 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/253723 Status: Open => Answered RaiMan proposed the following answer: while True: # loop forever if exists(image, 0): click(some_image) wait(5) this will look every 5 seconds and click if popup

Re: [Sikuli-driver] [Question #253723]: How to Create a Repeatable Loop

2014-08-28 Thread max
Question #253723 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/253723 Status: Answered => Solved max confirmed that the question is solved: Thank you this works while True: # loop forever if exists(image, 0): click(some_image) wait(5) I will just open tas