Re: [Sikuli-driver] [Question #254203]: Hotkey Listener overrides hotkey use (ctrl-c)

2014-09-09 Thread Max
Question #254203 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/254203

Max posted a new comment:
I tried the first one first, didn't work so well, I will check again
with both solutions when I get back from work or maybe at lunch. It
could possibly be a little problematic because I'm in my example
actually physically pressing ctrl + c the same time, I think that's
maybe why the delays and timing seem so critical. I'm on Ubuntu 14.04.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #254203]: Hotkey Listener overrides hotkey use (ctrl-c)

2014-09-09 Thread RaiMan
Question #254203 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/254203

RaiMan posted a new comment:
ok understood.

then this should help:

wait(0.3f); // or an even higher value 
type(c, Key.CTRL)

or
wait(0.3f); // or an even higher value 
key.Down(Key.CTRL)
wait(0.1f)
type(c)
keyUp()

I doubt that the inner extra waits are needed.

sorry for the wrong wait values: a float as seconds is needed.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #254203]: Hotkey Listener overrides hotkey use (ctrl-c)

2014-09-08 Thread RaiMan
Question #254203 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/254203

RaiMan posted a new comment:
BTW: what system are you working on?

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #254203]: Hotkey Listener overrides hotkey use (ctrl-c)

2014-09-08 Thread RaiMan
Question #254203 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/254203

Summary changed to:
Hotkey Listener overrides hotkey use (ctrl-c)

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp