Re: [Sikuli-driver] [Question #699463]: Screen zoomed in when Take screenshot is accessed in remote connections

2021-11-15 Thread RaiMan
Question #699463 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699463 Status: Open => Answered RaiMan proposed the following answer: Generally I cannot reproduce such problems, since I do not have such a setup. So just guessing ;-) It might be related to your moni

Re: [Sikuli-driver] [Question #699463]: Screen zoomed in when Take screenshot is accessed in remote connections

2021-11-14 Thread RaiMan
Question #699463 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699463 Status: Open => Needs information RaiMan requested more information: Not clear, what is running where: client machine (system?), server machine. -- You received this question notification beca

Re: [Sikuli-driver] [Question #699442]: Unable to paste any text with a pattern preview in it

2021-11-11 Thread RaiMan
Question #699442 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699442 Status: Open => Answered RaiMan proposed the following answer: C:\Users\brend\Desktop\Sikuli%20Things\Id_Scraper\1636646281508.png apparently you have a blank/space in your file path -> Sikuli

Re: [Sikuli-driver] [Question #699357]: How to react to a Windows 11 notification?

2021-11-05 Thread RaiMan
Question #699357 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699357 RaiMan proposed the following answer: this worked for me: ac = SCREEN.bottomRight.offset(-20, -20) click(ac) wait(2) hover("someImage.png") wait(3) where "someImage.png" is an image v

Re: [Sikuli-driver] [Question #699357]: How to react to a Windows 11 notification?

2021-11-05 Thread RaiMan
Question #699357 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699357 Status: Open => Answered RaiMan proposed the following answer: popups can be detected by using onAppear/observeInBackground. Acting on something, that is visible in the ActionCenter should be nor

[Sikuli-driver] [Bug 1949878] Re: [2.0.5] Android: screenshot function not starting on certain X, Y. --- no longer supported

2021-11-04 Thread RaiMan
: screenshot function not starting on certain X,Y. --- no longer supported ** Changed in: sikuli Status: New => Won't Fix ** Changed in: sikuli Assignee: (unassigned) => RaiMan (raimund-hocke) -- You received this bug notification because you are a member of Sikuli Drivers,

Re: [Sikuli-driver] [Question #699263]: sikulixserver script folder path

2021-11-04 Thread RaiMan
Question #699263 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699263 Status: Open => Answered RaiMan proposed the following answer: http://localhost:50001/scripts/...path... where ...path... must be an absolute path (always use forward slash even on Windows) exam

Re: [Sikuli-driver] [Question #699326]: Access Windows Registry from Sikuli IDE - use the bundled JNA

2021-11-04 Thread RaiMan
Question #699326 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699326 Summary changed to: Access Windows Registry from Sikuli IDE - use the bundled JNA -- You received this question notification because your team Sikuli Drivers is an answer contact for SikuliX.

Re: [Sikuli-driver] [Question #699326]: Access Windows Registry from Sikuli IDE

2021-11-04 Thread RaiMan
Question #699326 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699326 RaiMan proposed the following answer: This works: import com.sun.jna.platform.win32.Advapi32Util as WIN32 import com.sun.jna.platform.win32.WinReg.HKEY_CURRENT_USER as HKCU print WIN32

Re: [Sikuli-driver] [Question #699335]: Long term support inquiry

2021-11-04 Thread RaiMan
Question #699335 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699335 Status: Answered => Solved RaiMan changed the question status: duplicate on Github. -- You received this question notification because your team Sikuli Drivers is an answer contact for Siku

Re: [Sikuli-driver] [Question #699335]: Long term support inquiry

2021-11-03 Thread RaiMan
Question #699335 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699335 Status: Open => Answered RaiMan proposed the following answer: My current dev runs on Java 17 and is tested also on Java 11. -- You received this question notification because your team Sik

Re: [Sikuli-driver] [Question #699326]: Access Windows Registry from Sikuli IDE

2021-11-03 Thread RaiMan
Question #699326 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699326 RaiMan proposed the following answer: I guess, this is because the winreg module relies on C-based stuff (normal Python), which is not supported by Jython. I will have a look into JNA, which is bundled

Re: [Sikuli-driver] [Question #699312]: [Enhancement] Find All possible matches from an list of input images

2021-11-02 Thread RaiMan
Question #699312 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699312 Status: Open => Answered RaiMan proposed the following answer: I understand your request. But if you pack such an implementation into a function (def) and put it into your global module, then

Re: [Sikuli-driver] [Question #698765]: Sikuli Support for Windows 11 --- 2.0.5+ tested and is working

2021-10-27 Thread RaiMan
Question #698765 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698765 Summary changed to: Sikuli Support for Windows 11 --- 2.0.5+ tested and is working Description changed to: possible problems/workarounds: https://github.com/RaiMan/SikuliX1/issues/479

Re: [Sikuli-driver] [Question #698765]: Sikuli Support for Windows 11 --- 2.0.5+ tested and is working

2021-10-27 Thread RaiMan
Question #698765 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698765 RaiMan proposed the following answer: @Hareesh: thanks for the pointer ;-) See the updated question. -- You received this question notification because your team Sikuli Drivers is an answer contact

Re: [Sikuli-driver] [Question #699227]: click don't effect

2021-10-26 Thread RaiMan
Question #699227 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699227 Status: Open => Answered RaiMan proposed the following answer: On macOS you have to first give focus to the window containing the button somehow (e.g. switchApp()) and then click(button) --

[Sikuli-driver] [Bug 1948708] Re: [2.0.5] Linux: ssh: command line scriptrun: intermittently Getting a return code of 1 when expecting 0

2021-10-26 Thread RaiMan
Looking into the script run implementation, a non-intentionally exit code 1 is only produced, if the the Jython script run exits with an exception, that is happening outside the script, hence something in the area ssh-Java-Jython. Internally the cause is saved, but not logged and not reported to

[Sikuli-driver] [Bug 1948708] Re: Getting a return code of 1 in Linux when I'm expecting 0

2021-10-26 Thread RaiMan
** Changed in: sikuli Status: New => In Progress ** Changed in: sikuli Importance: Undecided => Medium ** Changed in: sikuli Assignee: (unassigned) => RaiMan (raimund-hocke) ** Changed in: sikuli Milestone: None => 2.0.6 ** Summary changed: - Getting a retu

Re: [Sikuli-driver] [Question #699200]: [2.0.5] IDE: second scripture in same session: urllib.urlopen() crashes --- workaround

2021-10-25 Thread RaiMan
Question #699200 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699200 Summary changed to: [2.0.5] IDE: second scripture in same session: urllib.urlopen() crashes --- workaround Description changed to: workaround add the following snippet to your

Re: [Sikuli-driver] [Question #699200]: [2.0.5] IDE: second scriptrun in same session: urllib.urlopen() crashes --- workaround

2021-10-25 Thread RaiMan
Question #699200 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699200 Summary changed to: [2.0.5] IDE: second scriptrun in same session: urllib.urlopen() crashes --- workaround -- You received this question notification because your team Sikuli Drivers is an answer

Re: [Sikuli-driver] [Question #699154]: [2.0.5] Ubuntu: Mouse not useable (blocked)

2021-10-25 Thread RaiMan
Question #699154 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699154 RaiMan proposed the following answer: @ Arthur Belmonte (art-belmonte) tested different aspects of Mouse actions on macOS 11.6 with Java 11 and 17 (recommended LTS Java's) using 2.0.5 and could

Re: [Sikuli-driver] [Question #187104]: Trying to sense when the screen stops changing

2021-10-21 Thread RaiMan
Question #187104 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/187104 RaiMan posted a new comment: @Spice Agent - observe() runs until timeOut and returns False if no changes have been detected. - if changes are detected, the handler is called - if the obeserver is stopped

Re: [Sikuli-driver] [Question #187104]: Trying to sense when the screen stops changing

2021-10-21 Thread RaiMan
Question #187104 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/187104 RaiMan posted a new comment: only to be complete: this worked for me (2.0.5): class X(unittest.TestCase): def changed(self, e): print "handler" self.changes =

Re: [Sikuli-driver] [Question #699179]: can't run script

2021-10-21 Thread RaiMan
Question #699179 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699179 Status: Open => Answered RaiMan proposed the following answer: check wether test.sikuli contains a test.py file. what macOS, what Java? run from command line with -v -c and check the st

[Sikuli-driver] [Bug 1948020] Re: can't run script

2021-10-21 Thread RaiMan
already a question ** Changed in: sikuli Status: New => Invalid ** Changed in: sikuli Assignee: (unassigned) => RaiMan (raimund-hocke) -- You received this bug notification because you are a member of Sikuli Drivers, which is subscribed to SikuliX. https://bugs.launchpad.ne

Re: [Sikuli-driver] [Question #699154]: [2.0.5] Ubuntu: Mouse not useable (blocked)

2021-10-20 Thread RaiMan
Question #699154 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699154 Status: Open => Answered RaiMan proposed the following answer: I am really sorry not being able to help you. I do not have a real Ubuntu system available, only one running in VBox, which beha

Re: [Sikuli-driver] [Question #699020]: Issues transferring scripts from 1.13 to 2.05

2021-10-20 Thread RaiMan
Question #699020 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699020 RaiMan posted a new comment: Sounds good and is a good plan. Thanks for feedback. -- You received this question notification because your team Sikuli Drivers is an answer contact for SikuliX

Re: [Sikuli-driver] [Question #699154]: [2.0.5] Ubuntu: Mouse not useable (blocked)

2021-10-19 Thread RaiMan
Question #699154 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699154 RaiMan proposed the following answer: Then you have to check, why the programmed mouse actions (Java AWT Robot) might be blocked by the offending app/gui. On Windows it sometimes help to run a script

Re: [Sikuli-driver] [Question #699154]: [2.0.5] Ubuntu: Mouse not useable (blocked)

2021-10-19 Thread RaiMan
Question #699154 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699154 Summary changed to: [2.0.5] Ubuntu: Mouse not useable (blocked) -- You received this question notification because your team Sikuli Drivers is an answer contact for SikuliX.

Re: [Sikuli-driver] [Question #699154]: Mouse not useable (blocked)

2021-10-19 Thread RaiMan
Question #699154 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699154 Status: Open => Answered RaiMan proposed the following answer: You have to first be sure, that mouse actions work on a normal app (like a browser). simply bring a window to foreground in mid

[Sikuli-driver] [Bug 1947580] Re: Key.isLockOn() not detecting state on Linux

2021-10-18 Thread RaiMan
thanks for the pointer. will check and fix in 2.0.6 if possible ** Changed in: sikuli Status: New => In Progress ** Changed in: sikuli Importance: Undecided => Medium ** Changed in: sikuli Assignee: (unassigned) => RaiMan (raimund-hocke) ** Changed in: sikuli Milest

Re: [Sikuli-driver] [Question #699145]: [2.0.5] Win: App.open: not possible to start a second instance of a running exe

2021-10-18 Thread RaiMan
Question #699145 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699145 Summary changed to: [2.0.5] Win: App.open: not possible to start a second instance of a running exe -- You received this question notification because your team Sikuli Drivers is an answer contact for

Re: [Sikuli-driver] [Question #699145]: [2.0.5] Win: App.open: not possible to start a second instance of a running exe --- confirmed

2021-10-18 Thread RaiMan
Question #699145 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699145 Summary changed to: [2.0.5] Win: App.open: not possible to start a second instance of a running exe --- confirmed -- You received this question notification because your team Sikuli Drivers is an answer

Re: [Sikuli-driver] [Question #699145]: App.open on version 2.0.5 has different behavior

2021-10-18 Thread RaiMan
Question #699145 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699145 Status: Open => Answered RaiMan proposed the following answer: Sorry, but that is true. App.open() looks for the exe in the task list and uses a running instance. So it is currently not possi

Re: [Sikuli-driver] [Question #699141]: tentative date for 2.0.6 release?

2021-10-18 Thread RaiMan
Question #699141 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699141 Status: Open => Answered RaiMan proposed the following answer: tentative: hopefully before Christmas this year. 1st half of November I will give a commitment for a date (latest 20th). I p

Re: [Sikuli-driver] [Question #697946]: [2.0.5] Sikulix.prefStore/Sikulix.prefLoad broken --- New 2.0 key/value pair storage --- fixed in 2.0.6

2021-10-15 Thread RaiMan
Question #697946 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/697946 Summary changed to: [2.0.5] Sikulix.prefStore/Sikulix.prefLoad broken --- New 2.0 key/value pair storage --- fixed in 2.0.6 Description changed to: tracked on GitHub https://github.com/RaiMan/SikuliX1

Re: [Sikuli-driver] [Question #699115]: [2.0.5] Selenium library using Sikuli IDE --- start from command line with class path set

2021-10-15 Thread RaiMan
Question #699115 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699115 Status: Open => Answered RaiMan proposed the following answer: Sorry, but that is WebDriver specific - follow the given links or search the net for solutions. This Q board is for SikuliX speci

Re: [Sikuli-driver] [Question #699115]: [2.0.5] Selenium library using Sikuli IDE --- start from command line with class path set

2021-10-15 Thread RaiMan
Question #699115 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699115 Summary changed to: [2.0.5] Selenium library using Sikuli IDE --- start from command line with class path set -- You received this question notification because your team Sikuli Drivers is an answer

Re: [Sikuli-driver] [Question #699115]: Selenium library using Sikuli IDE

2021-10-15 Thread RaiMan
Question #699115 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699115 Status: Open => Answered RaiMan proposed the following answer: Sorry, but the load() function does not work anymore since Java 9 (no longer possible to add stuff to the Java class path after st

[Sikuli-driver] [Bug 1930650] Re: IDE:Matching Preview does not work when file path has blank / spaces

2021-10-14 Thread RaiMan
of Sikuli Drivers, which is subscribed to SikuliX. https://bugs.launchpad.net/bugs/1930650 Title: IDE:Matching Preview does not work when file path has blank / spaces Status in SikuliX: Fix Committed Bug description: tracked on GitHub: https://github.com/RaiMan/SikuliX1/issues/472

[Sikuli-driver] [Bug 1943866] Re: [2.0.5] IDE: Preview crash with blank in folder-/filename (fixed in 2.0.6)

2021-10-14 Thread RaiMan
** Description changed: + tracked on GitHub: https://github.com/RaiMan/SikuliX1/issues/472 + + Hi! Windows 10, 64bit, SikulixIDE 2.0.5 In Code Editor, as soon as I click a picture, the pattern settings dialog opens, when

[Sikuli-driver] [Bug 1946925] Re: [2.0.5] Win11: Env.getOSVersion() gets incorrect version (10.0) --- Java/Windows problem (fixed with Java18??) - temp-fix in 2.0.6

2021-10-14 Thread RaiMan
) gets incorrect version (10.0) --- Java/Windows problem (fixed with Java18??) - temp-fix in 2.0.6 Status in SikuliX: Fix Committed Bug description: tracked on GitHub: https://github.com/RaiMan/SikuliX1/issues/479 look

[Sikuli-driver] [Bug 1946925] Re: [2.0.5] Win11: Env.getOSVersion() gets incorrect version (10.0) --- Java/Windows problem (fixed with Java18??)

2021-10-14 Thread RaiMan
** Description changed: tracked on GitHub: https://github.com/RaiMan/SikuliX1/issues/479 looks like there is an open bug for windows 11 that is expected to be fixed in java 18 https://bugs.openjdk.java.net/browse/JDK

[Sikuli-driver] [Bug 1946925] Re: [2.0.5] Win11: Env.getOSVersion() gets incorrect version (10.0) --- Java problem (fixed with Java18)

2021-10-14 Thread RaiMan
://github.com/RaiMan/SikuliX1/issues/479 + IMHO this is not really a Java bug, but a quirk in Windows 11 + + systeminfo shows this (language German): + + Betriebssystemname:Microsoft Windows 11 Pro + Betriebssystemversion: 10.0.22000 Nicht zutreffend Build 22000 + + So the version is actually

[Sikuli-driver] [Bug 1946925] Re: [2.0.5] Win11: Env.getOSVersion() gets incorrect version (10.0) --- Java problem (fixed with Java18)

2021-10-14 Thread RaiMan
://bugs.openjdk.java.net/browse/JDK-8274840 tracked on GitHub: https://github.com/RaiMan/SikuliX1/issues/479 -- + --- workaround --- + in Python scripting for other user who may see similar issue + + get OS details from

[Sikuli-driver] [Bug 1881240] Re: [2.0.4] findText() or find("some text") not working --- workaround

2021-10-14 Thread RaiMan
@Chetan Sorry, but this has fallen from the table somehow ;-) In fact it is tracked on GitHub: https://github.com/RaiMan/SikuliX1/issues/358 ... and thanks for the reminder. ** Changed in: sikuli Milestone: 2.0.5 => 2.0.6 ** Description changed: - Need update: - @raiman can you ple

Re: [Sikuli-driver] [Question #698959]: opencv_java430.dll not in any libs folder

2021-10-13 Thread RaiMan
Question #698959 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698959 Status: Open => Answered RaiMan proposed the following answer: ok, then I cannot help you. Something in/with your Win or Eclipse setup is not as it should be - but I have no glue. Try to find

Re: [Sikuli-driver] [Question #698959]: opencv_java430.dll not in any libs folder

2021-10-13 Thread RaiMan
Question #698959 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698959 Status: Open => Answered RaiMan proposed the following answer: Uups, sorry for misleading --- I did not read the error message carefully enough. May be this helps: https://github.com/RaiMan/Sikul

[Sikuli-driver] [Bug 1946925] Re: [2.0.5] Win11: Env.getOSVersion() gets incorrect version (10.0) --- Java problem (fixed with Java18)

2021-10-13 Thread RaiMan
** Description changed: - looks like there is an open bug for windows 11 + looks like there is an open bug for windows 11 that is expected to be fixed in java 18 https://bugs.openjdk.java.net/browse/JDK-8274840 + + tracked on GitHub: https://github.com/RaiMan/SikuliX1/issues/479

[Sikuli-driver] [Bug 1946925] Re: [2.0.5] Win11: Env.getOSVersion() gets incorrect version (10.0) --- Java problem (fixed with Java18)

2021-10-13 Thread RaiMan
with Java18) Status in SikuliX: Confirmed Bug description: looks like there is an open bug for windows 11 that is expected to be fixed in java 18 https://bugs.openjdk.java.net/browse/JDK-8274840 tracked on GitHub: https://github.com/RaiMan/SikuliX1/issues/479

Re: [Sikuli-driver] [Question #698959]: opencv_java430.dll not in any libs folder

2021-10-13 Thread RaiMan
Question #698959 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698959 Status: Open => Answered RaiMan proposed the following answer: apparently you are running on a 32-Bit system or use a 32-Bit Java version. SikuliX 2.0.5 must be run with a 64-Bit Java vers

[Sikuli-driver] [Bug 1946925] Re: [2.0.5] Win11: Env.getOSVersion() gets incorrect version (10.0)

2021-10-13 Thread RaiMan
version for Windows 11 + [2.0.5] Win11: Env.getOSVersion() gets incorrect version (10.0) ** Changed in: sikuli Status: New => Opinion ** Changed in: sikuli Importance: Undecided => Medium ** Changed in: sikuli Assignee: (unassigned) => RaiMan (raimund-hocke) ** Changed i

[Sikuli-driver] [Bug 1946586] Re: [request] IDE: Preview: create a mask for a given image (make parts of image transparent)

2021-10-10 Thread RaiMan
** Description changed: + follow-up on Github: https://github.com/RaiMan/SikuliX1/issues/433 + -- + Hello, - Recently I investigate an image based automation tool based on CitraTest. + Recently I investigate an image based

[Sikuli-driver] [Bug 1946586] [NEW] [request] IDE: Preview: create a mask for a given image (make parts of image transparent)

2021-10-10 Thread RaiMan
Public bug reported: follow-up on Github: https://github.com/RaiMan/SikuliX1/issues/433 -- Hello, Recently I investigate an image based automation tool based on CitraTest. I was not so enthusiastic about it, however there was one

[Sikuli-driver] [Question #699035]: Status of bug #1946586 changed to 'In Progress' in SikuliX

2021-10-10 Thread RaiMan
Bug #1946586 status changed in SikuliX: New => In Progress https://bugs.launchpad.net/sikuli/+bug/1946586 "[request] IDE: Preview: create a mask for a given image (make parts of image transparent)" This bug is linked to #699035. feature request: set mask area in sikulix-IDE

Re: [Sikuli-driver] [Question #699035]: feature request: set mask area in sikulix-IDE

2021-10-10 Thread RaiMan
Question #699035 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699035 Status: Open => Solved RaiMan changed the question status: made it a request bug -- You received this question notification because your team Sikuli Drivers is an answer contact for Siku

Re: [Sikuli-driver] [Question #699035]: feature request: set mask area in sikulix-IDE

2021-10-10 Thread RaiMan
Question #699035 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699035 Linked to bug: #1946586 https://bugs.launchpad.net/bugs/1946586 "[request] IDE: Preview: create a mask for a given image (make parts of image transparent)" -- You received this question

Re: [Sikuli-driver] [Question #699003]: after screen.type(pattern., "text") and screen.type(pattern, Key.Tab) focus is set to previous component instead of next

2021-10-09 Thread RaiMan
Question #699003 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699003 RaiMan proposed the following answer: Ok, then I have no idea. MayBe something has changed from Java 8 to Java 11 in the AWT Robot implementation. In my test case on Win10/Java17 I did not have any

Re: [Sikuli-driver] [Question #699011]: sikulix4python continuation? --- probably end of 2021

2021-10-09 Thread RaiMan
Question #699011 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699011 Status: Open => Solved RaiMan changed the question status: Ok, understood. Thanks. I will add such a "file-changed-externally" feature to 2.0.6. follow-up: https://github.com/RaiMan/Si

Re: [Sikuli-driver] [Question #699014]: How to spawn find/mouse action/lkeyboard action menu in GUI?

2021-10-09 Thread RaiMan
Question #699014 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699014 RaiMan proposed the following answer: Run the IDE from command line java -jar <ide-jar> -v -c to get more startupinfo -- You received this question notification because your team Sikuli D

Re: [Sikuli-driver] [Question #699014]: How to spawn find/mouse action/lkeyboard action menu in GUI?

2021-10-09 Thread RaiMan
Question #699014 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699014 Status: Open => Answered RaiMan proposed the following answer: You have to try with Java 8. -- You received this question notification because your team Sikuli Drivers is an answer cont

Re: [Sikuli-driver] [Question #699014]: How to spawn find/mouse action/lkeyboard action menu in GUI?

2021-10-08 Thread RaiMan
Question #699014 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699014 Status: Open => Answered RaiMan proposed the following answer: No chance . You have to live without it, Sorry. -- You received this question notification because your team Sikuli Driv

Re: [Sikuli-driver] [Question #699003]: after screen.type(pattern., "text") and screen.type(pattern, Key.Tab) focus is set to previous component instead of next

2021-10-08 Thread RaiMan
Question #699003 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699003 Status: Needs information => Answered RaiMan proposed the following answer: ok, thanks - understood. The only idea: timing problem - the TAB comes too fast. try: screen.type(p, text); screen.sl

Re: [Sikuli-driver] [Question #699011]: sikulix4python continuation? --- probably end of 2021

2021-10-08 Thread RaiMan
Question #699011 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699011 Summary changed to: sikulix4python continuation? --- probably end of 2021 -- You received this question notification because your team Sikuli Drivers is an answer contact for SikuliX.

Re: [Sikuli-driver] [Question #699011]: sikulix4python continuation?

2021-10-08 Thread RaiMan
Question #699011 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699011 Status: Open => Answered RaiMan proposed the following answer: Thanks for your interest. --- sikulix4python There will be no progress before end of this year. ... but I think it should be the n

Re: [Sikuli-driver] [Question #699020]: Issues transferring scripts from 1.13 to 2.05

2021-10-08 Thread RaiMan
Question #699020 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699020 Status: Open => Answered RaiMan proposed the following answer: To get an existing script running in 2.0.5 follow these steps: - somewhere in your file system you have a folder you-name-it.sik

Re: [Sikuli-driver] [Question #699003]: after screen.type(pattern., "text") and screen.type(pattern, Key.Tab) focus is set to previous component instead of next

2021-10-08 Thread RaiMan
Question #699003 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699003 Status: Open => Needs information RaiMan requested more information: please paste your real code snippet. -- You received this question notification because your team Sikuli Drivers is an ans

Re: [Sikuli-driver] [Question #699003]: after screen.type(pattern., "text") and screen.type(pattern, Key.Tab) focus is set to previous component instead of next

2021-10-07 Thread RaiMan
Question #699003 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699003 Status: Open => Answered RaiMan proposed the following answer: screen.type(ptrn, text); searches the pattern, if found clicks the match's middle and then types the given text In your case, I do

Re: [Sikuli-driver] [Question #698998]: showmonitors() value get save as None to a variable

2021-10-07 Thread RaiMan
Question #698998 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698998 Status: Open => Answered RaiMan proposed the following answer: showMonitors() does not return anything (hence None), but prints a line for each monitor to StdOut. sthg. like this? screens = "

Re: [Sikuli-driver] [Question #698982]: SaxNotRecognizedException - XMLRPC server

2021-10-06 Thread RaiMan
Question #698982 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698982 RaiMan proposed the following answer: as mentioned: no solution currently. watch the GitHub-issue for a possible workaround. -- You received this question notification because your team Sikuli Drivers

Re: [Sikuli-driver] [Question #698982]: SaxNotRecognizedException - XMLRPC server

2021-10-06 Thread RaiMan
Question #698982 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698982 Description changed to: * tracked on GitHub https://github.com/RaiMan/SikuliX1/issues/426 Hello, I developped XMLRPC server based in Python and I can call

Re: [Sikuli-driver] [Question #698982]: SaxNotRecognizedException - XMLRPC server

2021-10-06 Thread RaiMan
Question #698982 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698982 Status: Open => Answered RaiMan proposed the following answer: I am sorry, but this is a problem with Jython 2.7.2 also with other features relying SAXParser. You have to stick with the runn

Re: [Sikuli-driver] [Question #698959]: opencv_java430.dll not in any libs folder

2021-10-05 Thread RaiMan
Question #698959 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698959 Status: Open => Answered RaiMan proposed the following answer: tested on Windows 10 latest: Running a Maven project (getting the SikuliX jar from MavenCentral) I do not have any problems using Scr

Re: [Sikuli-driver] [Question #698919]: Find the Best Possible match

2021-10-05 Thread RaiMan
Question #698919 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698919 Status: Open => Answered RaiMan proposed the following answer: match = findBest(...) # the match region shot = None if match: shot = capture(match) -- You received this question notificat

Re: [Sikuli-driver] [Question #698964]: Change Similarity of image at runtime

2021-10-05 Thread RaiMan
Question #698964 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698964 Status: Open => Answered RaiMan proposed the following answer: You have to cycle through the given images/patterns and create new patterns with the needed similarity. Use findBestList() to hand o

Re: [Sikuli-driver] [Question #698957]: Some programs can only be found in the taskbar, how to take a screenshot?

2021-10-05 Thread RaiMan
Question #698957 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698957 RaiMan proposed the following answer: Shots can only be taken from areas that are visible on the screen and contain the pixels, seen on the screen. Hence you always need a visible application window

Re: [Sikuli-driver] [Question #698919]: Find the Best Possible match

2021-09-30 Thread RaiMan
Question #698919 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698919 Status: Open => Answered RaiMan proposed the following answer: You have to write a function, that: - captures the area of the match (result temp image file) - overwrites the original image (file sys

[Sikuli-driver] [Bug 1922793] Re: Null pointer exception on using WaitBest

2021-09-29 Thread RaiMan
** Changed in: sikuli Status: New => In Progress ** Changed in: sikuli Importance: Undecided => Medium ** Changed in: sikuli Assignee: (unassigned) => RaiMan (raimund-hocke) ** Changed in: sikuli Milestone: None => 2.0.6 -- You received this bug notification

[Sikuli-driver] [Bug 1922914] Re: [IDE} color of method waitBestList is different an in black; excepted blue similar to findBest

2021-09-29 Thread RaiMan
** Changed in: sikuli Milestone: None => 2.0.6 ** Changed in: sikuli Assignee: (unassigned) => RaiMan (raimund-hocke) ** Changed in: sikuli Importance: Undecided => Medium ** Changed in: sikuli Status: New => Fix Committed ** Summary changed: - [IDE} col

[Sikuli-driver] [Bug 1943866] Re: [2.0.5] IDE: Preview crash with blank in folder-/filename (fixed in 2.0.6)

2021-09-29 Thread RaiMan
** Changed in: sikuli Importance: Medium => Critical -- You received this bug notification because you are a member of Sikuli Drivers, which is subscribed to SikuliX. https://bugs.launchpad.net/bugs/1943866 Title: [2.0.5] IDE: Preview crash with blank in folder-/filename (fixed in 2.0.6)

[Sikuli-driver] [Bug 1840689] Re: [2.0.6] macOS: Java 9+: multi-monitor with 1st Retina and 2nd non-Retina does not work

2021-09-29 Thread RaiMan
[2.0.6] macOS: Java 9+: multi-monitor with 1st Retina and 2nd non- Retina does not work Status in SikuliX: Fix Committed Bug description: The issue will be tracked on GitHub: https://github.com/RaiMan/SikuliX1/issues/474 I have a retina macbook p

[Sikuli-driver] [Bug 1931699] Re: [2.0.5] IDE: Help menu: Ask Question and Report Bug gives a capture of null/null/null

2021-09-29 Thread RaiMan
** Changed in: sikuli Status: New => Fix Committed ** Changed in: sikuli Importance: Undecided => Critical ** Changed in: sikuli Assignee: (unassigned) => RaiMan (raimund-hocke) ** Changed in: sikuli Milestone: None => 2.0.6 -- You received this bug notification

[Sikuli-driver] [Question #682295]: Status of bug #1840689 changed to 'Fix Committed' in SikuliX

2021-09-29 Thread RaiMan
Bug #1840689 status changed in SikuliX: Confirmed => Fix Committed https://bugs.launchpad.net/sikuli/+bug/1840689 "[2.0.6] macOS: Java 9+: multi-monitor with 1st Retina and 2nd non-Retina does not work" This bug is linked to #682295. [1.1.4] macOS 10.14.5 - Taking a screenshot with

[Sikuli-driver] [Bug 1927536] Re: Screenshot function / Windows Resolution Scaling

2021-09-29 Thread RaiMan
** Changed in: sikuli Status: New => In Progress ** Changed in: sikuli Importance: Undecided => Wishlist ** Changed in: sikuli Assignee: (unassigned) => RaiMan (raimund-hocke) ** Changed in: sikuli Milestone: None => 2.0.6 -- You received this bug notification

[Sikuli-driver] [Bug 1931699] Re: [2.0.5] IDE: Help menu: Ask Question and Report Bug gives a capture of null/null/null

2021-09-29 Thread RaiMan
** Summary changed: - [2.0.5} IDE: Help menu: Ask Question and Report Bug gives a capture of null/null/null + [2.0.5] IDE: Help menu: Ask Question and Report Bug gives a capture of null/null/null -- You received this bug notification because you are a member of Sikuli Drivers, which is

[Sikuli-driver] [Bug 1530436] Re: [2.0.4] Mac: not possible to get SikuliX to front with App.focus("SikuliX") --- workaround???

2021-09-29 Thread RaiMan
** Changed in: sikuli Status: In Progress => Fix Committed ** Summary changed: - [2.0.4] Mac: not possible to get SikuliX to front with App.focus("SikuliX") --- workaround??? + [2.0.4] Mac: not possible to get SikuliX to front with App.focus("SikuliX") --- workaround --- fixed 2.0.6 **

[Sikuli-driver] [Question #272494]: Status of bug #1530436 changed to 'Fix Committed' in SikuliX

2021-09-29 Thread RaiMan
Bug #1530436 status changed in SikuliX: In Progress => Fix Committed https://bugs.launchpad.net/sikuli/+bug/1530436 "[2.0.4] Mac: not possible to get SikuliX to front with App.focus("SikuliX") --- workaround???" This bug is linked to #272494. Popup or Input box On Top

[Sikuli-driver] [Bug 1859910] Re: [2.0.1] Selenium is not working in Sikuli IDE

2021-09-28 Thread RaiMan
a jar to be used in script must be on class path before IDE/script start (since Java 9+) ** Changed in: sikuli Status: In Progress => Won't Fix ** Changed in: sikuli Milestone: 2.0.2 => None -- You received this bug notification because you are a member of Sikuli Drivers, which is

[Sikuli-driver] [Bug 1909652] Re: [2.1.0] region.find using a pattern is broken.

2021-09-28 Thread RaiMan
2.1.0 not useable ** Changed in: sikuli Status: In Progress => Invalid ** Changed in: sikuli Milestone: 2.1.0 => None -- You received this bug notification because you are a member of Sikuli Drivers, which is subscribed to SikuliX. https://bugs.launchpad.net/bugs/1909652 Title:

[Sikuli-driver] [Bug 1928745] Re: [error] Error caused by: Traceback (most recent call last):

2021-09-28 Thread RaiMan
no user response ** Changed in: sikuli Status: New => Won't Fix ** Changed in: sikuli Assignee: (unassigned) => RaiMan (raimund-hocke) -- You received this bug notification because you are a member of Sikuli Drivers, which is subscribed to SikuliX. https://bugs.launchpad.ne

[Sikuli-driver] [Bug 1899843] Re: [2.0.4] IDE: Jython scripting: os.chdir progresses after script has exited

2021-09-28 Thread RaiMan
Since scriptruns in the IDE are done with the same Jython interpreter instance (singleton), you are responsible for setting/resetting your own changes of interpreter states. ** Changed in: sikuli Status: In Progress => Won't Fix ** Changed in: sikuli Importance: Medium => Undecided **

Re: [Sikuli-driver] [Question #698832]: Regions MID_BIG and MID_THIRD do not work --- fixed 2.0.6 --- workaround

2021-09-28 Thread RaiMan
Question #698832 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698832 Status: Open => Answered RaiMan proposed the following answer: thanks for reporting -- You received this question notification because your team Sikuli Drivers is an answer contact for Siku

Re: [Sikuli-driver] [Question #698832]: Regions MID_BIG and MID_THIRD do not work --- fixed 2.0.6 --- workaround

2021-09-28 Thread RaiMan
Question #698832 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698832 Summary changed to: Regions MID_BIG and MID_THIRD do not work --- fixed 2.0.6 --- workaround Description changed to: --- workaround use MIDDLE_BIG instead of MID_BIG and MIDDLE instead of

Re: [Sikuli-driver] [Question #698821]: Drag And Drop is not working

2021-09-22 Thread RaiMan
Question #698821 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698821 Status: Open => Answered RaiMan proposed the following answer: Supposing SikuliX 2.0.5 and dragDrop(img1, img2). Your Python setup does not matter (we are using Jython to run the Python scri

Re: [Sikuli-driver] [Question #698815]: Pass parameter to openApp

2021-09-21 Thread RaiMan
Question #698815 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698815 Status: Open => Answered RaiMan proposed the following answer: With 2.0.5 try this: app = App(path) app.setUsing(file) app.open() tested with notepad++ -- You received this question notificat

Re: [Sikuli-driver] [Question #698795]: Find Any Addition / removal of file in directory in parallel

2021-09-21 Thread RaiMan
Question #698795 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698795 RaiMan proposed the following answer: based on the baeldung example: import java.nio.file.FileSystems as FileSystems import java.nio.file.Paths as Paths import java.nio.file.StandardWatchEventKinds

Re: [Sikuli-driver] [Question #698795]: Find Any Addition / removal of file in directory in parallel

2021-09-21 Thread RaiMan
Question #698795 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698795 Status: Open => Answered RaiMan proposed the following answer: Java is useable from inside Jython scripts. I will give you a sample later. meanwhile: https://www.jython.org/jython-old- sites/arch

Re: [Sikuli-driver] [Question #698795]: Find Any Addition / removal of file in directory in parallel

2021-09-20 Thread RaiMan
Question #698795 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698795 Status: Open => Answered RaiMan proposed the following answer: Since we are on Jython/Java, you can try with: https://www.baeldung.com/java-nio2-watchservice The are solutions for Python (

[Sikuli-driver] [Bug 1943866] Re: [2.0.5] IDE: Preview crash with plan in folder-/filename (fixed in 2.0.6)

2021-09-19 Thread RaiMan
with blank in folder-/filename (fixed in 2.0.6) ** Changed in: sikuli Status: New => Fix Committed ** Changed in: sikuli Importance: Undecided => Medium ** Changed in: sikuli Assignee: (unassigned) => RaiMan (raimund-hocke) ** Changed in: sikuli Milestone: None

[Sikuli-driver] [Bug 1943866] Re: Exception when opening Pattern Settings - preview

2021-09-18 Thread RaiMan
... The Foldername contained a SPACE are you talking about the folder where you stored the script (.sikuli) ? -- You received this bug notification because you are a member of Sikuli Drivers, which is subscribed to SikuliX. https://bugs.launchpad.net/bugs/1943866 Title: Exception when

<    1   2   3   4   5   6   7   8   9   10   >