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

2021-09-21 Thread Chetan
Question #698815 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698815 Status: Answered => Solved Chetan confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because your team Sikuli Drivers is an

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

2021-09-21 Thread Chetan
Question #698815 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698815 Chetan posted a new comment: Thanks Raiman like always. below code solved it path1=r"C:\Program Files\Adobe\Acrobat Trunk\Acrobat\Acrobat.exe" file=r"C:\test.pdf" someApp = App(path1)

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 notification

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

2021-09-21 Thread Chetan
New question #698815 on SikuliX: https://answers.launchpad.net/sikuli/+question/698815 Hello i would like to launch application acrobat.exe and mention the file name to open i am able to do via command line and also via subprocess.Popen. however it does not work with openApp tried searching forum

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

2021-09-21 Thread Chetan
Question #698795 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698795 Chetan confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because your team Sikuli Drivers is an answer contact for SikuliX.

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

2021-09-21 Thread Chetan
Question #698795 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/698795 Status: Answered => Solved Chetan confirmed that the question is solved: Thanks a ton raiman -- You received this question notification because your team Sikuli Drivers is an answer contact for

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 as

Re: [Sikuli-driver] [Question #689166]: SikulixIDE-2.0.3 won't type in Oracle VirtualBox VM

2021-09-21 Thread Sophia Gracy
Question #689166 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/689166 Sophia Gracy posted a new comment: Forgot to mention if you want to test if App.focus solves problem you should add it the start then follow it up with type() or paste(). Also the indexing starts at 0 so

Re: [Sikuli-driver] [Question #689166]: SikulixIDE-2.0.3 won't type in Oracle VirtualBox VM

2021-09-21 Thread Rick Sam
Question #689166 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/689166 Rick Sam posted a new comment: I had the same type of problem where sikuli would use soft keyboard but still not register keys in a different window. It because sikuli didn't have the right permissions.

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-