Re: [Sikuli-driver] [Question #235769]: Always Prompt: "FindFailed: can not find *.png on the screen"

2013-09-18 Thread max
Question #235769 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235769

Status: Answered => Solved

max confirmed that the question is solved:
Hi RaiMan,
I download a new version of sikuli, it runs normally,  but I am still very 
grateful to you.


Good luck~

-- 
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 #235769]: Always Prompt: "FindFailed: can not find *.png on the screen"

2013-09-18 Thread max
Question #235769 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235769

max posted a new comment:
FIles in test.sikuli folder:

1379331036687.png
test.html
test.py

The content of test.py:

click("1379331036687.png")

-- 
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 #235881]: Have to close and reopen Sikuli after editing any imported modules

2013-09-18 Thread David Adnitt
Question #235881 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235881

David Adnitt posted a new comment:
Sorry just checked this on Windows 7.

-- 
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 #235881]: Have to close and reopen Sikuli after editing any imported modules

2013-09-18 Thread RaiMan
Question #235881 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235881

RaiMan posted a new comment:
@ David
thanks for feedback.

I know, sometimes my answers are a challenge ;-)

BTW: on Mac too?
 <..>
I really appropriate your help and work done on Sikuli.

Sometimes I hate these automatics ;-)

-- 
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 #235193]: [1.0.x] Script hangs after extended test runs

2013-09-18 Thread DavidL
Question #235193 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235193

Status: Answered => Open

DavidL is still having a problem:
Its ok to look at the real script, I'll send it to the email address in
your profile.

Thanks

-- 
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 #235871]: Selecting a value from combo box

2013-09-18 Thread RaiMan
Question #235871 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235871

Status: Open => Answered

RaiMan proposed the following answer:
Is the content of the list known and fix?

If yes, simply counting the KeyDown actions until a specified step value is 
reached might work. 
The needed steps are evaluated before based on the known content and the target 
entry.

Possible to have a look at that on the net somewhere?

-- 
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 #235881]: Have to close and reopen Sikuli after editing any imported modules

2013-09-18 Thread RaiMan
Question #235881 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235881

RaiMan proposed the following answer:
@ Roman
Thanks. forgot about this solution.
But will this work with  too, since the imported names are 
not purged from the current context?

So will this work too:

if 'mymodule' in sys.modules:
   del sys.modules['mymodule']
 mymodule = None
 del mymodule
 from mymodule import *

the recommended solution

import foo
reload foo
from foo import *

works with the exception that the first time first level code in foo
will be executed twice.

-- 
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 #235881]: Have to close and reopen Sikuli after editing any imported modules

2013-09-18 Thread David Adnitt
Question #235881 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235881

Status: Answered => Solved

David Adnitt confirmed that the question is solved:

Hi,

Thanks for the quick response.

A little adjustment to your solution, there needs to be brackets around
'foo' for the reload.

Example:

import foo
reload (foo)
from foo import *

Otherwise this works great. Solves my problem!

I really appropriate your help and work done on Sikuli.

Thanks,
David

-- 
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 #235881]: Have to close and reopen Sikuli after editing any imported modules

2013-09-18 Thread Roman Podolyan
Question #235881 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235881

Status: Open => Answered

Roman Podolyan proposed the following answer:
For combating this problem with RC3 I used for import code like this:

==
 # my module import

 sys.path.append("/Users/username/scriptfolder.sikuli/")
 if 'mymodule' in sys.modules:
   del sys.modules['mymodule']
 mymodule = None
 del mymodule
 import mymodule
==

Didn't test it with 1.0.1 so far, but you can give it a try. Replace
path string and module name with yours (of course).

-- 
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 #235871]: Selecting a value from combo box

2013-09-18 Thread Muhammed
Question #235871 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235871

Status: Answered => Open

Muhammed is still having a problem:

Dear Akbar,

Option 2 is fine, but there is some complexities :-

1) List is very large for validation

2) The highlighted or selected value is not coming to the clip board
manually also.

-- 
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 #235769]: Always Prompt: "FindFailed: can not find *.png on the screen"

2013-09-18 Thread RaiMan
Question #235769 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235769

RaiMan proposed the following answer:
use imagenames that only contain ASCII characters, the underline _ and
the hyphen -

Imagenames containing other special characters, spaces or unicode
characters might lead to problems.

-- 
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 #235769]: Always Prompt: "FindFailed: can not find *.png on the screen"

2013-09-18 Thread max
Question #235769 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235769

max posted a new comment:
The name of png is the one in test.py, so I think is may not be
inconsistent problem.

-- 
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 #235879]: Can Sikuli simulate ALT+SPACE+X

2013-09-18 Thread KaMiNsKy
Question #235879 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235879

Status: Answered => Solved

KaMiNsKy confirmed that the question is solved:
thanks, work without wait

-- 
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 #235879]: Can Sikuli simulate ALT+SPACE+X

2013-09-18 Thread RaiMan
Question #235879 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235879

Status: Open => Answered

RaiMan proposed the following answer:
Might be a timing problem.

Try this:
type(Key.Space, KeyModifier.ALT) # opens window menu
wait(0,5)
type("x")

-- 
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 #235879]: Can Sikuli simulate ALT+SPACE+X

2013-09-18 Thread KaMiNsKy
Question #235879 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235879

Status: Needs information => Open

KaMiNsKy gave more information on the question:
ALT+SPACE+X its hot key for maximize window, i want type it

-- 
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 #235879]: Can Sikuli simulate ALT+SPACE+X

2013-09-18 Thread RaiMan
Question #235879 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235879

Status: Open => Needs information

RaiMan requested more information:
Hot key?

What are you trying? addHotkey()?

-- 
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 #235879]: Can Sikuli simulate ALT+SPACE+X

2013-09-18 Thread KaMiNsKy
Question #235879 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235879

Status: Answered => Open

KaMiNsKy is still having a problem:
unfortunately does not work as a hot key

-- 
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 #235894]: sikuli 1.0.1 closing while trying to open .sikuli script

2013-09-18 Thread RaiMan
Question #235894 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/235894

RaiMan requested more information:
Thanks, got your mail.

Could you do the following:

in the registry delete the branches starting with org/sikuli beneath the main 
branch
HKEY_CURRENT_USER\Software\JavaSoft\Prefs\

and try again with option -d

On problems, pls. send the log again

-- 
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