Re: [Sikuli-driver] [Question #667296]: Java FX app: using SikuliX features in handlers freezes UI

2018-04-04 Thread Julian
Question #667296 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/667296 Julian posted a new comment: I run into bugs if i have my timeline into the run function. Then somehow the ui freezes again if i call Thread.sleep or anything like that. Now it's in the controller class

Re: [Sikuli-driver] [Question #667296]: Java FX app: using SikuliX features in handlers freezes UI

2018-04-04 Thread Julian
Question #667296 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/667296 Status: Answered => Solved Julian confirmed that the question is solved: Thank you very much, everything working fine right now! I changed my run() method to: public void run() { //sta

Re: [Sikuli-driver] [Question #667296]: Java FX app: using SikuliX features in handlers freezes UI

2018-04-03 Thread Julian
Question #667296 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/667296 Status: Solved => Open Julian is still having a problem: I sadly run into a new problem: public class Controller{ //This Listview is used as log public ListView listView_log; pub

Re: [Sikuli-driver] [Question #667296]: Java FX app: using SikuliX features in handlers freezes UI

2018-03-29 Thread Julian
Question #667296 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/667296 Julian posted a new comment: https://beginnersbook.com/2013/03/multithreading-in-java/ This is probably the way for me to go? -- You received this question notification because your team Sikuli Drivers

Re: [Sikuli-driver] [Question #667296]: Java FX app: using SikuliX features in handlers freezes UI

2018-03-28 Thread Julian
Question #667296 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/667296 Status: Answered => Solved Julian confirmed that the question is solved: Okey, ima try it and post again if i need further help. But i think i can do it myself. I did a lot of console applicati

[Sikuli-driver] [Question #667296]: Sikuli UI Freeze

2018-03-28 Thread Julian
New question #667296 on Sikuli: https://answers.launchpad.net/sikuli/+question/667296 Hey, i am new to Java and sikuli and i do need some help. I work with Java 8 and the Intellij IDEA. This is my Main.java class: package main; import javafx.application.Application; import

[Sikuli-driver] [Bug 1740421] Re: [1.1.1] VNC: Region capture not correct: vnc.capture(someRegion) --- fixed 1.1.2 2018-03-06 build#120

2018-03-08 Thread Julian
Verified in 1.1.2 2018-03-10 The issue has been fixed, I can no longer reproduce it. Thank you very much! -- You received this bug notification because you are a member of Sikuli Drivers, which is subscribed to Sikuli. https://bugs.launchpad.net/bugs/1740421 Title: [1.1.1] VNC: Region

[Sikuli-driver] [Bug 1740421] Re: Region not captured correctly in VNC session

2018-02-26 Thread Julian
I have found a way to bypass this issue: BufferedImage croppedImage = vnc.capture().getImage().getSubimage(xAxis, yAxis, width, height); ImageIO.write(croppedImage, "png", new File("tempRead.png")); String text = TextRecognizer.getInstance().recognize(ImageIO.read(new File("tempRead.png")));

[Sikuli-driver] [Bug 1740421] Re: Region not captured correctly in VNC session

2017-12-29 Thread Julian
The BufferedImage looks the same as the second image in the attached distorted.png I tried to do a find: tLocked.find("loc.png"); But it didn't worked FindFailed: loc.png: (118x8) in R[9,170 240x185]@S(0) E:Y, T:3.0 Line 2782, in file Region.java -- You received this bug notification

[Sikuli-driver] [Bug 1740421] [NEW] Region not captured correctly in VNC session

2017-12-28 Thread Julian
Public bug reported: Sikuli 1.1.2-20171218.172518-66 OS: Windows Embeded Hi, I'm trying to read the text from a specified region, but what I've noticed is that, when I'm trying to see what's in that actual region, and capture that image, it becomes distorted. If the region is higher than

Re: [Sikuli-driver] [Question #267182]: TightVNC: click into VNC window does not work

2017-12-19 Thread Julian
Question #267182 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/267182 Julian posted a new comment: Thank you! Worked like a charm! -- You received this question notification because your team Sikuli Drivers is an answer contact for Sikuli

Re: [Sikuli-driver] [Question #267182]: TightVNC: click into VNC window does not work

2017-12-15 Thread Julian
Question #267182 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/267182 Julian requested more information: Thank you very much, what worked. But what about clicking? If I'm doing something like: asVNC(vnc.getRow(3, 4).getCol(1, 3), vnc).click(42, 80); it will still click

Re: [Sikuli-driver] [Question #267182]: TightVNC: click into VNC window does not work

2017-12-15 Thread Julian
Question #267182 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/267182 Julian requested more information: I'm still encountering this issue. I'm connecting through VNC to a machine. When I do the first region click, it clicks on my machine, and then I do another region click

Re: [Sikuli-driver] [Question #642404]: Read lines from a file and pause for hotkey?

2017-06-10 Thread Julian Moorhouse
Question #642404 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/642404 Julian Moorhouse posted a new comment: Sorry I actually meant, how would I exit the line for loop. If there and exitfor perhaps ? -- You received this question notification because your team Sikuli Drivers

Re: [Sikuli-driver] [Question #642404]: Read lines from a file and pause for hotkey?

2017-06-10 Thread Julian Moorhouse
Question #642404 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/642404 Julian Moorhouse posted a new comment: To make things perfect, could I somehow exit the file loop. I'm thinking I could use an input popup or a yes / no popup. Thoughts ? -- You received this question

Re: [Sikuli-driver] [Question #642404]: Read lines from a file and pause for hotkey?

2017-06-09 Thread Julian Moorhouse
Question #642404 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/642404 Julian Moorhouse posted a new comment: >Should the process wait for a key-press after each line? Yes. A popup sounds ideal :) -- You received this question notification because your team Sikuli Driv

Re: [Sikuli-driver] [Question #642404]: Read lines from a file and pause for hotkey?

2017-06-09 Thread Julian Moorhouse
Question #642404 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/642404 Julian Moorhouse gave more information on the question: Hmmm I could perhaps but the hotkey check around the pause -- You received this question notification because your team Sikuli Drivers is an answer

Re: [Sikuli-driver] [Question #642404]: Read lines from a file and pause for hotkey?

2017-06-09 Thread Julian Moorhouse
Question #642404 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/642404 Status: Solved => Open Julian Moorhouse is still having a problem: Oops I didn't mean to mark that as answer. Thanks, however I really need to wait until a hotkey is pressed rather than w

Re: [Sikuli-driver] [Question #642404]: Read lines from a file and pause for hotkey?

2017-06-09 Thread Julian Moorhouse
Question #642404 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/642404 Status: Answered => Solved Julian Moorhouse confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because your team Sikuli Driv

[Sikuli-driver] [Question #642404]: Read lines from a file and pause for hotkey?

2017-06-08 Thread Julian Moorhouse
New question #642404 on Sikuli: https://answers.launchpad.net/sikuli/+question/642404 I'd like to iterate through lines in from a file. Using each line to paste or type that line into an application. I'd then like to wait for some interaction perhaps via a hotkey. I've managed to find this

[Sikuli-driver] [Question #214349]: Mac sending wrong characters when running against a Virtual Machine

2012-11-16 Thread Julian Bevan
New question #214349 on Sikuli: https://answers.launchpad.net/sikuli/+question/214349 Hi, I am trying to use Sikuli to type some commands into a virtual machine I am running and can't seem to reproduce the : character. An รถ char comes up instead. I am running from a Mac with a Swedish keyboard