[Sikuli-driver] [Bug 1228769] Re: Error indicator not point to the right error line after user add or remove lines

2013-09-22 Thread RaiMan
currently the indicator only is reset with the next run.

option 1: vanishes when user starts editing again (no matter what)
option 2: stays with the line in error until next run

what do you prefer / what did you expect.

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

** Changed in: sikuli
   Importance: Undecided => High

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

** Changed in: sikuli
Milestone: None => 1.1.0

** Summary changed:

- Error indicator not point to the right error line after user add or remove 
lines
+ [1.0.1] IDE: Error indicator not on error line after adding /  removing lines

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

Title:
  [1.0.1] IDE: Error indicator not on error line after adding /
  removing lines

Status in Sikuli:
  Fix Committed

Bug description:
  User create a sikuli file with 10 lines of code. User run the file and have 
an error at line 5. 
  An error indicator will show up at line 5 and error message says that error 
in line 5.
  User add 1 more line and he can notices that Error indicator and message 
still point to the line number and it's not the error line now.

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


Re: [Sikuli-driver] [Question #236124]: Import Lib/site-packages the same way as -i option

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

Status: Open => Answered

RaiMan proposed the following answer:
With Sikuli you should have your own modules in /Lib, since
this works with all variants.

-- 
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 #236126]: [1.0.1] Sikuli IDE hangs on start up with "... starting - pls. wait ..."

2013-09-22 Thread Andrew
New question #236126 on Sikuli:
https://answers.launchpad.net/sikuli/+question/236126

Hi, Sikuli appeared to install okay on Windows 7/32 machine with JRE7 (update 
40), into C:\SikuliX\ folder

but clicking "runIDE.cmd" hangs with a yellow box stating " Sikuli IDE 1.0.1 
... starting - pls. wait ... "

Command Window run debug output here...

Microsoft Windows [Version 6.1.7601]

C:\SikuliX>runide.cmd -d3
+++ running this Java
java version "1.7.0_40"
Java(TM) SE Runtime Environment (build 1.7.0_40-b43)
Java HotSpot(TM) Client VM (build 24.0-b56, mixed mode, sharing)
+++ trying to start Sikuli IDE
+++ using: -Xms64M -Xmx512M -Dfile.encoding=UTF-8 -Dsikuli.FromCommandLine -jar
C:\SikuliX\sikuli-ide.jar -d3
[debug] Running on Java 7 (1.7.0_40-b43)
[debug] --- Sikuli parameters ---
[debug] 1: -d3
[debug] init user preferences
[debug] locale: en_US
[debug] ResourceLoaderBasic: SikuliX Package Build: 1.0.1 12SEP2013160242
[debug] ResourceLoaderBasic: check: we are running on arch: x86
[debug] ResourceLoaderBasic: check: using Java at: C:/Program Files/Java/jre7/
[debug] ResourceLoaderBasic: check: Exists Environment.SIKULIX_HOME? YES: C:/Sik
uliX/libs
[debug] ResourceLoaderBasic: checkLibsDir: C:/SikuliX/libs
[debug] ResourceLoaderBasic: loadLib: WinUtil
[debug] ResourceLoaderBasic: loadLib: Found: WinUtil
[debug] ResourceLoaderBasic: loadLib: Now loaded: WinUtil
[debug] ResourceLoaderBasic: checkLibsDir: Using libs at: C:\SikuliX\libs
[debug] ResourceLoaderBasic: check: Using this as OCR directory (tessdata) too
[debug] Screen: initScreens: basic initialization (1 Screen(s) found)
[debug] *** monitor configuration (primary: 0) ***
[debug] Screen 0: S(0)[0,0 1080x1920]
[debug] *** end monitor configuration ***
[debug] [I18N] menuShowThumbs
[debug] SikuliX Jython Support Build: 1.0.1 12SEP2013160248


I had previous version of Sikuli (0.9) running okay from c:\Program Files\Sikuli

Thanks for any help!

Andrew | eResearch | University of Western Sydney

-- 
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 #236120]: How can I import variables used by my script from external files?

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

RaiMan proposed the following answer:
-- to use import, the files must either be xxx.sikuli scripts or have
ending .py

-- If this is your plan, then the folder containing the file to import
must be on sys.path at time of import:

# outside the loop to get the index of the entry in sys.path:
import os
sys.path.add("__myfiles__")
sys_path_entry = sys.path.index("__myfiles__")
file_folders = "abolute_path_of_folderNN" # without the number!
# e.g. file_folder = r"c:\mystuff\folder"

-- the import can be created and executed:
exec "from %s import *"%current_file

where n is the current loop index

So the loop might look like this:

for n in range(number_of_configs):
current_folder = file_folder + str(n)
current_file = "config_file" + str(n)
sys.path[sys_path_entry] = current_folder
exec "from %s import *"%
# your other coding

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 #236120]: How can I import variables used by my script from external files?

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

RaiMan proposed the following answer:
-- to use import, the files must either be xxx.sikuli scripts or have
ending .py

-- If this is your plan, then the folder containing the file to import
must be on sys.path at time of import:

# outside the loop to get the index of the entry in sys.path:
import os
sys.path.add("__myfiles__")
sys_path_entry = sys.path.index("__myfiles__")
file_folder = "abolute_path_of_folderNN" # without the number!
# e.g. file_folder = r"c:\mystuff\folder"

-- the import can be created and executed:
exec "from %s import *"%current_file

where n is the current loop index

So the loop might look like this:

for n in range(number_of_configs):
current_folder = file_folder + str(n)
current_file = "config_file" + str(n)
sys.path[sys_path_entry] = current_folder
exec "from %s import *"%
# your other coding

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 #236120]: How can I import variables used by my script from external files?

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

Status: Open => Answered

RaiMan proposed the following answer:
-- to use import, the files must either be xxx.sikuli scripts or have
ending .py

-- If this is your plan, then the folder containing the file to import
must be on sys.path at time of import:

# outside the loop to get the index of the entry in sys.path:
import os
sys.path.add("__myfiles__")
sys_path_entry = sys.path.index("__myfiles__")
file_folders = "abolute_path_of_folderNN" # without the number!
# e.g. file_folder = r"c:\mystuff\folder"

-- the import can be created and executed:
exec "from %s import *"%current_file

where n is the current loop index

So the loop might look like this:

for n in range(number_of_configs):
current_folder = file_folder + str(n)
current_file = "config_file" + str(n)
sys.path[sys_path_entry] = current_folder
exec "from %s import *"%
# your other coding

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 #236126]: [1.0.1] Sikuli IDE hangs on start up with "... starting - pls. wait ..."

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

Status: Open => Answered

RaiMan proposed the following answer:
try the following:

- remove SIKULIX_HOME from environment (not needed any longer, if
running Sikuli with runIDE.cmd being in the setup folder (c:\SikuliX in
your case)

- remove from registry the paths/entries beneath
HKEY_CURRENT_USER\Software\JavaSoft\Prefs\org\sikuli

- restart Windows

- in a command line window go to c:\SikuliX and runIDE.cmd

-- 
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 #236126]: [1.0.1] Sikuli IDE hangs on start up with "... starting - pls. wait ..."

2013-09-22 Thread Andrew
Question #236126 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/236126

Status: Answered => Solved

Andrew confirmed that the question is solved:
Hi Raimund, thanks for the speedy response! That seems to have mostly
worked.

Sikuli IDE seems a bit fragile, but enough to get a script edit and
launched.

Sometimes it still hangs on launch and a few times I got the
JIntellitype error (see below). But after a few more goes it seems to
come good!

Is there anything I can provide to help with reliable starts?

Cheers, Andrew | eResearch | University of Western Sydney

C:\SikuliX>runide -d3
+++ running this Java
java version "1.7.0_40"
Java(TM) SE Runtime Environment (build 1.7.0_40-b43)
Java HotSpot(TM) Client VM (build 24.0-b56, mixed mode, sharing)
+++ trying to start Sikuli IDE
+++ using: -Xms64M -Xmx512M -Dfile.encoding=UTF-8 -Dsikuli.FromCommandLine -jar
C:\SikuliX\sikuli-ide.jar -d3
[debug] Running on Java 7 (1.7.0_40-b43)
[debug] --- Sikuli parameters ---
[debug] 1: -d3
[debug] init user preferences
[debug] locale: en_US
[debug] ResourceLoaderBasic: SikuliX Package Build: 1.0.1 12SEP2013160242
[debug] ResourceLoaderBasic: check: we are running on arch: x86
[debug] ResourceLoaderBasic: check: using Java at: C:/Program Files/Java/jre7/
[debug] ResourceLoaderBasic: check: Exists Environment.SIKULIX_HOME? YES: C:/Sik
uliX/libs
[debug] ResourceLoaderBasic: checkLibsDir: C:/SikuliX/libs
[debug] ResourceLoaderBasic: loadLib: WinUtil
[debug] ResourceLoaderBasic: loadLib: Found: WinUtil
[debug] ResourceLoaderBasic: loadLib: Now loaded: WinUtil
[debug] ResourceLoaderBasic: checkLibsDir: Using libs at: C:\SikuliX\libs
[debug] ResourceLoaderBasic: check: Using this as OCR directory (tessdata) too
[debug] Screen: initScreens: basic initialization (1 Screen(s) found)
[debug] *** monitor configuration (primary: 0) ***
[debug] Screen 0: S(0)[0,0 1080x1920]
[debug] *** end monitor configuration ***
[debug] [I18N] menuShowThumbs
[debug] SikuliX Jython Support Build: 1.0.1 12SEP2013160248

C:\SikuliX>runide -d
+++ running this Java
java version "1.7.0_40"
Java(TM) SE Runtime Environment (build 1.7.0_40-b43)
Java HotSpot(TM) Client VM (build 24.0-b56, mixed mode, sharing)
+++ trying to start Sikuli IDE
+++ using: -Xms64M -Xmx512M -Dfile.encoding=UTF-8 -Dsikuli.FromCommandLine -jar
C:\SikuliX\sikuli-ide.jar -d
Exception in thread "main" com.melloware.jintellitype.JIntellitypeException: Cou
ld not load JIntellitype.dll from local file system or from inside JAR
at com.melloware.jintellitype.JIntellitype.(JIntellitype.java:109)

at com.melloware.jintellitype.JIntellitype.getInstance(JIntellitype.java
:166)
at org.sikuli.basics.WindowsHotkeyManager._addHotkey(WindowsHotkeyManage
r.java:38)
at org.sikuli.ide.SikuliIDE.installCaptureHotkey(SikuliIDE.java:2247)
at org.sikuli.ide.SikuliIDE.initHotkeys(SikuliIDE.java:2290)
at org.sikuli.ide.SikuliIDE.initSikuliIDE(SikuliIDE.java:322)
at org.sikuli.ide.SikuliIDE.(SikuliIDE.java:242)
at org.sikuli.ide.SikuliIDE.getInstance(SikuliIDE.java:349)
at org.sikuli.ide.SikuliIDE.main(SikuliIDE.java:235)
Caused by: java.lang.NullPointerException
at com.melloware.jintellitype.JIntellitype.fromJarToFs(JIntellitype.java
:139)
at com.melloware.jintellitype.JIntellitype.(JIntellitype.java:100)

... 8 more

-- 
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 #236126]: [1.0.1] IDE: Windows-32: hangs on startup: load problem JIntellitype

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

Assignee: None => RaiMan

Summary changed to:
[1.0.1] IDE: Windows-32: hangs on startup: load problem JIntellitype 

-- 
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 #236126]: [1.0.1] Sikuli IDE hangs on start up with "... starting - pls. wait ..."

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

RaiMan posted a new comment:
Thanks for the JIntellitype case. I will check, how this can happen.

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

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


Re: [Sikuli-driver] [Question #235871]: Selecting a value from combo box

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

Status: Answered => Open

Muhammed is still having a problem:

Hi Akbar,

We can not type any thing in the combo box. Only Up and Down Arrows are
working.

Hai RaiMan,

List contains the Country Names, it is static. But the thing is in some
scenarios there will some country selected before our program started to
execute.

So by default in our sikuli script we have to take the control to the
first item so that we can put it in the loop by knowing the count.

Is there any way to reduce this step.

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

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


Re: [Sikuli-driver] [Question #235871]: Selecting a value from combo box

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

Status: Open => Answered

RaiMan proposed the following answer:
Clearly no.
But I think with a fixed/known list, this is rather easy.

Exception: 
you try with Region.text() or take an image of every list item (which can be 
automated). 
But both solutions heavily depend on, that in all cases the displayed font is 
the one when developing the script.

-- 
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 #236120]: How can I import variables used by my script from external files?

2013-09-22 Thread Unuldinei
Question #236120 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/236120

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

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

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


Re: [Sikuli-driver] [Question #236120]: How can I import variables used by my script from external files?

2013-09-22 Thread Unuldinei
Question #236120 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/236120

Status: Answered => Solved

Unuldinei confirmed that the question is solved:
Life saver!

Here is my code now:

import os
config_files_src = r"C:\\SomeFolder\\"
for n in range (10):
execfile(os.path.join(config_files_src + str(n),"config.py"))
popup(str(variable1))

... and it works! Thank you

-- 
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 #236156]: Sikuli examples

2013-09-22 Thread VK
New question #236156 on Sikuli:
https://answers.launchpad.net/sikuli/+question/236156

Hi All,

I am new to Sikuli tool. Can somebody please post some examples of sikuli which 
can be easily understand to new learners.


Thanks Advance,
VK

-- 
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 #236160]: Sikuli IDE not able to go to Capture mode

2013-09-22 Thread VK
New question #236160 on Sikuli:
https://answers.launchpad.net/sikuli/+question/236160

Hi All,

I installed Sikuli-X-1.0rc3 (r905)-win32 setup in my machine. After 
installation I am able to open Sikuli IDE .
But the problem is when I click on Take screenshot option in Tool bar, IDE 
automatically disappear from machine.
Can some body help me how to go to capture mode?

Thanks,
VK

-- 
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 #236126]: [1.0.1] IDE: Windows-32: hangs on startup: load problem JIntellitype

2013-09-22 Thread Boomy Grunt
Question #236126 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/236126

Boomy Grunt posted a new comment:
I got this error after I update from java 7u25 to 7u40. Due to some
other issus with 7u40 (most java web-apps not working any longer) I was
forced to swith back to 7u25. This sikuli error was gone with the
downgrade as well...

-- 
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 #236160]: [RC3] Sikuli IDE not able to go to Capture mode

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

Summary changed to:
[RC3] Sikuli IDE not able to go to Capture mode

-- 
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 #236160]: Sikuli IDE not able to go to Capture mode

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

Status: Open => Answered

RaiMan proposed the following answer:
faq 2005 or upgrade to version 1.0.1 (http://www.sikuli.org/)

-- 
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 #236156]: Sikuli examples

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

Status: Open => Answered

RaiMan proposed the following answer:
start here: http://www.sikuli.org/

... and google is your friend ;-)

-- 
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 #236126]: [1.0.1] IDE: Windows-32: JRE7-40: hangs on startup: load problem JIntellitype

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

RaiMan posted a new comment:
Thanks for info.

-- 
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 #236126]: [1.0.1] IDE: Windows-32: JRE7-40: hangs on startup: load problem JIntellitype

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

Linked to bug: #1229049
https://bugs.launchpad.net/bugs/1229049
"[1.0.1] IDE: Windows-32: JRE7-40: hangs on startup: load problem 
JIntellitype"

-- 
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 #236126]: [1.0.1] IDE: Windows-32: JRE7-40: hangs on startup: load problem JIntellitype

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

Summary changed to:
[1.0.1] IDE: Windows-32: JRE7-40: hangs on startup: load problem JIntellitype 

Description changed to:
Java 7 update 25 seems to work
-- 
Hi, Sikuli appeared to install okay on Windows 7/32 machine with JRE7 (update 
40), into C:\SikuliX\ folder

but clicking "runIDE.cmd" hangs with a yellow box stating " Sikuli IDE
1.0.1 ... starting - pls. wait ... "

Command Window run debug output here...

Microsoft Windows [Version 6.1.7601]

C:\SikuliX>runide.cmd -d3
+++ running this Java
java version "1.7.0_40"
Java(TM) SE Runtime Environment (build 1.7.0_40-b43)
Java HotSpot(TM) Client VM (build 24.0-b56, mixed mode, sharing)
+++ trying to start Sikuli IDE
+++ using: -Xms64M -Xmx512M -Dfile.encoding=UTF-8 -Dsikuli.FromCommandLine -jar
C:\SikuliX\sikuli-ide.jar -d3
[debug] Running on Java 7 (1.7.0_40-b43)
[debug] --- Sikuli parameters ---
[debug] 1: -d3
[debug] init user preferences
[debug] locale: en_US
[debug] ResourceLoaderBasic: SikuliX Package Build: 1.0.1 12SEP2013160242
[debug] ResourceLoaderBasic: check: we are running on arch: x86
[debug] ResourceLoaderBasic: check: using Java at: C:/Program Files/Java/jre7/
[debug] ResourceLoaderBasic: check: Exists Environment.SIKULIX_HOME? YES: C:/Sik
uliX/libs
[debug] ResourceLoaderBasic: checkLibsDir: C:/SikuliX/libs
[debug] ResourceLoaderBasic: loadLib: WinUtil
[debug] ResourceLoaderBasic: loadLib: Found: WinUtil
[debug] ResourceLoaderBasic: loadLib: Now loaded: WinUtil
[debug] ResourceLoaderBasic: checkLibsDir: Using libs at: C:\SikuliX\libs
[debug] ResourceLoaderBasic: check: Using this as OCR directory (tessdata) too
[debug] Screen: initScreens: basic initialization (1 Screen(s) found)
[debug] *** monitor configuration (primary: 0) ***
[debug] Screen 0: S(0)[0,0 1080x1920]
[debug] *** end monitor configuration ***
[debug] [I18N] menuShowThumbs
[debug] SikuliX Jython Support Build: 1.0.1 12SEP2013160248


I had previous version of Sikuli (0.9) running okay from c:\Program Files\Sikuli

Thanks for any help!

Andrew | eResearch | University of Western Sydney

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

2013-09-22 Thread RaiMan
Bug #1229049 status changed in Sikuli:

New => In Progress

https://bugs.launchpad.net/sikuli/+bug/1229049
"[1.0.1] IDE: Windows-32: JRE7-40: hangs on startup: load problem JIntellitype"

This bug is linked to #236126.
[1.0.1] IDE: Windows-32: JRE7-40: hangs on startup: load problem JIntellitype 
https://answers.launchpad.net/sikuli/+question/236126

-- 
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 1229049] [NEW] [1.0.1] IDE: Windows-32: JRE7-40: hangs on startup: load problem JIntellitype

2013-09-22 Thread RaiMan
Public bug reported:

Java 7 update 25 seems to work
-- 
Hi, Sikuli appeared to install okay on Windows 7/32 machine with JRE7 (update 
40), into C:\SikuliX\ folder

but clicking "runIDE.cmd" hangs with a yellow box stating " Sikuli IDE
1.0.1 ... starting - pls. wait ... "

Command Window run debug output here...

Microsoft Windows [Version 6.1.7601]

C:\SikuliX>runide.cmd -d3
+++ running this Java
java version "1.7.0_40"
Java(TM) SE Runtime Environment (build 1.7.0_40-b43)
Java HotSpot(TM) Client VM (build 24.0-b56, mixed mode, sharing)
+++ trying to start Sikuli IDE
+++ using: -Xms64M -Xmx512M -Dfile.encoding=UTF-8 -Dsikuli.FromCommandLine -jar
C:\SikuliX\sikuli-ide.jar -d3
[debug] Running on Java 7 (1.7.0_40-b43)
[debug] --- Sikuli parameters ---
[debug] 1: -d3
[debug] init user preferences
[debug] locale: en_US
[debug] ResourceLoaderBasic: SikuliX Package Build: 1.0.1 12SEP2013160242
[debug] ResourceLoaderBasic: check: we are running on arch: x86
[debug] ResourceLoaderBasic: check: using Java at: C:/Program Files/Java/jre7/
[debug] ResourceLoaderBasic: check: Exists Environment.SIKULIX_HOME? YES: C:/Sik
uliX/libs
[debug] ResourceLoaderBasic: checkLibsDir: C:/SikuliX/libs
[debug] ResourceLoaderBasic: loadLib: WinUtil
[debug] ResourceLoaderBasic: loadLib: Found: WinUtil
[debug] ResourceLoaderBasic: loadLib: Now loaded: WinUtil
[debug] ResourceLoaderBasic: checkLibsDir: Using libs at: C:\SikuliX\libs
[debug] ResourceLoaderBasic: check: Using this as OCR directory (tessdata) too
[debug] Screen: initScreens: basic initialization (1 Screen(s) found)
[debug] *** monitor configuration (primary: 0) ***
[debug] Screen 0: S(0)[0,0 1080x1920]
[debug] *** end monitor configuration ***
[debug] [I18N] menuShowThumbs
[debug] SikuliX Jython Support Build: 1.0.1 12SEP2013160248


I had previous version of Sikuli (0.9) running okay from c:\Program Files\Sikuli

Thanks for any help!

Andrew | eResearch | University of Western Sydney

** Affects: sikuli
 Importance: Medium
 Assignee: RaiMan (raimund-hocke)
 Status: In Progress

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

** Changed in: sikuli
   Importance: Undecided => Medium

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

** Changed in: sikuli
Milestone: None => 1.1.0

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

Title:
  [1.0.1] IDE: Windows-32: JRE7-40: hangs on startup: load problem
  JIntellitype

Status in Sikuli:
  In Progress

Bug description:
  Java 7 update 25 seems to work
  -- 
  Hi, Sikuli appeared to install okay on Windows 7/32 machine with JRE7 (update 
40), into C:\SikuliX\ folder

  but clicking "runIDE.cmd" hangs with a yellow box stating " Sikuli IDE
  1.0.1 ... starting - pls. wait ... "

  Command Window run debug output here...

  Microsoft Windows [Version 6.1.7601]

  C:\SikuliX>runide.cmd -d3
  +++ running this Java
  java version "1.7.0_40"
  Java(TM) SE Runtime Environment (build 1.7.0_40-b43)
  Java HotSpot(TM) Client VM (build 24.0-b56, mixed mode, sharing)
  +++ trying to start Sikuli IDE
  +++ using: -Xms64M -Xmx512M -Dfile.encoding=UTF-8 -Dsikuli.FromCommandLine 
-jar
  C:\SikuliX\sikuli-ide.jar -d3
  [debug] Running on Java 7 (1.7.0_40-b43)
  [debug] --- Sikuli parameters ---
  [debug] 1: -d3
  [debug] init user preferences
  [debug] locale: en_US
  [debug] ResourceLoaderBasic: SikuliX Package Build: 1.0.1 12SEP2013160242
  [debug] ResourceLoaderBasic: check: we are running on arch: x86
  [debug] ResourceLoaderBasic: check: using Java at: C:/Program Files/Java/jre7/
  [debug] ResourceLoaderBasic: check: Exists Environment.SIKULIX_HOME? YES: 
C:/Sik
  uliX/libs
  [debug] ResourceLoaderBasic: checkLibsDir: C:/SikuliX/libs
  [debug] ResourceLoaderBasic: loadLib: WinUtil
  [debug] ResourceLoaderBasic: loadLib: Found: WinUtil
  [debug] ResourceLoaderBasic: loadLib: Now loaded: WinUtil
  [debug] ResourceLoaderBasic: checkLibsDir: Using libs at: C:\SikuliX\libs
  [debug] ResourceLoaderBasic: check: Using this as OCR directory (tessdata) too
  [debug] Screen: initScreens: basic initialization (1 Screen(s) found)
  [debug] *** monitor configuration (primary: 0) ***
  [debug] Screen 0: S(0)[0,0 1080x1920]
  [debug] *** end monitor configuration ***
  [debug] [I18N] menuShowThumbs
  [debug] SikuliX Jython Support Build: 1.0.1 12SEP2013160248

  
  I had previous version of Sikuli (0.9) running okay from c:\Program 
Files\Sikuli

  Thanks for any help!

  Andrew | eResearch | University of Western Sydney

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

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