Re: [Sikuli-driver] [Question #212978]: text find

2012-11-02 Thread RaiMan
Question #212978 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/212978

Status: Open = Answered

RaiMan proposed the following answer:
no, see bug 710586

-- 
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 #212675]: Executing Sikuli script from terminal/command line

2012-11-02 Thread RaiMan
Question #212675 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/212675

Status: Open = Solved

RaiMan changed the question status:
user told so

-- 
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 #213008]: Clueless! loop

2012-11-02 Thread RaiMan
Question #213008 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/213008

Status: Open = Needs information

RaiMan requested more information:
Principally ok and should work.

Without knowing, what your problem is (you did not talk about that ;-),
your approach might give more than 1 match, since you always search all
images in a row, and do not stop the search loop after having the first
match.

when coming to the clicks, the first one in the row, that was found,
will click and I guess will change the screen. since you do not prevent
possible futher clicks, these might fail, since the requested image is
no longer visible.

So the solution depends on what you want: 
- find all, but only click the first one found
- find only one (hence the first in the row) and click this one.

-- 
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 #213012]: Using iterators with methods?

2012-11-02 Thread RaiMan
Question #213012 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/213012

RaiMan proposed the following answer:
--- he ran off before i could ask why this has to happen
This is the same as in Ruby: if you use the string concatenation, then no 
automatic conversion takes place with non-String values.
In Ruby you would have to say id.toStr() (do not blame me if the spelling si 
not correct ;-).

-- 
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 #213034]: Repeat this simple script

2012-11-02 Thread RaiMan
Question #213034 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/213034

RaiMan proposed the following answer:
faqs that might help additionally:
faq 1800 indentation
faq 1437 loops

-- 
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 #213048]: Do large or small patterns match quickest?

2012-11-02 Thread RaiMan
Question #213048 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/213048

Status: Open = Answered

RaiMan proposed the following answer:
It is not the size of the target, that influences speed significantly,
it is the size of the region, that has to be searched.

So if you want to optimize a script according performance, then you have
to restrict the search region as much as possible to the area, where the
target should be.

Especially in situations like yours (automating games e.g. is much
trickier according this approach), you normally have a well structured
screen, where you can concentrate on  specific areas in specific steps
of your script.

So a script, that is layed ot to be optimized according performance,
always starts with defining regions, that correspond to the visual
layout of an application (title bar, tool bar, menu section, left
navigation panel, an information window, the center main window, ).
So if you want to click a symbol in a toolbar,

instead of saying
click(btnSymbol)

you use
toolbar.click(btnSymbol)

which might be up to ten times faster, depending on your screen size and
the size of region toolbar.

In most cases, this defining of key regions can be done by serching for
one fixed anchor image (e.g. an app logo) and then defining all the
other regions relative to this anchor region.

Come back if you need more help.

Corresponding faqs:
faq 1607 speed
faq 1686 evaluate layout

-- 
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 #213048]: Do large or small patterns match quickest?

2012-11-02 Thread RaiMan
Question #213048 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/213048

RaiMan proposed the following answer:
Ok, I did not tell about the reason behind:
The used search approach uses the matchTemplate() method of openCV, which 
simply checks on every pixel position of the source (e.g. the whole screen), 
wether the region corresponding to the size of the target image matches and 
returns a similarity value for every pixel tested, which in turn allows it, to 
select the location on the screen, where we had the highest similarity score, 
which in turn is used to return the match region and the similarity score to 
the script.

So the pixels to loop through simply is:

PixelsToLoop = (source.w * source.h) - (target.w * target.h)

and the overall amount of pixels to compare is:

PixelsToLoop * (target.w * target.h)

this leads to that a target of 100 pixels (10x10) searched in a region
of 10.000 pixels (100x100) might take less than 0.1 seconds (which you
might not see currently, since in the standard, it always takes at least
0.3 seconds to come back from search, because of a bug in the
implementation of the WaitScanRate feature)

-- 
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 #208054]: Quantal and sikuli not workng together?

2012-11-02 Thread RaiMan
Question #208054 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/208054

Linked to bug: #1074303
https://bugs.launchpad.net/bugs/1074303
X-1.0rc3: Ubuntu: not working with OpenJDK 6 or 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 #208054]: Quantal and sikuli not workng together?

2012-11-02 Thread RaiMan
Question #208054 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/208054

RaiMan posted a new comment:
I have it on my list to check what the problem is with OpenJDK (6 and
7), when I come to test the new version of Sikuli on Ubuntu 12.10

-- 
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 1074303] [NEW] X-1.0rc3: Ubuntu: not working with OpenJDK 6 or 7

2012-11-02 Thread RaiMan
Public bug reported:

crashes on startup.

** Affects: sikuli
 Importance: Undecided
 Status: In Progress

** Changed in: sikuli
   Status: New = In Progress

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  X-1.0rc3: Ubuntu: not working with OpenJDK 6 or 7

Status in Sikuli:
  In Progress

Bug description:
  crashes on startup.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1074303/+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 1071179] Re: crashs when i press any button

2012-11-02 Thread RaiMan
** Changed in: sikuli
Milestone: None = x1.0

** Changed in: sikuli
   Status: New = Fix Committed

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

Title:
  crashs when i press any button

Status in Sikuli:
  Fix Committed

Bug description:
  hello i can load Sikuli IDE up but when i click anything on the
  programme it crashs it out with out a warning message just shuts the
  program down straight away, im windows 7 service pack 1 and run it on
  a 32bit opparting system could you please help iv looked all over and
  cant find anything hope to hear from you soon thanks

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1071179/+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 1070929] Re: Errors in parent folder path that IDE adds to sys.path

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = In Progress

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  Errors in parent folder path that IDE adds to sys.path

Status in Sikuli:
  In Progress

Bug description:
  Sikuli-X-1.0rc3 (r905)-win32
  Java 6 Update 37, 32-bit
  Win 7 64bit

  1. Create a folder that starts with the letter a or b, ex: 
'C:\Users\Public\automation'
  2. Open sikuli IDE, and create the following one line script:

  print(str(sys.path))

  3 .Save this script with any name inside the folder created in step one
  4. Run the script and check the output in the IDE message window

  The last entry in the list should be the path of the script's parent folder, 
but will look like this:
  'C:\\Users\\Public\x07utomation'
  where the \a has been translated to x07
  folders starting with b become x08

  When trying to import modules from the parent folder, this causes the
  modules to not be found.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1070929/+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 1064442] Re: Win 7 Click Any Button The IDE Disappear

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Fix Committed

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  Win 7 Click Any Button The IDE Disappear

Status in Sikuli:
  Fix Committed

Bug description:
   OS is Win7  32bit 
  I newly download  Sikuli-X-1.0rc3 (r905)-win32
  and I have already downloaded JRE 7

  When I operate the Sikuli IDE for the first time,
  it shut down when I click any of the buttons including Click(), Screenshot.

  When I type something like  print Hello!  ,  and click  RUN button,
  It could run.

  Please help
  Thank You
  This is my first time.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1064442/+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 1063150] Re: Windows: IDE: take screenshot: crashes without any message (Windows Vista)

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Fix Committed

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  Windows: IDE: take screenshot: crashes without any message (Windows
  Vista)

Status in Sikuli:
  Fix Committed

Bug description:
  Have just installed Sikuli and tried to take a screen shot as described in 
the help documentation. 
  The program terminates immediately without giving any information. OS is 
Windows Vista.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1063150/+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] [Question #158928]: Status of bug #704981 changed to 'In Progress' in Sikuli

2012-11-02 Thread RaiMan
Bug #704981 status changed in Sikuli:

Triaged = In Progress

https://bugs.launchpad.net/sikuli/+bug/704981
[request] IDE: want a reset feature to get import repeated

This bug is linked to #158928.
Had to restart Sikuli IDE to make code changes work
https://answers.launchpad.net/sikuli/+question/158928

-- 
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 704981] Re: [request] IDE: want a reset feature to get import repeated

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: Triaged = In Progress

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  [request] IDE: want a reset feature to get import repeated

Status in Sikuli:
  In Progress

Bug description:
  With the new feature import other .sikuli, you always have to
  restart the IDE, if something is changed in an imported script. This
  might be inconvenient, if some tabs are open.

  A button like the run-button would be helpful, that internally resets
  the IDE, so that imports are done again.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/704981/+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 914806] Re: X-1.0rc3: IDE: command list fully expanded: 'settings' menu not visible

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: Confirmed = In Progress

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  X-1.0rc3: IDE: command list fully expanded: 'settings' menu not
  visible

Status in Sikuli:
  In Progress

Bug description:
  * workaround: close one or more submenus.

  -

  In this case the Sikuli Window must have a height of more than 900
  pixels, which might not be possible on small screens (low resolution).

  Sikuli X- 1.0rc3 (r905)
  Windows XP  32-bit
  Steps
  1. just open the app and expand all the menus in the left
  2. Verify that the options of the last menu Settings are not visible
  (please see the screenshot)

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/914806/+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 1057159] Re: [request] Pattern settings window should be visible completely

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Fix Committed

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  [request] Pattern settings window should be visible completely

Status in Sikuli:
  Fix Committed

Bug description:
  When I click on a screenshot to bring up the pattern settings window,
  it is often so far below the edge of my screen that I need to drag the
  titlebar up to see anything.

  It seems that the higher a screenshot is in the steps list, the higher
  the window opens.  If I click the last item in the list, the titlebar
  lines up with the top edge of the screenshot, therefore being pushed
  beneath the edge of the picture. If I click a screenshot at the top of
  the page, the window pops up with more items visible but still lines
  up with the top edge of the screenshot located at the top of the page.

  Win7 64 bit, running sikuli r930.

  Screenshot attached.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1057159/+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 1054900] Re: X-1.0rc3: IDE: Removing not referenced images, when script is saved, is too rigorous

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Fix Committed

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  X-1.0rc3: IDE: Removing not referenced images, when script is saved,
  is too rigorous

Status in Sikuli:
  Fix Committed

Bug description:
  * workaround for mentioned code-dragdrop problem

  The mentioned problem only occurs, if the actions are done in the following 
sequence:
  - Cut a piece of script 1 with an image in it 
  (which is not referenced anywhere else in the script)
  - Save the script 1
  - Paste into the script 2

  The IDE crashes with the cryptical error:
  [error] Can't transfer: sun.awt.datatransfer.TransferableProxy@
  since the image is purged from script 1 when saving 
  (it is no longer referenced in script 1)

  if you do it this way:
  - Cut a piece of script 1 with an image in it 
  - Paste into the script 2
  - Save the script 1

  the problem does not occur.

  ---

  This bug report is a follow up on
  https://bugs.launchpad.net/sikuli/+bug/1053438 as the main problem
  there has already been fixed.

  I think the deletion of the PNG images is way too rigorous. I would
  really like to see an option to turn off the automatic destruction of
  the referenced images.

  When I do the following action in the Sikuli editor:
  - Cut a piece of script with an image in it (which is not located anywhere 
else in the script)
  - Save the script
  - Paste the script

  I get the error:
  [error] Can't transfer: sun.awt.datatransfer.TransferableProxy@1a256c7

  And as RaiMan already said:
  I just looked into the source - only 10 statements in try-catch block 
(unfortunately the error itself is not displayed :-(

  It is the part, where the images are copied from one .sikuli to the
  other.

  When there are any 'rogue'  PNG images in the directory (e.g. for
  future use) then these are also removed on save, as they are not
  referenced (yet)!

  I understand that cleaning up the Sikuli project directories can be a
  nice addition (although scripts shouldn't ever become too long). I'd
  rather invoke the clean-up manually or to have the option to save
  without doing a cleanup.

  On Sikuli r930, W7 SP1 64 bit

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1054900/+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 1049506] Re: System hangs when sikuli runs completed

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Opinion

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

Title:
  System hangs when sikuli runs completed

Status in Sikuli:
  Opinion

Bug description:
  Summary:
   System Hangs and not responding for some time [More than 10 mins] after  
sikuli executed the script. CPU and Memory usage occupies more values.

  Steps to reproduce:
  Run small script to mount the CD.
  Try to edit the script on Sikuli window after the execution.
  System hangs 

  Machine details:
  Windows 2008 X64
  Sikuli version :1.0rc3

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1049506/+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 1071597] Re: Sikuli IDE window doesn't open in Ubuntu

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = In Progress

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  Sikuli IDE window doesn't open in Ubuntu

Status in Sikuli:
  In Progress

Bug description:
  Hi,
  I am working on Ubuntu 11.10 32-bit and the sikuli version is sikuli X 1.0rc3.
  I have dowloaded the bundle from sikuli.org.

  Sikuli is working fine but at times the following problem occurs :

  After I type sh sikuli-ide.sh from the path containing sikuli-IDE, I get :
  [info] locale: en_US

  But the IDE window doesn't come...

  - Sahil

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1071597/+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 1066933] Re: [PATCH] Fix compile error with gcc 4.7.2

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Importance: Undecided = Low

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

Title:
  [PATCH] Fix compile error with gcc 4.7.2

Status in Sikuli:
  New

Bug description:
  Hi,

  attached is a patch to fix a compile error with gcc 4.7.2 on Fedora
  17.

  Cheers,
  Thomas

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1066933/+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 1057638] Re: Using Keyboard actions in wine under Linux causes undesired behavior

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Importance: Undecided = Low

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

Title:
  Using Keyboard actions in wine under Linux causes undesired behavior

Status in Sikuli:
  New

Bug description:
  Sample code
  RED = 'rai.tif'
  GREEN = 'g'
  switchApp(Astra)
  sleep(0.1)
  type(p,KEY_ALT)
  sleep(0.2)
  type(o)
  sleep(0.2)
  type(Key.TAB +  )
  sleep(0.2)
  type(n,KEY_ALT)
  sleep(0.1)
  paste(RED)
  type(Key.ENTER)
  sleep(0.1)
  type(Key.TAB + Key.TAB + Key.TAB + Key.TAB + Key.TAB +  )
  sleep(0.2)
  type(Key.DELETE)
  sleep(0.2)
  paste(GREEN)
  /Sample code

  At the end, the variable GREEN still uses the same value as RED.  BUT ONLY 
under wine apps like notepad
  Using gedit in Ubuntu 12.04 GREEN is properly 'substituted' from clipboard.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1057638/+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 1051314] Re: Can't use test created on mac on a windooze machine

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: Confirmed = Won't Fix

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

Title:
  Can't use test created on mac on a windooze machine

Status in Sikuli:
  Won't Fix

Bug description:
  We have a java gui application that we are trying to make sure works
  on both Windows and Macs.  I create a simple test in Sikuli on the
  mac.  I give it to my co-worker who is testing on a Windooze machine.
  The test immediately fails as Sikuli on widooze cannot locate the
  first button.

  It would then appear that If I created a test on one mac and tried to
  run it on another that has their look and feel different, it would
  fail also.

  Does this mean that tests can only be run on the same machine that
  created them?

  JOhn

  
  X-1.0r3
  Mac OS X Lion 10.7.4, 64 bit
  Create test on Mac, save sikuli file, send sikuli file to Windooze user along 
with java app we are tesing.
  Run test.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1051314/+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 1053904] Re: Ubuntu 12.04: take screenshot is not working

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = In Progress

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  Ubuntu 12.04: take screenshot is not working

Status in Sikuli:
  In Progress

Bug description:
  Hi,

  I am working on Ubuntu 12.04.1 LTS, 32-bit and the sikuli version is the 
latest (sikuli X 1.0rc3).
  I have downloaded the source directly from sikuli.org.
  I have installed openCV 2.1 , libcv 2.1 , libhighgui 2.1 , tesseract 2.04 , 
libcvaux 2.1 and JRE 6.

  As soon as i press 'take screenshot' icon on the sikuli-ide all the
  open windows disappear and all i get is the desktop. So I am only able
  to take screenshot of the icons on the desktop and not of any
  application.

  Can anybody help me out here!!

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1053904/+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 1046764] Re: log problem: type(Key.F4, KeyModifier.ALT) -- [log] Alt+TYPE 

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Fix Committed

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  log problem: type(Key.F4, KeyModifier.ALT) -- [log] Alt+TYPE 

Status in Sikuli:
  Fix Committed

Bug description:
  Message tab prints F4 as  When using Key.F4 command

  Example:
  type(Key.F4, KeyModifier.ALT)

  Message tab:
  [log] Alt+TYPE 

  Operating system: Windows 7 64bit
  Sikuli 1.0rc3 r930

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1046764/+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 1051919] Re: taking screenshots on dual monitors doesn't work on Linux in sikuli

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Opinion

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

Title:
  taking screenshots on dual monitors doesn't work on Linux in sikuli

Status in Sikuli:
  Opinion

Bug description:
  Taking screenshot on Linux with two monitors doesn't quite work, it
  shows only one monitor and it has broken resolution.

  It shows traceback in messages:

  Exception in thread AWT-EventQueue-0 java.lang.UnsatisfiedLinkError: 
/home/garret/msc/Sikuli-X-1.0rc3 
(r905)-linux-x86_64/Sikuli-IDE/libs/libVisionProxy.so: libml.so.2.1: cannot 
open shared object file: No such file or directory
  at java.lang.ClassLoader$NativeLibrary.load(Native Method)
  at java.lang.ClassLoader.loadLibrary1(ClassLoader.java:1939)
  at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1864)
  at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1825)
  at java.lang.Runtime.load0(Runtime.java:792)
  at java.lang.System.load(System.java:1059)
  at 
com.wapmx.nativeutils.jniloader.NativeLoader.loadLibrary(NativeLoader.java:44)
  at org.sikuli.script.TextRecognizer.(TextRecognizer.java:24)
  at org.sikuli.ide.NamingPane.getFilenameFromImage(NamingPane.java:55)
  at org.sikuli.ide.CaptureButton.update(CaptureButton.java:149)
  at org.sikuli.script.CapturePrompt.notifyObserver(CapturePrompt.java:44)
  at org.sikuli.script.CapturePrompt$1.mouseReleased(CapturePrompt.java:197)
  at java.awt.Compone

  nt.processMouseEvent(Component.java:6505)
  at java.awt.Component.processEvent(Component.java:6270)
  at java.awt.Container.processEvent(Container.java:2229)
  at java.awt.Window.processEvent(Window.java:2022)
  at java.awt.Component.dispatchEventImpl(Component.java:4861)
  at java.awt.Container.dispatchEventImpl(Container.java:2287)
  at java.awt.Window.dispatchEventImpl(Window.java:2719)
  at java.awt.Component.dispatchEvent(Component.java:4687)
  at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:723)
  at java.awt.EventQueue.access$200(EventQueue.java:103)
  at java.awt.EventQueue$3.run(EventQueue.java:682)
  at java.awt.EventQueue$3.run(EventQueue.java:680)
  at java.security.AccessController.doPrivileged(Native Method)
  at 
java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
  at 
java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
  at java.awt.EventQueue$4.run(EventQueue.java:696)
  at java.awt.EventQueue$4.run(EventQueue.java:694)
  at java.security.A

  ccessController.doPrivileged(Native Method)
  at 
java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
  at java.awt.EventQueue.dispatchEvent(EventQueue.java:693)
  at 
java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:244)
  at 
java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:163)
  at 
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:147)
  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:139)
  at java.awt.EventDispatchThread.run(EventDispatchThread.java:97)

  See screenshot here: http://imgur.com/kdC5y

  I'm using Gnome 3 on 64bit Fedora 17.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1051919/+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 1048971] Re: [request] Open multiple files from Open dialog

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = In Progress

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  [request] Open multiple files from Open dialog

Status in Sikuli:
  In Progress

Bug description:
  It would be handy if user could select multiple Sikuli-files from Open
  dialog with CTRL pressed or SHIFT pressed on Windows environment.

  Now user must open each Sikuli file separately and it is sometimes
  frustrating.

  Sikuli 1.0 rc3 r930
  OS: Windows 7 64bit SP1

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1048971/+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 1046272] Re: App.close() fails when window title contains scandinavian characters

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = In Progress

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  App.close() fails when window title contains scandinavian characters

Status in Sikuli:
  In Progress

Bug description:
  App.close() method fails when app instance contains scandinavian
  characters.

  Examples:
  Käyttö -- App.close(frmApp) does nothing (ie. app window stays opened). 
  Testi-- App.close(frmApp) works ok. 

  Application is opened with App.open(app_name)

  Sikuli version: Sikuli 1.0rc3 r930
  Operating system: Windows 7 64bit + SP1

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1046272/+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 914806] Re: X-1.0rc3: IDE: command list fully expanded: 'settings' menu not visible

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  X-1.0rc3: IDE: command list fully expanded: 'settings' menu not
  visible

Status in Sikuli:
  In Progress

Bug description:
  * workaround: close one or more submenus.

  -

  In this case the Sikuli Window must have a height of more than 900
  pixels, which might not be possible on small screens (low resolution).

  Sikuli X- 1.0rc3 (r905)
  Windows XP  32-bit
  Steps
  1. just open the app and expand all the menus in the left
  2. Verify that the options of the last menu Settings are not visible
  (please see the screenshot)

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/914806/+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 1046251] Re: deleteOnExit() method not working after *.skl file execution

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = In Progress

** Changed in: sikuli
Milestone: None = x1.0

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  deleteOnExit() method not working after *.skl file execution

Status in Sikuli:
  In Progress

Bug description:
  *.sikuli folder extracted to tmp -- * folder in java tmp path , from
  *.skl file during execution, is not removed at the end of the JVM
  termination . Accumulation of these tmp -- * folders may create
  space issue.

  1. The version of Sikuli you were using.
   = sikuli X-1.0rc3 ( r905 )
  2. Your operating system, 32-bit or 64-bit, and its version.
   = Windows XP SP3 - ( 32 bit OS )
  3. The procedure to reproduce the bug.
   = run any sikuli executable ( *.skl ) file using Sikuli-IDE.bat
  4. Any information that might help us to locate the bug.
   = tempDir.deleteOnExit() method is not working as expected. [  method 
createTempDir() in org.sikuli.ide.Utils.java file ]
There are lot of discussion about why deleteOnExit() not working. 
Bug reported and never arrived solution . Please refer  
http://bugs.sun.com/view_bug.do?bug_id=4171239 

 I would suggest to use tmpDir.delete() in runSkl method in
  org.sikuli.ide.SikuliIDE.java ,

 public static int runSkl(String filename, String[] args) throws 
IOException{
_runningSkl = true;
File file = new File(filename);
if(!file.exists())
   throw new IOException(filename + : No such file);
String name = file.getName();
name = name.substring(0, name.lastIndexOf('.'));
File tmpDir = Utils.createTempDir();
File sikuliDir = new File(tmpDir + File.separator + name + 
.sikuli);
sikuliDir.mkdir();
Utils.unzip(filename, sikuliDir.getAbsolutePath());
int returnCode  = runSikuli(sikuliDir.getAbsolutePath(), args);
tmpDir.delete();
return returnCode ;
 }

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1046251/+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 795486] Re: [request] Upgrade Jython 2.5.1 - 2.5.3 in the Sikuli distribution

2012-11-02 Thread RaiMan
** Summary changed:

- [request] Upgrade Jython 2.5.1 - 2.5.2 in the Sikuli distribution
+ [request] Upgrade Jython 2.5.1 - 2.5.3 in the Sikuli distribution

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  [request] Upgrade Jython 2.5.1 - 2.5.3 in the Sikuli distribution

Status in Sikuli:
  Fix Committed

Bug description:
  * X-1.0rc3: Mac version already contains Jython 2.5.2
  --

  Jython 2.5.2 seems to get several performance improvements
  http://www.jython.org/latest.html along with numerous bug fixes.

  It may help to reduce startup time when Sikuli scripts are invoked
  from command line.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/795486/+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 710586] Re: X 1.0rc3: Region.text() -- known problems and needed improvements

2012-11-02 Thread RaiMan
** Changed in: sikuli
Milestone: x1.0 = None

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  X 1.0rc3: Region.text() -- known problems and needed improvements

Status in Sikuli:
  In Progress

Bug description:
  *** this report is a summary of known problems and feature
  requests

  *** recent status information after release of rc3 see comment #6

  The text recognition feature (OCR - Region.text()) together with the
  possibility to find text in an image is still experimental and under
  developement.

  This are currently reported bugs:
  bug 777660: text recognition errors with some fonts
  bug 783082: [request] want font parameters for text recognition
  bug 735434: Text extraction from Images fails in some cases on colored 
backgrounds
  bug 695616: Inconsistency in text recognition and matching, especially with 
integers-as-text!
  bug 695650: find(text).text() does not return same text
  bug 701005: text() always returns text with trailing x'200A20'
  bug 701012: text() does not return all intervening blanks, add's others
  bug 795391: [request] OCR/tesseract: allow new training sets for other 
languages and more tesseract features

  Other experienced oddities
  -- there are problems with text, that is not in english language
  -- very small and very large fonts may not work
  -- multiline text makes problems
  -- intervening/preceding/trailing grafics and symbols are tried to be 
interpreted as text

  Tip when using Region.text():
  Currently you get the best results, when the region represents only one line 
of text and only contains text (no graphics/symbols) in english language. If 
you can influence it: make the text as large as possible.

  -- additional information:
  Internally the tesseract OCR engine (http://code.google.com/p/tesseract-ocr/) 
is used.
  So their restrictions apply (e.g. minimum size of font, ...).
  Information can be found on their Wiki.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/710586/+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 1074303] Re: X-1.0rc3: Ubuntu: not working with OpenJDK 6 or 7

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  X-1.0rc3: Ubuntu: not working with OpenJDK 6 or 7

Status in Sikuli:
  In Progress

Bug description:
  crashes on startup.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1074303/+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 1071597] Re: Sikuli IDE window doesn't open in Ubuntu

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  Sikuli IDE window doesn't open in Ubuntu

Status in Sikuli:
  In Progress

Bug description:
  Hi,
  I am working on Ubuntu 11.10 32-bit and the sikuli version is sikuli X 1.0rc3.
  I have dowloaded the bundle from sikuli.org.

  Sikuli is working fine but at times the following problem occurs :

  After I type sh sikuli-ide.sh from the path containing sikuli-IDE, I get :
  [info] locale: en_US

  But the IDE window doesn't come...

  - Sahil

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1071597/+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 1071179] Re: crashs when i press any button

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  crashs when i press any button

Status in Sikuli:
  Fix Committed

Bug description:
  hello i can load Sikuli IDE up but when i click anything on the
  programme it crashs it out with out a warning message just shuts the
  program down straight away, im windows 7 service pack 1 and run it on
  a 32bit opparting system could you please help iv looked all over and
  cant find anything hope to hear from you soon thanks

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1071179/+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 1070929] Re: Errors in parent folder path that IDE adds to sys.path

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  Errors in parent folder path that IDE adds to sys.path

Status in Sikuli:
  In Progress

Bug description:
  Sikuli-X-1.0rc3 (r905)-win32
  Java 6 Update 37, 32-bit
  Win 7 64bit

  1. Create a folder that starts with the letter a or b, ex: 
'C:\Users\Public\automation'
  2. Open sikuli IDE, and create the following one line script:

  print(str(sys.path))

  3 .Save this script with any name inside the folder created in step one
  4. Run the script and check the output in the IDE message window

  The last entry in the list should be the path of the script's parent folder, 
but will look like this:
  'C:\\Users\\Public\x07utomation'
  where the \a has been translated to x07
  folders starting with b become x08

  When trying to import modules from the parent folder, this causes the
  modules to not be found.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1070929/+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 1054900] Re: X-1.0rc3: IDE: Removing not referenced images, when script is saved, is too rigorous

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  X-1.0rc3: IDE: Removing not referenced images, when script is saved,
  is too rigorous

Status in Sikuli:
  Fix Committed

Bug description:
  * workaround for mentioned code-dragdrop problem

  The mentioned problem only occurs, if the actions are done in the following 
sequence:
  - Cut a piece of script 1 with an image in it 
  (which is not referenced anywhere else in the script)
  - Save the script 1
  - Paste into the script 2

  The IDE crashes with the cryptical error:
  [error] Can't transfer: sun.awt.datatransfer.TransferableProxy@
  since the image is purged from script 1 when saving 
  (it is no longer referenced in script 1)

  if you do it this way:
  - Cut a piece of script 1 with an image in it 
  - Paste into the script 2
  - Save the script 1

  the problem does not occur.

  ---

  This bug report is a follow up on
  https://bugs.launchpad.net/sikuli/+bug/1053438 as the main problem
  there has already been fixed.

  I think the deletion of the PNG images is way too rigorous. I would
  really like to see an option to turn off the automatic destruction of
  the referenced images.

  When I do the following action in the Sikuli editor:
  - Cut a piece of script with an image in it (which is not located anywhere 
else in the script)
  - Save the script
  - Paste the script

  I get the error:
  [error] Can't transfer: sun.awt.datatransfer.TransferableProxy@1a256c7

  And as RaiMan already said:
  I just looked into the source - only 10 statements in try-catch block 
(unfortunately the error itself is not displayed :-(

  It is the part, where the images are copied from one .sikuli to the
  other.

  When there are any 'rogue'  PNG images in the directory (e.g. for
  future use) then these are also removed on save, as they are not
  referenced (yet)!

  I understand that cleaning up the Sikuli project directories can be a
  nice addition (although scripts shouldn't ever become too long). I'd
  rather invoke the clean-up manually or to have the option to save
  without doing a cleanup.

  On Sikuli r930, W7 SP1 64 bit

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1054900/+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 1048971] Re: [request] Open multiple files from Open dialog

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  [request] Open multiple files from Open dialog

Status in Sikuli:
  In Progress

Bug description:
  It would be handy if user could select multiple Sikuli-files from Open
  dialog with CTRL pressed or SHIFT pressed on Windows environment.

  Now user must open each Sikuli file separately and it is sometimes
  frustrating.

  Sikuli 1.0 rc3 r930
  OS: Windows 7 64bit SP1

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1048971/+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 852940] Re: X-1.0rc3: Windows: Cannot run scripts saved at root level --- at least one folder level needed

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  X-1.0rc3: Windows: Cannot run scripts saved at root level --- at least
  one folder level needed

Status in Sikuli:
  Fix Committed

Bug description:
  Every Script that I open errors out with 
  [error] Stopped
  [error] An error occurs at line 1
  [error] Error message: SyntaxError: ('mismatched character \'\\n\' expecting 
\'\'', ('', 1, 17, 'addModPath(C:\\)\n'))

  If I create a new script and hit run without saving its fine.

  The complexity of the script doesnt matter.
  Just using this causes it 
  popup(hi)

  Version:1.0rc3 also continuous build 912
  OS: 64bit ultimate win 7

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/852940/+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 851833] Re: X-1.0rc3: IDE: sikuli start hangs after first try

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  X-1.0rc3: IDE: sikuli start hangs after first try

Status in Sikuli:
  Fix Committed

Bug description:
  *** possible reason and workaround

  This might happen due to bugs in the new session save feature (at restart: 
restore IDE window and reopen files, that have been open when quitting IDE 
before)
  see faq 1766

  additionally there seems to be a bug, that after using File - Open,
  the tab is named Untitled until you save it again. If you quit the
  IDE in this situation, you are in the above restart problem
  (Untitled cannot be reloaded).

  So for now, until these bugs are fixed:
  When quitting the IDE, make sure, that all tabs are closed - do not leave any 
files open.

  -

  Sikuli version RC3, Linux x64 (Ubuntu 11.04)

  RC2 works fine, but in RC3 the IDE just doesn't start on subsequent
  tries. I open the IDE, load an existing script, run and quit. Then
  when I want to run the IDE again I get nothing. Running from command
  line just shows [info] locale: en_US and doesn't go anywhere from
  there.

  It's probably a locale related problem because in RC2 the line shows
  sk_SK (which is right) and just tells me no info for given locale.
  In RC3 it shows en_US (not right) and hangs.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/851833/+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 1064442] Re: Win 7 Click Any Button The IDE Disappear

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  Win 7 Click Any Button The IDE Disappear

Status in Sikuli:
  Fix Committed

Bug description:
   OS is Win7  32bit 
  I newly download  Sikuli-X-1.0rc3 (r905)-win32
  and I have already downloaded JRE 7

  When I operate the Sikuli IDE for the first time,
  it shut down when I click any of the buttons including Click(), Screenshot.

  When I type something like  print Hello!  ,  and click  RUN button,
  It could run.

  Please help
  Thank You
  This is my first time.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1064442/+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 1046272] Re: App.close() fails when window title contains scandinavian characters

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  App.close() fails when window title contains scandinavian characters

Status in Sikuli:
  In Progress

Bug description:
  App.close() method fails when app instance contains scandinavian
  characters.

  Examples:
  Käyttö -- App.close(frmApp) does nothing (ie. app window stays opened). 
  Testi-- App.close(frmApp) works ok. 

  Application is opened with App.open(app_name)

  Sikuli version: Sikuli 1.0rc3 r930
  Operating system: Windows 7 64bit + SP1

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1046272/+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 1053904] Re: Ubuntu 12.04: take screenshot is not working

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  Ubuntu 12.04: take screenshot is not working

Status in Sikuli:
  In Progress

Bug description:
  Hi,

  I am working on Ubuntu 12.04.1 LTS, 32-bit and the sikuli version is the 
latest (sikuli X 1.0rc3).
  I have downloaded the source directly from sikuli.org.
  I have installed openCV 2.1 , libcv 2.1 , libhighgui 2.1 , tesseract 2.04 , 
libcvaux 2.1 and JRE 6.

  As soon as i press 'take screenshot' icon on the sikuli-ide all the
  open windows disappear and all i get is the desktop. So I am only able
  to take screenshot of the icons on the desktop and not of any
  application.

  Can anybody help me out here!!

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1053904/+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 879955] Re: X-1.0rc3: IDE: crash on script open with not existing image referenced in script --- fixed in r931

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  X-1.0rc3: IDE: crash on script open with not existing image referenced
  in script --- fixed in r931

Status in Sikuli:
  Fix Committed

Bug description:
  ... might happen also at IDE startup, when such a script is restored.
  ... or when using a string like some-name.png in a context, where it is not 
an image (e.g. type(some-name.png) )

  crash with java.NullPointerException

  This issue is fixed in latest build version r931.

  see faq 1766

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/879955/+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 906166] Re: X-1.0rc3: Spelling error on File menu: Export executable

2012-11-02 Thread RaiMan
Export executable no longer supported

** Changed in: sikuli
   Status: Fix Committed = Won't Fix

** Changed in: sikuli
Milestone: x1.0 = None

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

Title:
  X-1.0rc3: Spelling error on File menu: Export executable

Status in Sikuli:
  Won't Fix

Bug description:
  There is an option on the file menu which reads Export excutable --
  should be Export executable.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/906166/+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 1046764] Re: log problem: type(Key.F4, KeyModifier.ALT) -- [log] Alt+TYPE 

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  log problem: type(Key.F4, KeyModifier.ALT) -- [log] Alt+TYPE 

Status in Sikuli:
  Fix Committed

Bug description:
  Message tab prints F4 as  When using Key.F4 command

  Example:
  type(Key.F4, KeyModifier.ALT)

  Message tab:
  [log] Alt+TYPE 

  Operating system: Windows 7 64bit
  Sikuli 1.0rc3 r930

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1046764/+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 874338] Re: Can't start a specific unit test from the command line

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: Fix Committed = Won't Fix

** Changed in: sikuli
Milestone: x1.0 = None

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

Title:
  Can't start a specific unit test from the command line

Status in Sikuli:
  Won't Fix

Bug description:
  Hi,

  The command line Sikuli-IDE.bat --test someProkect.sikuli works fine
  to execute all unit tests.

  The problem is that the documentation states that the command line should be 
Sikuli-IDE.bat --test aSpecificUnitTest someProkect.sikuli
  What this last command line, Sikuli just dies with nothing displayed at all.

  So, either the doucmentation or Sikuli has a problem. Which is it ?

  Thanks
  Simon Glet

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/874338/+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 1063150] Re: Windows: IDE: take screenshot: crashes without any message (Windows Vista)

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  Windows: IDE: take screenshot: crashes without any message (Windows
  Vista)

Status in Sikuli:
  Fix Committed

Bug description:
  Have just installed Sikuli and tried to take a screen shot as described in 
the help documentation. 
  The program terminates immediately without giving any information. OS is 
Windows Vista.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1063150/+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 1057159] Re: [request] Pattern settings window should be visible completely

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  [request] Pattern settings window should be visible completely

Status in Sikuli:
  Fix Committed

Bug description:
  When I click on a screenshot to bring up the pattern settings window,
  it is often so far below the edge of my screen that I need to drag the
  titlebar up to see anything.

  It seems that the higher a screenshot is in the steps list, the higher
  the window opens.  If I click the last item in the list, the titlebar
  lines up with the top edge of the screenshot, therefore being pushed
  beneath the edge of the picture. If I click a screenshot at the top of
  the page, the window pops up with more items visible but still lines
  up with the top edge of the screenshot located at the top of the page.

  Win7 64 bit, running sikuli r930.

  Screenshot attached.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1057159/+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 1044637] Re: X-1.0rc3: IDE does not start or crashes with java 7 --- java 7 not yet supported --- workaround

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Fix Committed

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  X-1.0rc3: IDE does not start or crashes with java 7 --- java 7 not yet
  supported --- workaround

Status in Sikuli:
  Fix Committed

Bug description:
  * workaround

  faq 1958

  ---

  i am running win 7 home premium 64bit.
  java 7 u6 has an exploit apparently fixed by java 7 u7
  There is a security fix for Java per
  
http://krebsonsecurity.com/2012/08/security-fix-for-critical-java-flaw-released/
  i installed java 7 which apparently deleted the contents of the java 6 
subfolder bin and now the ide won't even start.
  i need to continue with ide rc3 but don't want to install java 6 back on my 
computers.

  is there a solution?

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1044637/+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 1044209] Re: X-1.0rc3: IDE: Text selecting graphic bug until left mouse button is released

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: Confirmed = In Progress

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  X-1.0rc3: IDE: Text selecting graphic bug until left mouse button is
  released

Status in Sikuli:
  In Progress

Bug description:
  Text selection on Sikuli IDE has strange graphic glitches.

  1. Select the code block from left to right (press left mouse button and 
select code area)
  2. Keep the left mouse button pressed and select from right to left
  - Deselected area graphic is not correctly removed

  Glitch disappears after user releases left mouse button.

  Sikuli version:
  Sikuli X-1.0rc3 (r905)

  OS:
  Windows 7 64bit SP1

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1044209/+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] [Question #204156]: Status of bug #1028991 changed to 'Fix Committed' in Sikuli

2012-11-02 Thread RaiMan
Bug #1028991 status changed in Sikuli:

New = Fix Committed

https://bugs.launchpad.net/sikuli/+bug/1028991
X-1.0rc3: setFindFailedResponse(PROMPT) does not display image

This bug is linked to #204156.
setFindFailedResponse(PROMPT)
https://answers.launchpad.net/sikuli/+question/204156

-- 
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 1044051] Re: X-1.0rc3r930: Mac: Download marked as damaged in Mountain Lion

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = In Progress

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  X-1.0rc3r930: Mac: Download marked as damaged in Mountain Lion

Status in Sikuli:
  In Progress

Bug description:
  After downloading R930 onto my recently upgraded Mountain Lion MB Pro
  (late 2011 model) the OS reports the .app as being damaged.  Though
  the screenshot shows that I was running it from the mounted image, I
  also tried installing it on my system with the same result.  I also
  tried re-downloading the image, just in case it was a transmission
  error.

  See attached screenshot.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1044051/+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 1041733] Re: Sikuli help does not open in default browser in Ubuntu

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = In Progress

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  Sikuli help does not open in default browser in Ubuntu

Status in Sikuli:
  In Progress

Bug description:
  I have set Midori as my default browser, but help in Sikuli (Help →
  Tutorials, Examples, How-To's) opens in Chromium.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1041733/+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 1041739] Re: Ubuntu 12.04: Transparent windows aren't treated correctly

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Won't Fix

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  Ubuntu 12.04: Transparent windows aren't treated correctly

Status in Sikuli:
  Won't Fix

Bug description:
  When I try to take a screenshot from Sikuli, a black box appears at
  the top of the screen. This is problematic because I want it to click
  something in that area.

  The black box is created by AWN, but since I'm using a compositing
  window manager, the black box is actually transparent.

  I'm using Ubuntu 12.04, with packages from the elementary project.
  Window Manager: Gala
  Dock: DockX
  Panel: AWN

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1041739/+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 1040541] Re: Score in matching preview differs from getLastMatch() score

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Opinion

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  Score in matching preview differs from getLastMatch() score

Status in Sikuli:
  Opinion

Bug description:
  Sikuli X-1.0rc3 (r905)
  Linux Mint 11 - 3.0.0-12-generic 32bit / Windows XP 32bit

  Reproduce:
  1.) Look for an image with find()
  2.) print getLastMatch()
  3.) Open matching preview dialog of image and look/play with Similarity 
value
  4.) You see that the score= value of getLastMatch() is much higher than the 
value of Similarity where the image was found

  Mainly occurs if an image does not show up on the screen.

  
  On the attached screenshot you see that the image was found with a score of 
0.88 but a Similarity of 76 does not lead to a match.
  A decreased Similarity value of 70 result in a match. The image we are 
looking for is NOT on the screen.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1040541/+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 1026095] Re: findAll() findet nicht alle Ergebnisse

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Opinion

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  findAll() findet nicht alle Ergebnisse

Status in Sikuli:
  Opinion

Bug description:
  Ich suche mit findAll( bild ) nach einer Grafik, die mehrfach auf dem
  Bildschirm vorkommt. Schaue ich mir die Eigenschaften von 'bild' und
  speziell die Matches, werden mir maximal 49 Treffer angegeben. Lasse
  ich allerdings das Skript durchlaufen und am Ende die Anzahl der
  Treffer ausgeben, werden nur 40 gefunden.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1026095/+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 1028612] Re: Sikuli for Java 7 throws exception when launched in Java 7 on OS X

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: Confirmed = Fix Committed

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  Sikuli for Java 7 throws exception when launched in Java 7 on OS X

Status in Sikuli:
  Fix Committed

Bug description:
  When run with Java 6, sikuli-script.jar executes without issue. When
  same jar is executed with Java 7, exception similar to stacktrace
  below is emitted. Note that this is replicable with the jar found in
  sikuli-script-java7.zip posted to drop box, with the caveat that the
  latter does not work under Java 6 (as expected).

  OS X 10.7.4 (Build 11E53)

  java version 1.7.0_04
  Java(TM) SE Runtime Environment (build 1.7.0_04-b21)
  Java HotSpot(TM) 64-Bit Server VM (build 23.0-b21, mixed mode)

  
  java -jar ~/Downloads/sikuli-script-java7/sikuli-script.jar -i
  java.io.IOException: Unable to find library META-INF/lib/libVisionProxy.dylib 
on classpath
at 
com.wapmx.nativeutils.jniloader.DefaultJniExtractor.extractResource(DefaultJniExtractor.java:127)
at 
com.wapmx.nativeutils.jniloader.DefaultJniExtractor.extractJni(DefaultJniExtractor.java:110)
at 
com.wapmx.nativeutils.jniloader.NativeLoader.loadLibrary(NativeLoader.java:43)
at org.sikuli.script.Finder.clinit(Finder.java:33)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:264)
at org.python.core.Py.loadAndInitClass(Py.java:895)
at org.python.core.Py.findClassInternal(Py.java:830)
at org.python.core.Py.findClassEx(Py.java:881)
at 
org.python.core.packagecache.SysPackageManager.findClass(SysPackageManager.java:133)
at 
org.python.core.packagecache.PackageManager.findClass(PackageManager.java:28)
at 
org.python.core.packagecache.SysPackageManager.findClass(SysPackageManager.java:122)
at org.python.core.PyJavaPackage.__findattr_ex__(PyJavaPackage.java:137)
at org.python.core.PyObject.__findattr__(PyObject.java:863)
at org.python.core.imp.import_name(imp.java:849)
at org.python.core.imp.importName(imp.java:884)
at org.python.core.ImportFunction.__call__(__builtin__.java:1220)
at org.python.core.PyObject.__call__(PyObject.java:357)
at org.python.core.__builtin__.__import__(__builtin__.java:1173)
at org.python.core.imp.importFromAs(imp.java:978)
at org.python.core.imp.importFrom(imp.java:954)
  [...]

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1028612/+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 1025991] Re: Click not Working consistantly

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Invalid

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  Click not Working consistantly

Status in Sikuli:
  Invalid

Bug description:
  Click is not working properly. It is identifying the image but not clicking 
it. Moreover it is inconsistent.
  Using 

   The version of Sikuli you were using.: Sikuli Version: Sikuli X-1.0rc3(r905) 
   Your operating system, 32-bit or 64-bit, and its version. : Windows 7,  
32-bit, Enterprise

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1025991/+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 1018551] Re: Can't load IA 32-bit .dll on a AMD 64-bit platform

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Opinion

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  Can't load IA 32-bit .dll on a AMD 64-bit platform

Status in Sikuli:
  Opinion

Bug description:
  Hi,

  I am able to run sikuli IDE on my Windows 7 machine. But I am not able
  to run the java test script which has sikuli-script.jar in the lib
  folder.

  Thanks,
  asp

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1018551/+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 1028991] Re: X-1.0rc3: setFindFailedResponse(PROMPT) does not display image

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Fix Committed

** Changed in: sikuli
Milestone: None = x1.0

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  X-1.0rc3: setFindFailedResponse(PROMPT) does not display image

Status in Sikuli:
  Fix Committed

Bug description:
  Hi folks,

  im having a problem with the setFindFailedResponse(PROMPT)...actually
  i think is a bug.

  here is my simplified code:

  setThrowException(True)
  setFindFailedResponse(PROMPT)
  if find(Pattern(test.png).similar(0.97)):
  print 'found'
  else:
  print 'not found'

  so, when Sikuli not found the image, the prompt appears with no
  image.but only when i set  the .similar(x)...other way, it
  appears normally

  thanks

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1028991/+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 1016426] Re: Ubuntu 11.04: Sikuli-ide crashes when interacted with

2012-11-02 Thread RaiMan
** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
   Status: Confirmed = Won't Fix

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

Title:
  Ubuntu 11.04: Sikuli-ide crashes when interacted with

Status in Sikuli:
  Won't Fix

Bug description:
  I've just install Sikuli on a new Ubuntu 11.04 system via it's zip
  file along with it's needed dependencies.  Sikuli-ide starts up as
  expected.  However as soon as I interact with the ide, e.g. select an
  item in a menu (Open) or even attempt to close the window it freezes \
  crashes and becomes completely unresponsive.

  I'm thinking it might be a dependency issue but as I say I've
  installed the required ones already.

  Any help would be brilliant.  Cheers!

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1016426/+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 1014870] Re: C [VisionProxy.dll] creates EXCEPTION_ACCESS_VIOLATION

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Opinion

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  C [VisionProxy.dll] creates EXCEPTION_ACCESS_VIOLATION

Status in Sikuli:
  Opinion

Bug description:
  Sikuli Version:
  RaiMan's Observer mod (using sikuli_script.jar and Observer), built off of 
Sikuli X rc3

  I'm using Java and incorporting the Sikuli observer to monitor a
  region.  Here is the Java dump when it fatals:

  [info] Windows utilities loaded.
  [RaiMan] observer started
  [info] Sikuli vision engine loaded.
  [info] Text Recognizer inited.
  #
  # A fatal error has been detected by the Java Runtime Environment:
  #
  #  EXCEPTION_ACCESS_VIOLATION (0xc005) at pc=0x034c3ba0, pid=5544, 
tid=5620
  #
  # JRE version: 6.0_31-b05
  # Java VM: Java HotSpot(TM) Client VM (20.6-b01 mixed mode, sharing 
windows-x86
  )
  # Problematic frame:
  # C  [VisionProxy.dll+0x93ba0]
  #
  Stack: [0x033e,0x0343],  sp=0x0342e4f8,  free space=313k
  Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native 
code)
  C  [VisionProxy.dll+0x93ba0]

  [error occurred during error reporting (printing native stack), id
  0xc005]

  Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
  j  
org.sikuli.script.natives.VisionProxyJNI.Vision_recognize(JLorg/sikuli/script/natives/Mat;)Ljava/lang/String;+0
  j  
org.sikuli.script.natives.Vision.recognize(Lorg/sikuli/script/natives/Mat;)Ljava/lang/String;+5
  j  
org.sikuli.script.TextRecognizer.recognize(Ljava/awt/image/BufferedImage;)Ljava/lang/String;+13
  j  
org.sikuli.script.TextRecognizer.recognize(Lorg/sikuli/script/ScreenImage;)Ljava/lang/String;+7
  j  org.sikuli.script.Region.text()Ljava/lang/String;+35
  j  
streamerscraper.StreamerScraperStock.targetChanged(Lorg/sikuli/script/ChangeEvent;)V+100
  J  
org.sikuli.script.EventManager.callChangeObserver(Lorg/sikuli/script/natives/FindResults;)V
  j  
org.sikuli.script.EventManager.checkChanges(Lorg/sikuli/script/ScreenImage;)V+66
  J  org.sikuli.script.Region.observe(D)V
  j  org.sikuli.script.Region$1.run()V+8
  v  ~StubRoutines::call_stub

  VM Arguments:
  java_command: StreamerScraper.jar 5
  Launcher Type: SUN_STANDARD

  Environment Variables:
  CLASSPATH=.;C:\Program Files\Java\jre6\lib\ext\QTJava.zip
  PATH=C:\Program Files\ATI 
Stream\bin\x86;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program
 Files\ATI Technologies\ATI.ACE\Core-Static;C:\Program 
Files\Java\jdk1.6.0_22\bin\;C:\Program Files\QuickTime\QTSystem\;C:\Program 
Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL 
Server\100\DTS\Binn\;C:\Program Files\Sikuli X\libs;C:\Program 
Files\Java\jre6\\bin
  USERNAME=me
  OS=Windows_NT
  PROCESSOR_IDENTIFIER=x86 Family 15 Model 107 Stepping 2, AuthenticAMD

  ---  S Y S T E M  ---

  OS: Windows XP Build 2600 Service Pack 3

  CPU:total 2 (2 cores per cpu, 1 threads per core) family 15 model 107
  stepping 2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, mmxext, 3dnow,
  3dnowext

  Memory: 4k page, physical 3406888k(2348932k free), swap
  5335432k(4039836k free)

  vm_info: Java HotSpot(TM) Client VM (20.6-b01) for windows-x86 JRE
  (1.6.0_31-b05), built on Feb  3 2012 18:44:09 by java_re with MS
  VC++ 7.1 (VS2003)

  time: Mon Jun 18 09:36:35 2012
  elapsed time: 28617 seconds

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1014870/+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 1013396] Re: X-1.0rc3-931: Java heap space exhausted with long running script using Region.right() .below() .nearby().

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: Confirmed = In Progress

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

** Changed in: sikuli
   Status: In Progress = Fix Committed

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

Title:
  X-1.0rc3-931: Java heap space exhausted with long running script using
  Region.right() .below() .nearby().

Status in Sikuli:
  Fix Committed

Bug description:
   details - workaround

  only Region.right() and .below() and .nearby() are affected.
  .above() and .left() are ok.

  There is no other workaround, than to make your own functions, to get
  a Region right or below or nearby of a given region.

  
---

  It took me a while* to track this one down:

  NO memory leak:

  def getNumbers(numType, region):
   return 0

  def test()
  x=regions['topLeft'].find(JI.png)
  getNumbers(topLeft, x) #  Region

  while True:
   test()

  
  MEMORY LEAK:

  def getNumbers(numType, region):
   return 0

  def test()
  x=regions['topLeft'].find(JI.png)
  getNumbers(topLeft, x.right(75)) #- Region.right(x)

  while True:
   test()

  System: win7 64bit
  JRE 1.6.32 (JRE1.7.04 tested as well)
  Sikuli X1.0rc3(905) (1.0RC930 tested as well)

  I've tested a few variations of the code above already. I will go on,
  since that script is essential to a project I am running.

  PS: getNumbers is my own text (number) recognition algorithm since
  region.text() isn't working yet.

  * a while == 12 days - anyway, sikuli is really good for it's
  purpose

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1013396/+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 1013318] Re: X-1.0rc3: Script/Jython: Region.create(x, y, w, h) Null pointer exception --- should not be used

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Fix Committed

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  X-1.0rc3: Script/Jython: Region.create(x,y,w,h) Null pointer exception
  --- should not be used

Status in Sikuli:
  Fix Committed

Bug description:
  Hi I get this exception when using Region.create(x,y,w,h) instead of
  new Region() which has been deprecated.

  java.lang.NullPointerException: null
at org.python.util.PythonInterpreter.init(PythonInterpreter.java:110) 
~[sikuli-mac-1.0-rc-3.jar:na]
at org.python.util.PythonInterpreter.init(PythonInterpreter.java:92) 
~[sikuli-mac-1.0-rc-3.jar:na]
at org.python.util.PythonInterpreter.init(PythonInterpreter.java:64) 
~[sikuli-mac-1.0-rc-3.jar:na]
at org.sikuli.script.Region.toJythonRegion(Region.java:987) 
~[sikuli-mac-1.0-rc-3.jar:na]
at org.sikuli.script.Region.create(Region.java:129) 
~[sikuli-mac-1.0-rc-3.jar:na]
at org.sikuli.script.Region.create(Region.java:115) 
~[sikuli-mac-1.0-rc-3.jar:na]
  ..

  Sorry to not send patch, I am not that into Python yet.

  Thanks.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1013318/+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] [Question #194235]: Status of bug #988742 changed to 'In Progress' in Sikuli

2012-11-02 Thread RaiMan
Bug #988742 status changed in Sikuli:

New = In Progress

https://bugs.launchpad.net/sikuli/+bug/988742
X-1.0rc3: odd behavior inside hotkey handler when using mouse/keyboard actions

This bug is linked to #194235.
Limitations of Env.addHotkey ?
https://answers.launchpad.net/sikuli/+question/194235

-- 
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 #194353]: Status of bug #993062 changed to 'Fix Committed' in Sikuli

2012-11-02 Thread RaiMan
Bug #993062 status changed in Sikuli:

New = Fix Committed

https://bugs.launchpad.net/sikuli/+bug/993062
[request] sikuli-script.jar should handle --args the same way sikuli-ide.jar 
does

This bug is linked to #194353.
How to pass arguments to Sikuli script run without the IDE
https://answers.launchpad.net/sikuli/+question/194353

-- 
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 #195612]: Status of bug #993062 changed to 'Fix Committed' in Sikuli

2012-11-02 Thread RaiMan
Bug #993062 status changed in Sikuli:

New = Fix Committed

https://bugs.launchpad.net/sikuli/+bug/993062
[request] sikuli-script.jar should handle --args the same way sikuli-ide.jar 
does

This bug is linked to #195612.
Passing command line argument using sikuli-script.jar does not work
https://answers.launchpad.net/sikuli/+question/195612

-- 
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 #192925]: Status of bug #977181 changed to 'Fix Committed' in Sikuli

2012-11-02 Thread RaiMan
Bug #977181 status changed in Sikuli:

New = Fix Committed

https://bugs.launchpad.net/sikuli/+bug/977181
X-1.0rc3: Mac: Sikuli only works for user who installed it --- workaround

This bug is linked to #192925.
You can't open the application Sikuli-IDE because it may be damaged or 
incomplete
https://answers.launchpad.net/sikuli/+question/192925

-- 
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 #191850]: Status of bug #977181 changed to 'Fix Committed' in Sikuli

2012-11-02 Thread RaiMan
Bug #977181 status changed in Sikuli:

New = Fix Committed

https://bugs.launchpad.net/sikuli/+bug/977181
X-1.0rc3: Mac: Sikuli only works for user who installed it --- workaround

This bug is linked to #191850.
On Mac OSX Lion, Sikuli works for one local user only
https://answers.launchpad.net/sikuli/+question/191850

-- 
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 1013247] Re: Sikuli Just closes down itself

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Fix Committed

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  Sikuli Just closes down itself

Status in Sikuli:
  Fix Committed

Bug description:
  Whenever I click on the task screenshot button or create region
  button, instead of the screen to look darker and freeze, it just shots
  off the entire Sikuli application or the application disappears from
  the scene. it is simply not working at all.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1013247/+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 1010288] Re: Threading and using Region.text crashes JVM

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = In Progress

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  Threading and using Region.text crashes JVM

Status in Sikuli:
  In Progress

Bug description:
  DESCRIPTION:
  
  1. Sikuli v1.0rc3
  2. 32-bit, WinXP professional, SP3
  3. Region.text (OCR) in threaded mode, java v6.0_22-b04

  Using , doing something like String aP = this.regionAP.text(); in
  java unthreaded works fine.  threading it however (using a singleton
  pattern) results in a crash.

  Specifically, VisionProxy.dll the dump calls out.

  DUMP:
  -

  run:
  [info] Windows utilities loaded.
  [info] Sikuli vision engine loaded.
  [info] VDictProxy loaded.
  [info] Text Recognizer inited.
  #
  # A fatal error has been detected by the Java Runtime Environment:
  #
  #  EXCEPTION_ACCESS_VIOLATION (0xc005) at pc=0x03acdab6, pid=5616, 
tid=4280
  #
  # JRE version: 6.0_22-b04
  # Java VM: Java HotSpot(TM) Client VM (17.1-b03 mixed mode, sharing 
windows-x86 )
  # Problematic frame:
  # [thread 4176 also had an error]
  C  [VisionProxy.dll+0x8dab6]
  #
  [thread 4412 also had an error]
  [thread 4152 also had an error]
  # An error report file with more information is saved as:
  # [thread 4152 also had an error]
  [thread 5524 also had an error]
  #
  # If you would like to submit a bug report, please visit:
  #   http://java.sun.com/webapps/bugreport/crash.jsp
  # The crash happened outside the Java Virtual Machine in native code.
  # See problematic frame for where to report the bug.
  #
  Java Result: 1
  BUILD SUCCESSFUL (total time: 5 seconds)

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1010288/+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 1006069] Re: type() and paste() not working in a windows app

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Opinion

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  type() and paste() not working in a windows app

Status in Sikuli:
  Opinion

Bug description:
  Sikuli Version : sikuli X-1.0rc3(r905)
  Windows 7 64 bit machine

  Steps to repro:

  imgE = (E.png)
  imgFindE = (FindE.png)
  if find (imgE):
 click(getLastMatch())
 wait(2)
 click (imgFindE)
  else  :
  print Could not open find e screen.

  imgLookFor =(1338314216474.png)
  if find (imgLookFor):
 
 wait(2)
 paste(getLastMatch(),5235) 
 type(getLastMatch(),5235) 
 paste(5235)
   

  Sikuli is unable to type or paste text in my windows app.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1006069/+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 1000643] Re: X 1.0rc3: WIN meta key not working with keyDown()

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = In Progress

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  X 1.0rc3: WIN meta key not working with keyDown()

Status in Sikuli:
  In Progress

Bug description:
  I know that this issue has been reported in bugs #513312 and #836453,
  but my use case is a bit different as the key combination that I want
  to emulate cannot be achieved through type().

  I am using Sikuli X 1.0rc3, on Windows 7 64bit. One of the Windows key 
combinations that we are trying to emulate are the:
WIN key + Shift key + Left arrow key / Right arrow key combinations
  This achieves the effect of flicking a window from one monitor to the next in 
multi-monitor configurations.

  The problem with this combination is that it cannot be achieved with
  type(), hence we hoped to use keyDown() and keyUp().

  Are there any plans, or any suggestions of work arounds, to achieve
  this sort of key combination?

  Regards,
  Jason

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1000643/+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 993895] Re: Sikuli X-1-0rc3 Hangs \ Crashes when attempting to close on Linux

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Opinion

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  Sikuli X-1-0rc3 Hangs \ Crashes when attempting to close on Linux

Status in Sikuli:
  Opinion

Bug description:
  Hello

  So I've been using the portable linux zip of Sikuli for a day now and
  all is well.  However today it has started to hang whenever I try to
  close it on my ubuntu machine.

  I'm not sure how to debug this so some hints toward that would be
  really helpful.

  I have a windows machine too which I have used on the same scripts I
  was working on.  I believe a sync type of issue between my two OS
  using the same files has caused the issue.

  I've tried re downloading and installing but Sikuli still seems to
  remember the session.  Where is this stored on Linux?

  Sikuli X-1-0rc3, 64 bit Linux and 32 bit windows 7.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/993895/+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 993062] Re: [request] sikuli-script.jar should handle --args the same way sikuli-ide.jar does

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Fix Committed

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  [request] sikuli-script.jar should handle --args the same way sikuli-
  ide.jar does

Status in Sikuli:
  Fix Committed

Bug description:
  using 
  java -jar %SIKULI_HOME%\sikuli-script.jar testArgv.sikuli --args 
firstargument

  prints sys.argv correctly:

  testArgv.sikuli
  --args
  firstargument

  but terminates the script with
  [error] Can't run this Sikuli script: --args
  java.lang.StringIndexOutOfBoundsException: String index out of range: -1
  

  using
  java -jar %SIKULI_HOME%\sikuli-ide.jar -r testArgv.sikuli --args 
firstargument

  works as expected.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/993062/+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 988742] Re: X-1.0rc3: odd behavior inside hotkey handler when using mouse/keyboard actions

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = In Progress

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  X-1.0rc3: odd behavior inside hotkey handler when using mouse/keyboard
  actions

Status in Sikuli:
  In Progress

Bug description:
  happens at least on Windows:

  When using type and click in a hotkey handler, it seems, that each
  hotkey action has to be terminated by a real keyboard or mouse action
  (means: done manually by the user), to get the hotkey handler into a
  state, that hot keys are accepted and/or the scripted handler actions
  are done correctly.

  more information in the related question.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/988742/+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 988697] Re: [request] IDE: integrated search should be case insensitive

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = In Progress

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  [request] IDE: integrated search should be case insensitive

Status in Sikuli:
  In Progress

Bug description:
  Another of those silly things that would made it easier to use the IDE :)
  Can make the integrated search to perform case insensitive by default and 
probably have a check box next to it to enable case sensitive search

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/988697/+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 988253] Re: Mac: Error while building sikuli from source --- TIFF_LIBS not found

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = In Progress

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  Mac: Error while building sikuli from source --- TIFF_LIBS not found

Status in Sikuli:
  In Progress

Bug description:
  Hi,

  I'm trying to build from sikuli source code in Mac. I have installed
  all the pre installed softwares which were mentioned in build_mac.txt

  while running the below commands in terminal, for the command 5 mentioned 
below , CMake error is getting throned.
  ---
  -- Found Tesseract 
  NATIVE_LIBS: VisionProxy;VDictProxy;MacUtil;MacHotkeyManager
  CMake Error: The following variables are used in this project, but they are 
set to NOTFOUND.
  Please set them or make sure they are set and tested correctly in the CMake 
files:
  TIFF_LIBS
  linked by target MacHotkeyManager in directory 
/Users/admin/skl_source_code/sikuli/sikuli-script/src/main/native
  linked by target MacUtil in directory 
/Users/admin/skl_source_code/sikuli/sikuli-script/src/main/native
  linked by target VDictProxy in directory 
/Users/admin/skl_source_code/sikuli/sikuli-script/src/main/native
  linked by target VDictProxy in directory 
/Users/admin/skl_source_code/sikuli/sikuli-script/src/main/native
  linked by target VisionProxy in directory 
/Users/admin/skl_source_code/sikuli/sikuli-script/src/main/native

  -- Configuring incomplete, errors occurred!
  --

  
  1. make a build directory in sikuli-script/
mkdir sikuli-script/build

  2. generate makefiles with CMake
cd sikuli-script/build
cmake ..

  3. build sikuli-script
make

  4. make a build directory in sikuli-ide/
cd ../.. # go back to the top directory
mkdir sikuli-ide/build

  5. generate makefiles of Sikuli-IDE with CMake
cd sikuli-ide/build
cmake ..

  
  Could some one can help on how to resolve the error? and how to proceed 
further...

  
  Thanks,
  Kumar

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/988253/+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 987786] Re: X-1.0rc3: capture shortcut works when the script is running

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: Confirmed = In Progress

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  X-1.0rc3: capture shortcut works when the script is running

Status in Sikuli:
  In Progress

Bug description:
  Tested on 930
  While the script is running, if I press the capture hotkey combo the image 
capture mode is seen and the ESC key does not work to terminate it.
  If you eventually select something, the image is put into the script at the 
cursor position.

  While a script is being executed the image capture hotkey handling
  should be disabled. Not a major issue, but still needs to be fixed :)

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/987786/+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 983767] Re: java.lang.UnsatisfiedLinkError: java.lang.UnsatisfiedLinkError

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Fix Committed

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  java.lang.UnsatisfiedLinkError: java.lang.UnsatisfiedLinkError

Status in Sikuli:
  Fix Committed

Bug description:
  Hi Sikuli team,

  Please help me iam facing the below issue, iam using system Linux OS ubuntu, 
  write the scripts and click on run button after that below error is showing 

   switchApp(System Preferences.app)
  wait(__SIKULI-CAPTURE-BUTTON__)
  type(demouser\t)
  type(Ravi\t)
  type(8801825494\t)
  type(100)
  click(__SIKULI-CAPTURE-BUTTON__)



  
  java.lang.UnsatisfiedLinkError: java.lang.UnsatisfiedLinkError: 
/home/uday/Downloads/Sikuli-X-1.0rc3 
(r905)-linux-i686/Sikuli-IDE/libs/libVisionProxy.so: libml.so.2.1: cannot open 
shared object file: No such file or directory

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/983767/+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 977181] Re: X-1.0rc3: Mac: Sikuli only works for user who installed it --- workaround

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Fix Committed

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  X-1.0rc3: Mac: Sikuli only works for user who installed it ---
  workaround

Status in Sikuli:
  Fix Committed

Bug description:
   problem
  On Mac OSX after installing Sikuli (copying Sikuli-IDE.app from the install 
image to folder /Applications) it can only be used by the current user, that 
installed Sikuli.

  Other users on the same machine, get the error message:

  You can't open the application Sikuli-IDE 
  because it may be damaged or incomplete

  when trying to start it.

   reason
  in the installation files
  Sikuli-IDE.app/Contents/Info.plist

  is missing read right for the group and everyone levels.

   workaround
  After installing Sikuli run the following command from command line (Terminal 
session) logged in as the user who has installed Sikuli:

  chmod og+r /Applications/Sikuli-IDE.app/Contents/Info.plist

  

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/977181/+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 976865] Re: X-1.0rc3: Renaming (using SaveAs) a .sikuli project, leaves old files .py and .html

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: Confirmed = Fix Committed

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  X-1.0rc3: Renaming (using SaveAs) a .sikuli project, leaves old files
  .py and .html

Status in Sikuli:
  Fix Committed

Bug description:
  OSX version 10.7.3
  Sikuli 1.0rc3

  If you rename the project from within the Sikuli IDE, not all internal
  files are renamed and nothing works. The only workaround is to create
  a new project with the right name and then copy and paste.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/976865/+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 972163] Re: siluki dont run

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Fix Committed

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  siluki dont run

Status in Sikuli:
  Fix Committed

Bug description:
  I click on sikuli IDE icon and the program doesn't launch...
  I have a javaw.exe *32 on my task board after the click.
   I use win 7 64bits and sikuli 1.0.3 (the last version)
  Tks for your help

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/972163/+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 966818] Re: Green indication for failed Unit test

2012-11-02 Thread RaiMan
no longer supported

** Changed in: sikuli
   Status: New = Won't Fix

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  Green indication for failed Unit test

Status in Sikuli:
  Won't Fix

Bug description:
  Sikuli version X-1.0rc3
  Windows7 64bit. 

  When I'm runing this very basic sikuli script in the Sikuli IDE I'm
  getting green bar on the right in UnitTest panel:

  def setUp(self):
  #popup(setup)
  pass

  def tearDown(self):
  #popup(tear down) 
  pass

  def testOne(self):
  popup(in one)
  assert not exists(Pattern(1332886672074.png).similar(0.50))
  assert exists(Pattern(1332886672074.png).similar(0.50))
  #assert not exists(Pattern(1332886672074.png).similar(0.90))

  I believe that this bar should be red to visualize a problem.

  Also note as per attaches screenshot it says Errors: 1, Failures: 0
  and further down it shows one failure. Should this tab be called
  Errors instead of Failures?

  thanks

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/966818/+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 966770] Re: typo mistakes in the tutorials

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Fix Committed

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  typo mistakes in the tutorials

Status in Sikuli:
  Fix Committed

Bug description:
  1. On http://sikuli.org/docx/tutorials/helloworld/helloworld-win.html
  replace teh with the.

  2.On http://sikuli.org/docx/tutorials/surveillance/surveillance.html
  popup(Obama has updated his message) but on the popup itself the text is
  Obama has updated his status message

  3.On http://sikuli.org/docx/tutorials/resize/resize.html
  The strategy is illustrated below. We want to find the top-right corner, then 
go to the right to find the top-right corner, then go below to find the 
bottom-right corner. 
  Change to:
  The strategy is illustrated below. We want to find the top-left corner, then 
go to the right to find the top-right corner, then go below to find the 
bottom-right corner.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/966770/+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 966708] Re: KeyModifier.WIN uses alt in linux

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Importance: Undecided = Low

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  KeyModifier.WIN uses alt in linux

Status in Sikuli:
  New

Bug description:
  I tried using type(' ', KeyModifier.WIN),  I also tried .KEY_WIN,
  .META, and .KEY_META, but all seem to just pass Alt+whatever.

  I'm trying to use it to activate WIN+r through a RDP connection.  I
  know it's passing Alt, because I can use it to activate local hotkeys.

  I'm on Linux Mint 12, using Sikuli X 1.0rc3 (r905) 64 bit.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/966708/+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 966536] Re: Sikuli can't find a match on a second screen/monitor when calling a function in an included module

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = In Progress

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  Sikuli can't find a match on a second screen/monitor when calling a
  function in an included module

Status in Sikuli:
  In Progress

Bug description:
  Sikuli-X 1.0rc2
  Windows 7 Ultimate 64 bit.

  Sikuli can't find a match on a second screen/monitor when calling a
  function in an included module.

  I have a couple functions:
  from sikuli.Sikuli import *

  myScriptPath = D:\\ICProjects\\sikuli\\testPOS.sikuli
  if not myScriptPath in sys.path:
sys.path.append(myScriptPath)

  scr1 = Screen(0)

  def initScreen(nScreen):
global scr1
scr1 = Screen(nScreen)
return scr1

  def showSelectedScreen():
global scr1
scr1.highlight()

  def ShowInfo():
global scr1
scr1.click(IMG)

  They all work and find the IMG on the second monitor when they are
  called in the local script.

  However when I try to call them from a master script that includes
  them it won't find the image. It will still show the same highlight on
  the second screen though. (On my system screen 0 highlights the second
  monitor, but I did try 1 as well)

  from sikuli.Sikuli import *
  #import os

  myScriptPath = D:\\ICProjects\\sikuli\\testML.sikuli
  if not myScriptPath in sys.path:
sys.path.append(myScriptPath)

  import testPOS
  reload(sys.modules[testPOS])

  scrML = testPOS.initScreen(0)
  testPOS.showSelectedScreen()
  testPOS.ShowInfo()

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/966536/+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 953233] Re: X-1.0rc3: IDE: docStrings not properly coloured in Sikuli IDE

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Importance: Undecided = Low

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  X-1.0rc3: IDE: docStrings not properly coloured in Sikuli IDE

Status in Sikuli:
  New

Bug description:
  PyDoc uses double/triple quotes to denote a DocString.  In the example
  below for and class  would be highlighted.  These should be coloured
  the same as #.

  for class x 
  do 
  y

  This is very minor as it does not affect the behaviour of either
  Sikuli or Pydoc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/953233/+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] [Question #185973]: Status of bug #945351 changed to 'Won't Fix' in Sikuli

2012-11-02 Thread RaiMan
Bug #945351 status changed in Sikuli:

New = Won't Fix

https://bugs.launchpad.net/sikuli/+bug/945351
Unable to run scripts on Ubuntu 11.10

This bug is linked to #185973.
Not working in Ubuntu
https://answers.launchpad.net/sikuli/+question/185973

-- 
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 #190133]: Status of bug #950603 changed to 'In Progress' in Sikuli

2012-11-02 Thread RaiMan
Bug #950603 status changed in Sikuli:

New = In Progress

https://bugs.launchpad.net/sikuli/+bug/950603
X-1.0rc3: Region.highlight() should not close expanded menu or drop down

This bug is linked to #190133.
Highlight of an expanded drop-down menu closes the menu area
https://answers.launchpad.net/sikuli/+question/190133

-- 
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 945641] Re: X-1.0rc3: IDE: Cursor is misplaced in IDE when font size is changed

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: Confirmed = In Progress

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  X-1.0rc3: IDE: Cursor is misplaced in IDE when font size is changed

Status in Sikuli:
  In Progress

Bug description:
  Found in Sikuli r930 on for Mac 10.6 and on Sikuli X 1.0rc3 on Windows
  7.

  This behavior found in both Windows 7 (64 bit) and Mac OS 10.6.8 (64
  bit).

  To recreate:  Change font size in text editing preferences. Then try
  to click in code editor and add or delete text. Note that the text is
  not inserted or deleted at the cursor location.

  Looks like the cursor moving logic isn't using the updated font size.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/945641/+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 950611] Re: [request] Region.highlight() should have a color option

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Importance: Undecided = Low

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  [request] Region.highlight() should have a color option

Status in Sikuli:
  New

Bug description:
  Upon successful highlight, the perimeter box color is red.
  Is there any available implementation that allows the coder to change the 
highlight perimeter to another color (i.e. green)?
  If not, will you be implementing it?
  Thanks,

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/950611/+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 950603] Re: X-1.0rc3: Region.highlight() should not close expanded menu or drop down

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = In Progress

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  X-1.0rc3: Region.highlight() should not close expanded menu or drop
  down

Status in Sikuli:
  In Progress

Bug description:
  Hello,
  In sikuli rc3 it was noticed that, after clicking upon a drop-down button, 
then highlighting the expanded menu area, the highlight execution seems to 
close the expanded drop-down menu.

  This behavior was not present in rc2, where it was possible to
  highlight an expanded drop-down menu (this is the desired behavior).

  Would it be possible to have the highlight behavior upon an expanded
  drop down menu maintain the menu expanded during and after highlight
  execution? (in rc3)

  Thanks,

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/950603/+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 945351] Re: Unable to run scripts on Ubuntu 11.10

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Won't Fix

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  Unable to run scripts on Ubuntu 11.10

Status in Sikuli:
  Won't Fix

Bug description:
  I installed Sikuli via apt-get on my Ubuntu 11.10 system but I am
  having problems running any scripts.  I can take screenshots but when
  I try to run a script I get the folowing error.

  --
  [error] Stopped [error] Error message: Traceback (innermost last): (no code 
object) at line 0 SyntaxError: ('future feature with_statement is not defined', 
(' ', 1, 6, ''))
  -

  I am having the same problem as reported by Jason. I downloaded Sikuli
  from ubuntu repository.

  If I download and install the latest version of Sikuli from sikuli.org
  - it crashes with a NoClassFound java error. System is having Open JDK
  1.6

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/945351/+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] [Question #188121]: Status of bug #935946 changed to 'In Progress' in Sikuli

2012-11-02 Thread RaiMan
Bug #935946 status changed in Sikuli:

New = In Progress

https://bugs.launchpad.net/sikuli/+bug/935946
[request] want support for virtual screen (image from file) in class Region

This bug is linked to #188121.
Inconsistency in Match.text() - OCR related
https://answers.launchpad.net/sikuli/+question/188121

-- 
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 944687] Re: An error is given after the script is saved

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Fix Committed

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

** Changed in: sikuli
Milestone: None = x1.0

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

Title:
  An error is given after the script is saved

Status in Sikuli:
  Fix Committed

Bug description:
  Preconditions:
  Sikuli: 1.0rc3 v905, and  sikuli v930. Win7 on 64bit

  Steps:

  1.Create a script
  2.Save the script.

  Actual result:

  1. An error is given :

  [error] Stopped
  [error] An error occurs at line 1
  [error] Error message: SyntaxError: ('mismatched character \'\\n\' expecting 
\'\'', ('', 1, 17, 'addModPath(D:\\)\n'))

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/944687/+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 941883] Re: X 1.0rc3: Windows start menu does not stay open in slow motion mode

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: Confirmed = In Progress

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  X 1.0rc3: Windows start menu does not stay open in slow motion mode

Status in Sikuli:
  In Progress

Bug description:
  I'm using Windows Server 2003 R2 32-bit

  I use the start menu for launch Internet Explorer, but when run in  Slow 
Motion mode the start menu disappear, steps:
1. Click icon start menu
2. Click icon Internet Explorer

   in normal mode the execution is working properly.

  I watch in slow motion mode, the IDE make another window, sure to
  paint the red circles around the mouse, then when the another window
  is created the start menu lost the focus and close it.

  One solution is to create the window of the red circles without
  getting the focus of the display

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/941883/+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 941841] Re: Click becomes rightClick in 10.7/10.6 OSX

2012-11-02 Thread RaiMan
** Changed in: sikuli
   Status: New = Opinion

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

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

Title:
  Click becomes rightClick in 10.7/10.6 OSX

Status in Sikuli:
  Opinion

Bug description:
  if Global.CurOS == OS.MAC:
  App.open(Safari)
  wait(5)
  click(Pattern(Chttp.png).similar(0.66).targetOffset(-1,1))
  
paste(https://swebmail.tcgroup.tc/CookieAuth.dll?GetLogon?reason=0formdir=1curl=Z2FowaZ2F;)
  type(Key.ENTER)
  else:
  type(Key.ESC, KeyModifier.CTRL)
  
paste(https://swebmail.tcgroup.tc/CookieAuth.dll?GetLogon?reason=0formdir=1curl=Z2FowaZ2F;)
  type(Key.ENTER)
  
  wait(5)
  click(Pattern(1326873959177.png).similar(0.78).targetOffset(-91,-28),10)
  paste(hdrectestserver)
  if Global.CurOS == OS.MAC:
  type(Key.ENTER)
  click(Pattern(1326873959177.png).similar(0.63).targetOffset(-76,1),10)
  paste(hdrectestserver)
  if Global.CurOS == OS.MAC:
  type(Key.ENTER)
  click(Pattern(1326873959177.png).similar(0.64).targetOffset(127,34),10)

  
  When clicking PNG´s under the OS.MAC it RIGHTCLICKS??
  Works fine if i do it manually and on PC the script works ok.

  any work around?

  MAC 1.1 2006 10.6.8
  MAC Mini mid 2011 10.7.3 
  Sikuli RC3

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/941841/+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


  1   2   3   4   >