Re: [Sikuli-driver] [Question #704189]: NameError: name 'use' is not defined

2023-04-21 Thread RaiMan
Question #704189 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/704189

Status: Answered => Expired

RaiMan changed the question status:
no feedback

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for SikuliX.

___
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 #704189]: NameError: name 'use' is not defined

2023-01-04 Thread RaiMan
Question #704189 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/704189

Status: Open => Answered

RaiMan proposed the following answer:
again the typo 
from sikuli import #
instead of
from sikuli import *

you should use copy to put code here.

how to import Python stuff in SikuliX scripts look here:
https://sikulix-2014.readthedocs.io/en/latest/scenarios.html#access-python-packages-from-sikulix-scripts-run-by-sikulix-gui-or-commandline

Supposing you have got a  Ryancode.py or even a Python module called
Ryancode, than this is what you have to deal with according to the docs.

Another general option is to manipulate the Pythonpath, so it contains
the location, where you have your Ryancode stuff.

All this is basic Python knowledge by the way.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for SikuliX.

___
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 #704189]: NameError: name 'use' is not defined

2023-01-03 Thread Ryan K
Question #704189 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/704189

Status: Answered => Open

Ryan K is still having a problem:
Thanks for responding RaiMan.

Switching gears... I talked with my SME.

I am currently running all my code within Eclipse,

Below is my code:

from sikuli import #
import Ryancode

print("ryan")

tmpRegion = Region(295, 329, 233, 178)
tmpRegion.highlight(2)

test.captureImage(None, 'ryan', tmpRegion)

print("done")


#

I then get an error message:

ImportError: Ryancode.sikuli has no Ryancode.py

Can you explain this error?  I've been having a hard time figuring it
out.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for SikuliX.

___
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 #704189]: NameError: name 'use' is not defined

2023-01-03 Thread RaiMan
Question #704189 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/704189

Status: Open => Answered

RaiMan proposed the following answer:
--- your code
from sikuli import *
import Ryancode
print("ryan")
tmpRegion = 
tmpRegion.highlight(2)

syntactically correct would be:
find(tmpRegion).highlight(2)
... but if this makes sense in this situation - I do not know ;-)

If tmpRegion really is a screenshot image, then 
tmpRegion.highlight(2)

would report an error, that highlight is not defined for a string
object.

hence your error happens earlier and the only reasonable place is
Ryancode, since the module sikuli does not produce such an error (just
check with a one-liner script).

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for SikuliX.

___
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 #704189]: NameError: name 'use' is not defined

2023-01-03 Thread Ryan K
Question #704189 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/704189

Ryan K gave more information on the question:
I am still having problems.  Can someone assist please?

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for SikuliX.

___
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 #704189]: NameError: name 'use' is not defined

2022-12-22 Thread Ryan K
Question #704189 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/704189

Status: Answered => Open

Ryan K is still having a problem:
Fixed that Manfred, they were typos.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for SikuliX.

___
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 #704189]: NameError: name 'use' is not defined

2022-12-22 Thread Ryan K
Question #704189 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/704189

Description changed to:
I am a noob when it comes to programming so I did my best to figure this
out:

I am using Sikuli to interface with Eclipse IDE to run some scripts
within a jython file called "Ryancode".  The file "Ryancode" is very
long and I inherited "Ryancode" from another user who I cannot get ahold
of.

Anyway, I am running the code below within Sikuli IDE:

from sikuli import *
import Ryancode

print("ryan")

tmpRegion = 

tmpRegion.highlight(2)

Ryancode.captureImage(none, 'ryan', tmpRegion)

print("done")



The error message I get is below:

Exception in thread "Thread-32" Traceback (most recent call last):
File "", line 1, in 
NameError: name 'use' is not defined



Is there a variable named 'use' within the Sikuli lib folder that is not
defined?  Is there a variable within "Ryancode" that is not defined?  I
am confused on what's happening.  My main objective is to use the
different functions within "Ryancode" to run regression tests on my
system.  ie. taking screenshots of different GUI's, CLI output to prove
that the network is setup/running properly.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for SikuliX.

___
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 #704189]: NameError: name 'use' is not defined

2022-12-22 Thread Manfred Hampl
Question #704189 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/704189

Status: Open => Answered

Manfred Hampl proposed the following answer:
Do you really have
  from sikuli import #
or is it
  from sikuli import *
?

And at the end in
  print("done)
the ending quote is missing.

This example cannot work.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for SikuliX.

___
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 #704189]: NameError: name 'use' is not defined

2022-12-22 Thread Ryan K
Question #704189 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/704189

Description changed to:
I am a noob when it comes to programming so I did my best to figure this
out:

I am using Sikuli to interface with Eclipse IDE to run some scripts
within a jython file called "Ryancode".  The file "Ryancode" is very
long and I inherited "Ryancode" from another user who I cannot get ahold
of.

Anyway, I am running the code below within Sikuli IDE:

from sikuli import #
import Ryancode

print("ryan")

tmpRegion = 

tmpRegion.highlight(2)

Ryancode.captureImage(none, 'ryan', tmpRegion)

print("done)



The error message I get is below:

Exception in thread "Thread-32" Traceback (most recent call last):
File "", line 1, in 
NameError: name 'use' is not defined



Is there a variable named 'use' within the Sikuli lib folder that is not
defined?  Is there a variable within "Ryancode" that is not defined?  I
am confused on what's happening.  My main objective is to use the
different functions within "Ryancode" to run regression tests on my
system.  ie. taking screenshots of different GUI's, CLI output to prove
that the network is setup/running properly.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for SikuliX.

___
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 #704189]: NameError: name 'use' is not defined

2022-12-22 Thread Ryan K
Question #704189 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/704189

Description changed to:
I am a noob when it comes to programming so I did my best to figure this
out:

I am using Sikuli to interface with Eclipse IDE to run some scripts
within a file called "Ryancode".  The file "Ryancode" is very long and I
inherited "Ryancode" from another user who I cannot get ahold of.

Anyway, I am running the code below within Sikuli IDE:

from sikuli import #
import Ryancode

print("ryan")

tmpRegion = 

tmpRegion.highlight(2)

Ryancode.captureImage(none, 'ryan', tmpRegion)

print("done)



The error message I get is below:

Exception in thread "Thread-32" Traceback (most recent call last):
File "", line 1, in 
NameError: name 'use' is not defined



Is there a variable named 'use' within the Sikuli lib folder that is not
defined?  Is there a variable within "Ryancode" that is not defined?  I
am confused on what's happening.  My main objective is to use the
different functions within "Ryancode" to run regression tests on my
system.  ie. taking screenshots of different GUI's, CLI output to prove
that the network is setup/running properly.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for SikuliX.

___
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 #704189]: NameError: name 'use' is not defined

2022-12-22 Thread Ryan K
New question #704189 on SikuliX:
https://answers.launchpad.net/sikuli/+question/704189

I am a noob when it comes to programming so I did my best to figure this out:

I am using Sikuli to interface with Eclipse IDE to run some scripts within a 
file called "Ryancode".  The file "Ryancode" is very long and I inherited 
"Ryancode" from another user who I cannot get ahold of.

Anyway, I am running the code below within Sikuli IDE:

from sikuli import #
import Ryancode

print("ryan")

tmpRegion = 

tmpRegion.highlight(2)

Ryancode.captureImage(none, 'ryan', tmpRegion)

print("done)



The error message I get is below:

Exception in thread "Thread-32" Traceback (most recent call last):
File "", line 1, in 
NameError: name 'use' is not defined



Is there a variable named 'use' within the Sikuli lib folder that is not 
defined?  I am confused on what's happening.  My main objective is to use the 
different functions within "Ryancode" to run regression tests on my system.  
ie. taking screenshots of different GUI's, CLI output to prove that the network 
is setup/running properly.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for SikuliX.

___
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