[Sikuli-driver] [Question #689500]: IOE permission denied

2020-03-25 Thread Nini Liao
New question #689500 on Sikuli:
https://answers.launchpad.net/sikuli/+question/689500

Hi. I'm new to sikuli; been using it for several days.

Currently I'm trying to save some text to a text file, but with no success. 
This is the code im using.


docker exec node-chrome-sikuli-one java -jar /root/SikuliX/sikuli.jar -r 
/dev/shm/plushie_frenzy.sikuli

[error] script [ plushie_frenzy ] stopped with error in line 12
[error] IOError (  (13, 'Permission denied', 
'/dem/shm/logs/playlogs/pgs_slot_plushie_frenzy_20200326.txt')  )
[error] --- Traceback --- error source first
line: module (  function ) statement
12: main (  ) playDiary = open(diaryPlay + 
"/pgs_slot_plushie_frenzy_" + today + ".txt", 'a')
[error] --- Traceback --- end -


Could anyone shed some light for me? I'm quite new.


-- 
You received this question notification because your team Sikuli Drivers
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 #689478]: Highlight Images

2020-03-25 Thread Eric G
Question #689478 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/689478

Status: Answered => Solved

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

-- 
You received this question notification because your team Sikuli Drivers
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 #689445]: corretto 11 jdk cant run sikuli

2020-03-25 Thread RaiMan
Question #689445 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/689445

Status: Open => Answered

RaiMan proposed the following answer:
check system path and JAVA_HOME setting.

Use SikuliX 2.0.4 and run:

/java.exe /sikulixjar -v -c

-- 
You received this question notification because your team Sikuli Drivers
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 #689478]: Highlight Images

2020-03-25 Thread RaiMan
Question #689478 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/689478

Status: Open => Answered

RaiMan proposed the following answer:
--- if reg.exists([imm1.PNG, imm2.PNG, imm3.PNG, etc], 0):

not possible - only one image as parameter allowed

--- second trial (see docs!)

test=[imm1.PNG, imm2.PNG, imm3.PNG, etc]
matches=reg.findAnyList(test)
for match in  matches:
match.highlight(1)

The solution: (see docs!)

for match in  matches:
match.highlightOn()
wait(1)
highlightAllOff()

-- 
You received this question notification because your team Sikuli Drivers
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