Re: [Sikuli-driver] [Question #678740]: IDE Show/Show in Buttons

2019-02-22 Thread Mike
Question #678740 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/678740 Status: Answered => Open Mike is still having a problem: Thanks Masuo. If I put the cursor on the start of a line with an image, then it will highlight the image region. That seems to duplicate the

Re: [Sikuli-driver] [Question #678740]: IDE Show/Show in Buttons

2019-02-22 Thread masuo
Question #678740 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/678740 Status: Open => Answered masuo proposed the following answer: Place the cursor on the line of captured images in SikuliX IDE, and click "show" button. You will find out the feature of this button.

[Sikuli-driver] [Question #678740]: IDE Show/Show in Buttons

2019-02-22 Thread Mike
New question #678740 on Sikuli: https://answers.launchpad.net/sikuli/+question/678740 When I press the Show or Show in buttons I get a dialogue box saying 'Nothing to show' What are the Show and Show in buttons for? -- You received this question notification because your team Sikuli Drivers

[Sikuli-driver] [Question #678739]: IDE Offset Button

2019-02-22 Thread Mike
New question #678739 on Sikuli: https://answers.launchpad.net/sikuli/+question/678739 If I press the Offset button I get some code like: Region(1113,792,254,205).asOffset() Where is .asOffset documented? What is the Offset button for? -- You received this question notification because your

[Sikuli-driver] [Question #678737]: Where to get SikuliX.app for Mac?

2019-02-22 Thread Peter Kim
New question #678737 on Sikuli: https://answers.launchpad.net/sikuli/+question/678737 On MacBook Pro running macOS 10.14.3, when I do "java -jar sikulix.jar" to start IDE and run "App.open ("/Applications/TextEdit.app") ", I get a warning message "SikuliX needs access to the Mac's assistive

[Sikuli-driver] [Question #678731]: How to detect moving images ( characters ingame )

2019-02-22 Thread Andreu Amposta
New question #678731 on Sikuli: https://answers.launchpad.net/sikuli/+question/678731 Hello, I want to write a bot for a game like Dota 2. So far I wrote simple bots for browsers, 2D games, etc, however now that I am joining the 3d scenario things are getting complicated. A lot. I found the

Re: [Sikuli-driver] [Question #678689]: Mojave : SikuliX IDE : Suite Setup works but Suite Teardown fails in this example

2019-02-22 Thread Melvin Raymond
Question #678689 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/678689 Melvin Raymond posted a new comment: Hi Raiman. Thank you for the feedback sir. Yes, that is why I was attempting to use the Suite setup to do steps 1 - 3 and Suite teardown to close the Viewer at the end of

Re: [Sikuli-driver] [Question #678681]: Sikuli 1.1.3: Is it possible to trap syntax errors?

2019-02-22 Thread Ron Turrentine
Question #678681 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/678681 Ron Turrentine posted a new comment: RaiMan, thanks I will do some testing of the return code on the executed script. That may just be the key to this whole thing. I'll let you know what I discover! Best

[Sikuli-driver] [Bug 1817043] Re: [request] SikuliX version info: should contain the build number for snapshot versions --- added 2019-02-22 build#206

2019-02-22 Thread RaiMan
added: TracisCI build number in all places, where detailed version info is requested (Env.getSikuliVersionBuild(), IDE About info as examples) ** Summary changed: - [request] SikuliX version info: should contain the build number for snapshot versions + [request] SikuliX version info: should

Re: [Sikuli-driver] [Question #678626]: Switching off all currently active highlighting

2019-02-22 Thread RaiMan
Question #678626 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/678626 RaiMan posted a new comment: --- Another detail: Env.getSikuliVersion() results in "1.1.4-SNAPSHOT". Would it be possible to include the date and/or the build number? added Env.getSikuliVersionBuild() (see:

Re: [Sikuli-driver] [Question #678709]: How to hold and move my image to top right corner using sikuli

2019-02-22 Thread RaiMan
Question #678709 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/678709 RaiMan requested more information: so paste here what you have done so far. --- It's always throwing an error does not help, you have to give specific info about the error you get ... and you should tell

Re: [Sikuli-driver] [Question #678709]: How to hold and move my image to top right corner using sikuli

2019-02-22 Thread Bhanu Chaitanya
Question #678709 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/678709 Bhanu Chaitanya posted a new comment: Thanks RaiMan, would it possible to provide an example code as I got hanged for creating Region object. It's always throwing an error and not able to create an object

Re: [Sikuli-driver] [Question #678626]: Switching off all currently active highlighting

2019-02-22 Thread RaiMan
Question #678626 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/678626 RaiMan proposed the following answer: As already guessed: True/False as parameter to a Java API function are given as Integer 1 and 0. So I had to revise the API accordingly: --- for the individual

Re: [Sikuli-driver] [Question #678681]: Sikuli 1.1.3: Is it possible to trap syntax errors?

2019-02-22 Thread RaiMan
Question #678681 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/678681 Status: Needs information => Answered RaiMan proposed the following answer: IMHO no need to use try...except. retcode = execfile(joinedname) in case of no error retcode will be None In was of any

Re: [Sikuli-driver] [Question #678709]: How to hold and move my image to top right corner using sikuli

2019-02-22 Thread RaiMan
Question #678709 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/678709 Status: Open => Answered RaiMan proposed the following answer: you have to try with the low level mouse actions move, wait, button down, move, wait, button up and find out which wait times are needed

Re: [Sikuli-driver] [Question #678689]: Mojave : SikuliX IDE : Suite Setup works but Suite Teardown fails in this example

2019-02-22 Thread RaiMan
Question #678689 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/678689 RaiMan posted a new comment: so steps 1 - 3 have to be done in suite setup, step 4 done in the test setup and step n in the suite teardown. this would be according to the unit-test philosophy. Another