Re: [Sikuli-driver] [Question #233667]: xlrd open workbook module not found

2013-08-12 Thread RaiMan
Question #233667 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233667

Status: Open = Answered

RaiMan proposed the following answer:
--1. xlrd 0.9 definitely does not work with Sikuli (neither RC3 (Jython
2.5.2) nor version 1.0.1 (Jython 2.5.4), since it contains features of
Python language level 2.5+ (BTW: this is mentioned on the download page)

--2. xlrd 0.7.9 definitely works

-3. how to easily use it with Sikuli:
- download the only needed stuff (I have extracted it for you) as zip from:
https://dl.dropboxusercontent.com/u/42895525/xlrd.zip
- unzip - this will make the needed folder xldd (which also contains docs and 
examples)
- make sure you have a folder C:\Program Files (x86)\Sikuli X\Lib
- copy the folder xlrd to C:\Program Files (x86)\Sikuli X\Lib

It does not make sense to pollute your system path additionally with python or 
Sikuli related path's: Jython does not look into system path at all.
The folder Lib you created is a standard folder, known by the running Sikuli 
Jython 
(as you can see by using 
for e in sys.path: print e
at the beginning or only line in a Sikuli script)

I tested this and it works.

--4. filenames in Windows ...
... containing backslashes must handled specially

- double the backslashes
- use raw string rpath with backslashes
- or use forward slashes instead of backslashes

-- 
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 #233860]: Region.find or Region.findAll problem in Sikuli Version 1.0.1

2013-08-12 Thread RaiMan
Question #233860 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233860

Status: Open = Answered

RaiMan proposed the following answer:
You are not using the defined region to restrict the searches:

click() works on the whole screen

but 
reg.click()
would only search in the Region reg

this should principally work:

reg = Region(413,248,680,510)
while reg.exists(1376053585710.png):
click(reg.getLastMatch())
find(1376053640208.png)
click(1376053656049.png)
find(1376053684932.png)
click(1376053695853.png)
else:
print(no more found)

comments:
-- exists
in while and if constructs use exists instead of find, since it avoids the 
unnecessary exception if not found 

-- getLastMatch
The last succesful find operation is remembered by a region and can be used to 
act on it with click(reg.getLastMatch()), which on top avoids an additional 
search (which exactly is your problem in this case).

--- BTW: if 1376053585710.png ...
... is your same icon, that might be there multiple times in the Region reg, 
than you loop will only work, if the processed icon vanishes or changes in a 
way, that it is no longer found, after being processed. Otherwise you might 
always get the same icon with 
 reg.exists(1376053585710.png).

The only chance to solve this is findAll() (see docs)

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 #233860]: Region.find or Region.findAll problem

2013-08-12 Thread RaiMan
Question #233860 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233860

Summary changed to:
Region.find or Region.findAll 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 #233860]: Region.find or Region.findAll problem

2013-08-12 Thread RaiMan
Question #233860 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233860

RaiMan proposed the following answer:
I just realized, that you are talking about 1.0.1

This is even easier:

reg = Region(413,248,680,510)
while reg.exists(1376053585710.png):
reg.click()
find(1376053640208.png)
click(1376053656049.png)
find(1376053684932.png)
click(1376053695853.png)
else:
print(no more found)

... since beginning with 1.0.0 reg.click() will click the last
successful match in reg, if one exists or the center otherwise.

-- 
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 #233667]: xlrd open workbook module not found

2013-08-12 Thread mach81
Question #233667 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233667

Status: Answered = Open

mach81 is still having a problem:
I have downloaded Sikuli from here -
https://launchpad.net/sikuli/+download

Sikuli-IDE-1.0.0-Win64.zip

Unzipped the files and am currently using sikuli-ide.cmd to run Sikuli.

No folder C:\Program Files (x86)\Sikuli X\Lib has been created. It would
be great if you can let me know where I am going wrong with the
installation.

-- 
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 #233667]: xlrd open workbook module not found

2013-08-12 Thread mach81
Question #233667 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233667

Status: Answered = Solved

mach81 confirmed that the question is solved:
Thanks RaiMan, that solved my question.

-- 
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 #231861]: sikuli with the android-robot extension? --- not available

2013-08-12 Thread Yolkfull
Question #231861 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/231861

Status: Answered = Open

Yolkfull is still having a problem:
Thanks for the reply. Is there an instruction for compiling the
extension from source code?

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


[Sikuli-driver] [Question #233894]: how to save a object to a file

2013-08-12 Thread jack.cai
New question #233894 on Sikuli:
https://answers.launchpad.net/sikuli/+question/233894

find(image)

I find a picture in web page, then i want to save this pic to a file, but it 
fail

p=find(Vefifjf.png)
f=file(E:\\WorkPlc\\a.jpg,wb)
f.write(p)
f.close()


TypeError: argument 1 must be string or buffer, not org.sikuli.script.Match


-- 
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 #231861]: sikuli with the android-robot extension? --- not available

2013-08-12 Thread RaiMan
Question #231861 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/231861

Status: Open = Answered

RaiMan proposed the following answer:
?-) a not existing extension cannot be compiled from the not existing
source ?-)

-- 
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 #233894]: how to save a object to a file

2013-08-12 Thread RaiMan
Question #233894 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233894

Status: Open = Answered

RaiMan proposed the following answer:
--1. p is a Match object, that only knows, where on the screen the
picture Vefifjf.png was found.

--2. Why do you want to save a picture, that you already have as file: script 
folder/Vefifjf.png
the file's path is:
import os # put it at the beginning of the script

pathImg = os.path.join(getBundlePath(), Vefifjf.png)


--3. you might copy the picture to some other place using:
import shutil # put it at the beginning of the script

img = Vefifjf.png
p=find(img)
shutil.copy(img, E:\\WorkPlc\\a.png) # switching to .jpg not possible this way

-- 
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 #233894]: how to save a object to a file

2013-08-12 Thread RaiMan
Question #233894 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233894

RaiMan proposed the following answer:
Sorry, again:

--3. you might copy the picture to some other place using:
import shutil # put it at the beginning of the script
import os # put it at the beginning of the script

img = Vefifjf.png
p=find(img)
shutil.copy(os.path.join(getBundlePath(), img), E:\\WorkPlc\\a.png) # 
switching to .jpg not possible this way

-- 
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 #231861]: sikuli with the android-robot extension? --- not available

2013-08-12 Thread Yolkfull
Question #231861 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/231861

Status: Answered = Open

Yolkfull is still having a problem:
Sorry, not existing source?  Does this directory on github contains the
source code?

 sikuli / extensions / android-robot / src / main / java / org / sikuli
/ script / android /

Thank you so much, RaiMan, for the help.

-- 
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 #231861]: sikuli with the android-robot extension? --- not available

2013-08-12 Thread RaiMan
Question #231861 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/231861

Status: Open = Answered

RaiMan proposed the following answer:
you seem to talk about:

https://github.com/sikuli/sikuli/tree/develop/extensions/android-robot

This never really worked and cannot be used with newer Android versions anyway.
So yes: it is a not existing source in this sense ;-)

Sikuli on mobile is a major topic for me for next year though (some
betas might be available earlier towards end of this year based on the
Nexus 7 2013 with 4.3)

-- 
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 #233894]: how to save a object to a file

2013-08-12 Thread jack.cai
Question #233894 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233894

jack.cai posted a new comment:
Thank you RaiMan.  I understand your mean.

in fact,  above img is a input text, have a Verification Code on img's
right

so my code as below:
p=find(Vefifjf.png)
# region of verification code
p.right(50)

you know the verification code will change each time, i want save this 
code(pic) to a file, then to another program to handle(discern).
do you have better way.

-- 
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 #233894]: how to save a object to a file

2013-08-12 Thread RaiMan
Question #233894 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233894

RaiMan proposed the following answer:
Sorry, copy and paste typos.

import shutil # put it at the beginning of the script

shutil.move(code, E:\\WorkPlc\\a.png) # moves it to the permanent
storage

-- 
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 #233894]: how to save a object to a file

2013-08-12 Thread RaiMan
Question #233894 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233894

RaiMan proposed the following answer:
this should do it:

mport shutil # put it at the beginning of the script
import os # put it at the beginning of the script

img = Vefifjf.png
p=find(img)
code = capture(p.right(50)) # creates a temp image file of the region
shutil.move(img, E:\\WorkPlc\\a.png) # moves it to the permanent storage

-- 
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 #233894]: how to save a object to a file

2013-08-12 Thread jack.cai
Question #233894 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233894

Status: Answered = Solved

jack.cai confirmed that the question is solved:
RaiMan, thank you very much.

-- 
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 #233894]: how to save a object to a file

2013-08-12 Thread jack.cai
Question #233894 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233894

jack.cai confirmed that the question is solved:
Thanks RaiMan, that solved my question.

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


[Sikuli-driver] [Question #233903]: image not reconized in while loop

2013-08-12 Thread shankar ganesh
New question #233903 on Sikuli:
https://answers.launchpad.net/sikuli/+question/233903


b1=Pattern(Pattern(LeftforeLeft.png).targetOffset(-90,-144)).targetOffset(-90,-144)

b2=Pattern(Pattern(LeftforeLeft-1.png).targetOffset(-90,-113)).targetOffset(-90,-111)

b3=Pattern(Pattern(LeftforeLeft-2.png).targetOffset(-90,-80)).targetOffset(-90,-80)

b4=Pattern(Pattern(LeftforeLeft-3.png).targetOffset(-90,-51)).targetOffset(-90,-51)

b5=Pattern(Pattern(LeftforeLeft-4.png).targetOffset(-90,-17)).targetOffset(-90,-17)

b6=Pattern(Pattern(Leftforeleft-5.png).targetOffset(-90,16)).targetOffset(-90,16)

b7=Pattern(Pattern(Leftforeleft-6.png).targetOffset(-91,49)).targetOffset(-91,49)

b8=Pattern(Pattern(Leftforeleft-7.png).targetOffset(-90,82)).targetOffset(-90,82)

b9=Pattern(Pattern(leftforeleft-10.png).targetOffset(-90,114)).targetOffset(-90,114)

b10=Pattern(Pattern(Leftforeleft-9.png).targetOffset(-92,147)).targetOffset(-92,147)
n=1
while n0:
print n   
wait(4)
find(eval(b+str(n)))
click(eval(b+str(n)))
wait(1)
click(Copture.png)
wait(5)
if exists(Ok-4.png):
find(Ok-4.png)
click(Ok-4.png)
wait(2)  
else:
print Success
wait(10)
n=n+1
if n==11:
break



while i am trying to run the above script, getting find failed error. while 
running the loop up to 1 to 7 or 6 to 10(breaking the loop refer last line) its 
finds the particular offset in the screen and executed the loop successfully. 
but while running the entire script say ( loop 1 to 10) sikuli not able to 
click on the targetoffset and loop fails at 7 and after that its clicking 
randomly. is there any way to sort out tis issue. 

-- 
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 #233860]: Region.find or Region.findAll problem

2013-08-12 Thread Jose L
Question #233860 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233860

Status: Answered = Solved

Jose L confirmed that the question is solved:
RaiMan,

Thank you!  This solved my problem.  I went by the documentation
examples but failed to notice the region (reg) annotation or totally
missed the concept.

I appreciate your response.

Regards,

Jose L

-- 
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 #233860]: Region.find or Region.findAll problem

2013-08-12 Thread Jose L
Question #233860 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233860

Jose L confirmed that the question is solved:
Thanks RaiMan, that solved my question.

-- 
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 #233903]: image not reconized in while loop

2013-08-12 Thread RaiMan
Question #233903 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233903

Status: Open = Answered

RaiMan proposed the following answer:
-- 1: a pythonized ;-) and streamline version:

patterns = [Pattern(LeftforeLeft.png).targetOffset(-90,-144),
Pattern(LeftforeLeft-1.png).targetOffset(-90,-113),
Pattern(LeftforeLeft-2.png).targetOffset(-90,-80),
Pattern(LeftforeLeft-3.png).targetOffset(-90,-51),
Pattern(LeftforeLeft-4.png).targetOffset(-90,-17),
Pattern(Leftforeleft-5.png).targetOffset(-90,16),
Pattern(Leftforeleft-6.png).targetOffset(-91,49),
Pattern(Leftforeleft-7.png).targetOffset(-90,82),
Pattern(leftforeleft-10.png).targetOffset(-90,114),
Pattern(Leftforeleft-9.png).targetOffset(-92,147)]

for n in range(len(patterns)):
print n
wait(patterns[n], 7)
click(wait(patterns[n], 7))
click(wait(Copture.png, 4))
if exists(Ok-4.png, 8):
click(getLastMatch())
wait(2)
else:
print Success
wait(10)

-- your problem
I cannot judge without a screenshot and the images.
So if you like: zip the script and a screenshot together and send it silently 
to my mail at https://launchpad.net/~raimund-hocke

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 #231861]: sikuli with the android-robot extension? --- not available

2013-08-12 Thread Yolkfull
Question #231861 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/231861

Status: Answered = Solved

Yolkfull confirmed that the question is solved:
Great,  I would expect it though we have tiny tool we developed for
android platform to recognize screenshots.  Sikuli is really good tool I
once used.

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


[Sikuli-driver] [Bug 1211462] [NEW] Image similarity value changes randomly

2013-08-12 Thread keenan-s
Public bug reported:

When images are first captured, they have a similarity value of 1.0, and
match exactly. However, when a script is run later, the similarity value
for images degrades, typically to a value of ~.6, despite the exact same
screen being visible. It occurs seemingly at random; typically it takes
several days before an image will no longer be recognized, but it can
occur faster as well. Because of the random nature of the error, it is
difficult to reproduce intentionally, but seems to occur very frequently
when scripts are tested at a later date or on a different client
machine.

Sikuli: 1.0.0
OS: Windows 7 32-bit

** Affects: sikuli
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Sikuli
Drivers, which is subscribed to Sikuli.
https://bugs.launchpad.net/bugs/1211462

Title:
  Image similarity value changes randomly

Status in Sikuli:
  New

Bug description:
  When images are first captured, they have a similarity value of 1.0,
  and match exactly. However, when a script is run later, the similarity
  value for images degrades, typically to a value of ~.6, despite the
  exact same screen being visible. It occurs seemingly at random;
  typically it takes several days before an image will no longer be
  recognized, but it can occur faster as well. Because of the random
  nature of the error, it is difficult to reproduce intentionally, but
  seems to occur very frequently when scripts are tested at a later date
  or on a different client machine.

  Sikuli: 1.0.0
  OS: Windows 7 32-bit

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1211462/+subscriptions

___
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


[Sikuli-driver] [Bug 1211527] [NEW] Pattern Match Dialog is not opening

2013-08-12 Thread David Adnitt
Public bug reported:

Version: 1.0.1 - released service update
OS: Windows 7

The Pattern Match Dialog is not opening when you click on an image.

When I do click on an image I get the following error message...

Exception in thread AWT-EventQueue-0 java.lang.UnsatisfiedLinkError: 
org.sikuli.basics.proxies.VisionProxyJNI.Vision_getParameter(Ljava/lang/String;)F
at org.sikuli.basics.proxies.VisionProxyJNI.Vision_getParameter(Native Method)
at org.sikuli.basics.proxies.Vision.getParameter(Vision.java:91)
at org.sikuli.ide.PatternPaneScreenshot.init(PatternPaneScreenshot.java:68)
at org.sikuli.ide.PatternPaneScreenshot.init(PatternPaneScreenshot.java:54)
at org.sikuli.ide.PatternWindow.createScreenshots(PatternWindow.java:131)
at org.sikuli.ide.PatternWindow.createPreviewPanel(PatternWindow.java:121)
at org.sikuli.ide.PatternWindow.init(PatternWindow.java:65)
at org.sikuli.ide.PatternWindow.init(PatternWindow.java:41)
at 
org.sikuli.ide.EditorPatternButton.actionPerformed(EditorPatternButton.java:142)
at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
at javax.swing.DefaultButtonModel.fireActionPerformed(Unkn

own Source)
at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
at java.awt.Component.processMouseEvent(Unknown Source)
at javax.swing.JComponent.processMouseEvent(Unknown Source)
at java.awt.Component.processEvent(Unknown Source)
at java.awt.Container.processEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Window.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.EventQueue.dispatchEven

tImpl(Unknown Source)
at java.awt.EventQueue.access$200(Unknown Source)
at java.awt.EventQueue$3.run(Unknown Source)
at java.awt.EventQueue$3.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
at java.awt.EventQueue$4.run(Unknown Source)
at java.awt.EventQueue$4.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at ja

va.awt.EventDispatchThread.run(Unknown Source)

** Affects: sikuli
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Sikuli
Drivers, which is subscribed to Sikuli.
https://bugs.launchpad.net/bugs/1211527

Title:
  Pattern Match Dialog is not opening

Status in Sikuli:
  New

Bug description:
  Version: 1.0.1 - released service update
  OS: Windows 7

  The Pattern Match Dialog is not opening when you click on an image.

  When I do click on an image I get the following error message...

  Exception in thread AWT-EventQueue-0 java.lang.UnsatisfiedLinkError: 
org.sikuli.basics.proxies.VisionProxyJNI.Vision_getParameter(Ljava/lang/String;)F
  at org.sikuli.basics.proxies.VisionProxyJNI.Vision_getParameter(Native Method)
  at org.sikuli.basics.proxies.Vision.getParameter(Vision.java:91)
  at org.sikuli.ide.PatternPaneScreenshot.init(PatternPaneScreenshot.java:68)
  at org.sikuli.ide.PatternPaneScreenshot.init(PatternPaneScreenshot.java:54)
  at org.sikuli.ide.PatternWindow.createScreenshots(PatternWindow.java:131)
  at org.sikuli.ide.PatternWindow.createPreviewPanel(PatternWindow.java:121)
  at org.sikuli.ide.PatternWindow.init(PatternWindow.java:65)
  at org.sikuli.ide.PatternWindow.init(PatternWindow.java:41)
  at 
org.sikuli.ide.EditorPatternButton.actionPerformed(EditorPatternButton.java:142)
  at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
  at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
  at javax.swing.DefaultButtonModel.fireActionPerformed(Unkn

  own Source)
  at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
  at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
  at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
  

Re: [Sikuli-driver] [Question #233921]: How can 1.0.1 sikuli-setup.jar be run with a debug level 3?

2013-08-12 Thread Jerry Jaskierny
Question #233921 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/233921

Jerry Jaskierny gave more information on the question:
http://doc.sikuli.org/javadoc/org/sikuli/script/Debug.html says the
command should look something like

$ java -jar sikuli-setup.jar -Dsikuli.Debug=3

Though, for my specific error, it didn't seem to change the output.  It
/appears/ the URL refers to org.sikuli.script.Debug, where the current
Debug being referenced is org.sikuli.setup.Debug.  The former appears to
be for Sikuli 1.0.0.

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


[Sikuli-driver] [Question #233924]: How is Github's Sikuli related to Bitbucket's Sikuli?

2013-08-12 Thread Jerry Jaskierny
New question #233924 on Sikuli:
https://answers.launchpad.net/sikuli/+question/233924

I'm unclear on the relationship between
* https://github.com/RaiMan/SikuliX-API
* https://bitbucket.org/doubleshow/sikuli-api

Can you explain the relationship between the 2 or how they differ?

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