Raimund Hocke
Raimund Hocke
this is a script related to https://answers.launchpad.net/sikuli/+question/692550 ``` Reg=Region(1400+0,675,365,51) Reg.highlight(2) import java.lang.Runtime as RT jrt = RT.getRuntime() print "max:", jrt.maxMemory(), "tot:", jrt.totalMemory(), "free:", jrt.freeMemory() for i in range(1,2000): Reg.text() if...
A workaround is to disable the taskbar icon flashing completely: https://www.thewindowsclub.com/disable-flashing-taskbar-buttons-windows Be sure to set both values to 0 (zero).
Did you try to solve this on the Python level as well? Should be possible. Another option would be to use the server feature. I will have a look into...
Just tested with the server feature: ``` curl http://192.168.178.26:50001/RUN/serverTest PASS 200 runScript: returned: 42 ``` So you might have a chance to check your return code.
BTW: 42 = The Hitchhiker's Guide to the Galaxy/Douglas Adams ? ;-)
Thanks for finding. Have to check. Could you please provide the complete string parameter for `App()`: ``` myApp = App("cmd /c ...) ```
Simply use: `App.open(r"c:\test\test.bat")`
Nevertheless I will add a suitable solution for cases like: `App.open("cmd /c start ......")`