Re: [Sikuli-driver] [Question #264563]: How to get a final sorted match list after more than one findAll()

2015-04-18 Thread eduardobedoya
Question #264563 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/264563 Status: Solved = Open eduardobedoya is still having a problem: Hi Raiman, I've read the python tutorial, and Im reading the sikuli one I got the script to do what I was intending to, but it takes 6

Re: [Sikuli-driver] [Question #265404]: Using Region.highlight() conflicts with Find() operations in that Region

2015-04-18 Thread aidma
Question #265404 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/265404 Status: Answered = Solved aidma confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because you are a member of Sikuli Drivers,

Re: [Sikuli-driver] [Question #264563]: How to get a final sorted match list after more than one findAll()

2015-04-18 Thread eduardobedoya
Question #264563 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/264563 eduardobedoya gave more information on the question: Hi Raiman, I've read the python tutorial, and Im currently reading the sikuli one I got the script to do what I was intending to, but it takes 6 seconds

Re: [Sikuli-driver] [Question #265404]: Using Region.highlight() conflicts with Find() operations in that Region

2015-04-18 Thread aidma
Question #265404 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/265404 aidma posted a new comment: Oops, I meant translate, not transpose. When I was using a Windows 7 computer with multi-monitor setup Region.highlight() would shift the highlighted region downwards and to the

Re: [Sikuli-driver] [Question #265404]: Using Region.highlight() conflicts with Find() operations in that Region

2015-04-18 Thread RaiMan
Question #265404 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/265404 RaiMan posted a new comment: there where still multi monitor issues in version 1.1.0, but they should be fixed in the versions after mid April. version 1.0.1 and earlier versions had problems in this area

[Sikuli-driver] [Bug 1445667] Re: [1.1.0] OS X 10.10.3: App.open(Mail) doesn't work anymore --- specific Mac problem

2015-04-18 Thread RaiMan
seems to be a specific problem with 10.10.3 and Mail.app, since App.open() generally works. I tried other ways, to start Mail from SikuliX or from terminal: all not working. the only, that worked in the Terminal was: osascript -e tell application \Mail\ to activate (cannot be issued currently

[Sikuli-driver] [Bug 1445667] Re: [1.1.0] OS X 10.10.3: App.open(Mail) doesn't work anymore --- specific Mac problem

2015-04-18 Thread RaiMan
tested some variants - this is the only that worked: cmd = ['osascript', '/Users/raimundhocke/astest.txt'] print run(cmd) the file /Users/raimundhocke/astest.txt contains the AppleScript command: tell application Mail to activate using the direct osascript -e script mode does not work and

Re: [Sikuli-driver] [Question #264563]: How to get a final sorted match list after more than one findAll()

2015-04-18 Thread RaiMan
Question #264563 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/264563 Status: Open = Answered RaiMan proposed the following answer: you have 4 findAll() in your script: each takes some 100 millisecs. depending on the achievable restricted region, this might drop down to

Re: [Sikuli-driver] [Question #264563]: How to get a final sorted match list after more than one findAll()

2015-04-18 Thread RaiMan
Question #264563 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/264563 RaiMan proposed the following answer: aaah, your bug and list usage --- AllImg.append(WhtNumImg) adds a new element to the list, but not the elements of the list. What you need is:

Re: [Sikuli-driver] [Question #264563]: How to get a final sorted match list after more than one findAll()

2015-04-18 Thread eduardobedoya
Question #264563 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/264563 eduardobedoya gave more information on the question: Yes Raiman, Thanks for the list.extend(list) thing Sikuli IDLE warn me about the need to use an empty list list=[] xD So I fixed the script, but it still

Re: [Sikuli-driver] [Question #264563]: How to get a final sorted match list after more than one findAll()

2015-04-18 Thread eduardobedoya
Question #264563 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/264563 Status: Answered = Open eduardobedoya is still having a problem: Yes Raiman, I upgraded into this so far, but still takes 6 seconds before any mouse move or hover. Could restricting the search area

Re: [Sikuli-driver] [Question #264563]: How to get a final sorted match list after more than one findAll()

2015-04-18 Thread eduardobedoya
Question #264563 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/264563 eduardobedoya gave more information on the question: I have notice that there are a two screens picture in the Matching Preview of the Pattern Settings I would like to set all my scripts to always operate

Re: [Sikuli-driver] [Question #265409]: FIXED: Unable to debug simple Sikuli in Eclipse/Jython

2015-04-18 Thread forrest
Question #265409 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/265409 forrest posted a new comment: Blessings2Ewe -Original Message- From: boun...@canonical.com [mailto:boun...@canonical.com] On Behalf Of RaiMan Sent: Saturday, April 18, 2015 9:52 AM To: Forrest

Re: [Sikuli-driver] [Question #265409]: FIXED: Unable to debug simple Sikuli in Eclipse/Jython

2015-04-18 Thread forrest
Question #265409 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/265409 Summary changed to: FIXED: Unable to debug simple Sikuli in Eclipse/Jython Description changed to: I wish I could have deleted this request, but... I wiped out all vestiges of sikuli and

Re: [Sikuli-driver] [Question #265409]: FIXED: Unable to debug simple Sikuli in Eclipse/Jython

2015-04-18 Thread RaiMan
Question #265409 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/265409 Status: Open = Solved RaiMan changed the question status: no problem. would even not have been necessary to delete your question. In the first place it motivated me, to finally install Eclipse/PyDev

[Sikuli-driver] [Question #265446]: Matching Preview of the Pattern Settings

2015-04-18 Thread eduardobedoya
New question #265446 on Sikuli: https://answers.launchpad.net/sikuli/+question/265446 I have notice that there are a two screens picture in the Matching Preview of the Pattern Settings What if I would like to set all my scripts to always operate only in the main monitor, Is there a way to show

Re: [Sikuli-driver] [Question #264563]: How to get a final sorted match list after more than one findAll()

2015-04-18 Thread eduardobedoya
Question #264563 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/264563 eduardobedoya gave more information on the question: Hi Raiman This job performance gave me several doubts about finding images inside restricted areas, I asked in this link

[Sikuli-driver] [Bug 1445516] Re: [1.1.0] unable to install nightly builds since ~10-Apr-2015

2015-04-18 Thread RaiMan
** Summary changed: - unable to install nightly builds since ~10-Apr-2015 + [1.1.0] unable to install nightly builds since ~10-Apr-2015 -- You received this bug notification because you are a member of Sikuli Drivers, which is subscribed to Sikuli. https://bugs.launchpad.net/bugs/1445516

Re: [Sikuli-driver] [Question #265258]: [1.1.0] How to get the version ? Settings.getVersion missing

2015-04-18 Thread RaiMan
Question #265258 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/265258 Status: Open = Answered RaiMan proposed the following answer: good point. I just looked into the docs ;-)

Re: [Sikuli-driver] [Question #265404]: Using Region.highlight() conflicts with Find() operations in that Region

2015-04-18 Thread RaiMan
Question #265404 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/265404 Status: Open = Answered RaiMan proposed the following answer: the current implemetation of the highlight() feature does not allow, to find something inside the highlighted region (a snapshot of the

[Sikuli-driver] [Bug 1445516] Re: [1.1.0] setup using proxy crashes --- should be fixed 2025-04-18+ (not tested yet)

2015-04-18 Thread RaiMan
Peter, it would help a lot, if you find the time, to test it. ** Summary changed: - [1.1.0] unable to install nightly builds since ~10-Apr-2015 + [1.1.0] setup using proxy crashes --- should be fixed 2025-04-18+ (not tested yet) -- You received this bug notification because you are a member

[Sikuli-driver] [Bug 1445667] Re: [1.1.0] OS X 10.10.3: App.open(Mail) doesn't work anymore --- specific Mac problem

2015-04-18 Thread RaiMan
** Summary changed: - App.open doesn't work anymore on OS X 10.10.3 with Sikuli X 1.1.0 Nightly + [1.1.0] OS X 10.10.3: App.open(Mail) doesn't work anymore --- specific Mac problem -- You received this bug notification because you are a member of Sikuli Drivers, which is subscribed to Sikuli.