Re: [Sikuli-driver] [Question #284364]: how to use while len(string) > 1 : ??

2016-02-08 Thread Karl
Question #284364 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/284364 Status: Open => Answered Karl proposed the following answer: The default region is your screen. If you search nearby 50 of this region, you'll just get your screen again. Make sure you're getting all

Re: [Sikuli-driver] [Question #284364]: how to use while len(string) > 1 : ??

2016-02-04 Thread VincentDugue
Question #284364 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/284364 Status: Answered => Open VincentDugue is still having a problem: thank for you reply Karl, I tried it and it works a little :P My last script for this function was : #first line def my_find(region,

Re: [Sikuli-driver] [Question #284364]: how to use while len(string) > 1 : ??

2016-02-04 Thread Karl
Question #284364 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/284364 Status: Open => Answered Karl proposed the following answer: It looks like you're trying to recursively create regions and then pass them to doubleClick. That won't work because doubleClick only works

[Sikuli-driver] [Question #284364]: how to use while len(string) > 1 : ??

2016-02-02 Thread VincentDugue
New question #284364 on Sikuli: https://answers.launchpad.net/sikuli/+question/284364 Hi everybody ! I need help for my script... #1st line def my_find(str): while len(str) > 1 : str2 = (str[len(str)-1:] return my_find(str2).nearby(30) RegionSearch = find(str+".png")

Re: [Sikuli-driver] [Question #284364]: how to use while len(string) > 1 : ??

2016-02-02 Thread Eugene S
Question #284364 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/284364 Status: Open => Needs information Eugene S requested more information: When you say "it doesn't click", are you certain that what you are looking for was actually found? let's start from here -- You

Re: [Sikuli-driver] [Question #284364]: how to use while len(string) > 1 : ??

2016-02-02 Thread VincentDugue
Question #284364 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/284364 Status: Needs information => Open VincentDugue gave more information on the question: I think it's because of my the script is actually working i change somethings, including index[] so the program is