Re: [Sikuli-driver] [Question #640445]: Scan for either of the 3 images during runtime

2017-06-03 Thread Hossain Abeer
Question #640445 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/640445 Hossain Abeer gave more information on the question: Later I have also tried this method, but again, not working while True: if exists((imgA or imgB or imgC), 3600): click

[Sikuli-driver] [Question #640445]: Scan for either of the 3 images during runtime

2017-06-03 Thread Hossain Abeer
New question #640445 on Sikuli: https://answers.launchpad.net/sikuli/+question/640445 Hi, I have been trying to write a program for days now. It was supposed to scan for either of the 3 images. This is how I originally wrote, and obviously, it's not working. It detects only the 1st image, and co

Re: [Sikuli-driver] [Question #640445]: Scan for either of the 3 images during runtime

2017-06-03 Thread Hossain Abeer
Question #640445 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/640445 Status: Answered => Open Hossain Abeer is still having a problem: Hi masuo, Thanks for your effort, but that didn't work. Any other method? -- You received this question notification beca

Re: [Sikuli-driver] [Question #640445]: Scan for either of the 3 images during runtime

2017-06-03 Thread Hossain Abeer
Question #640445 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/640445 Hossain Abeer posted a new comment: This one: if exists("imageA.png",0) or exists("imageB.png",0) or exists("imageC.png",0): click("imageO.png") still cant dete

Re: [Sikuli-driver] [Question #640445]: Scan for either of the 3 images during runtime

2017-06-03 Thread Hossain Abeer
Question #640445 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/640445 Status: Answered => Open Hossain Abeer is still having a problem: They didn't work #6 had problem running the script, and the script couldn't be even saved. #7 and #8 ran, but still co

Re: [Sikuli-driver] [Question #640445]: Scan for either of the 3 images during runtime

2017-06-03 Thread Hossain Abeer
Question #640445 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/640445 Status: Needs information => Open Hossain Abeer gave more information on the question: Sikulix IDE1.1.0 I have both Java and Python IDEs installed on computer. Running Windows 10, 64bit --

Re: [Sikuli-driver] [Question #640445]: Scan for either of the 3 images during runtime

2017-06-03 Thread Hossain Abeer
Question #640445 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/640445 Hossain Abeer gave more information on the question: I checked for update from the SikuliX app, but it says no update available. Does this mean that I must download and install version 1.1.1 manually

Re: [Sikuli-driver] [Question #640445]: Scan for either of the 3 images during runtime

2017-06-03 Thread Hossain Abeer
Question #640445 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/640445 Hossain Abeer gave more information on the question: I am now running SikuliX IDE 1.1.1. and i tried the following script click(G) while True: if exists ((A or B or C), 3600): #A B C are the main

Re: [Sikuli-driver] [Question #640445]: Scan for either of the 3 images during runtime

2017-06-04 Thread Hossain Abeer
Question #640445 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/640445 Status: Answered => Open Hossain Abeer is still having a problem: Well then, this isn't working either if exists ((A or B or C), 3600): -- You received this question notification because y

Re: [Sikuli-driver] [Question #640445]: Scan for either of the 3 images during runtime

2017-06-04 Thread Hossain Abeer
Question #640445 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/640445 Hossain Abeer gave more information on the question: Even if A reappears seconds later, the program can detect it and act over and over again. So I am guessing it is completely ignoring the other two B and C

Re: [Sikuli-driver] [Question #640445]: Scan for either of the 3 images during runtime

2017-06-05 Thread Hossain Abeer
Question #640445 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/640445 Status: Answered => Open Hossain Abeer is still having a problem: But I have used other methods too, but still couldn't detect the other two images. Your method #2 didn't work as well. In

Re: [Sikuli-driver] [Question #640445]: Scan for either of the 3 images during runtime

2017-06-05 Thread Hossain Abeer
Question #640445 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/640445 Hossain Abeer gave more information on the question: Hi, after many trials and errors, i have come up with this script. click(G) while True: if exists(A, 0) or exists(B, 0) or exists(C, 0

Re: [Sikuli-driver] [Question #640445]: Scan for either of the 3 images during runtime

2017-06-05 Thread Hossain Abeer
Question #640445 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/640445 Status: Answered => Open Hossain Abeer is still having a problem: Hi RaiMan, thanks for dropping in. Finally, i can get to talk to the legend of Sikuli. Do it need to end the script with e

Re: [Sikuli-driver] [Question #640445]: Scan for either of the 3 images during runtime

2017-06-05 Thread Hossain Abeer
Question #640445 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/640445 Status: Answered => Solved Hossain Abeer confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because your team Sikuli Drivers

Re: [Sikuli-driver] [Question #640445]: Scan for either of the 3 images during runtime

2017-06-06 Thread Hossain Abeer
Question #640445 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/640445 Status: Solved => Open Hossain Abeer is still having a problem: Hi, The script #25 solved my problem, and performs accordingly. But a new objective has arisen from this. Say, the program has detec

Re: [Sikuli-driver] [Question #640445]: Scan for either of the 3 images during runtime

2017-06-07 Thread Hossain Abeer
Question #640445 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/640445 Status: Answered => Solved Hossain Abeer confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because your team Sikuli Drivers

[Sikuli-driver] [Question #649155]: Set Password

2017-07-16 Thread Hossain Abeer
t;Program") Problem: The program accepts just about anything on input, and lets anyone access. Thank you for your time Hossain Abeer -- You received this question notification because your team Sikuli Drivers is an answer contact for Sikuli. __

Re: [Sikuli-driver] [Question #649155]: Set Password

2017-10-21 Thread Hossain Abeer
Question #649155 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/649155 Status: Answered => Open Hossain Abeer is still having a problem: Hey Manfred, Thanks for your respond. I have just started to code. So can you write a simple model of codes which may provide a log

Re: [Sikuli-driver] [Question #649155]: Set Password

2017-10-24 Thread Hossain Abeer
Question #649155 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/649155 Status: Needs information => Open Hossain Abeer gave more information on the question: I want to create a program, using sikuli. This program would only allow a number of my colleagues to log in, us

Re: [Sikuli-driver] [Question #649155]: Set Password

2017-10-25 Thread Hossain Abeer
Question #649155 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/649155 Status: Answered => Open Hossain Abeer is still having a problem: The code - if ok != "Password": exit(1) gives an error. Error reads as "[error] NameError ( name 'ok'

Re: [Sikuli-driver] [Question #649155]: Set Password

2017-10-25 Thread Hossain Abeer
Question #649155 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/649155 Status: Open => Solved Hossain Abeer confirmed that the question is solved: Hey, I have done a little research, and successfully made a simple log in portal. the code - yes = popAsk("Have a