[Sikuli-driver] [Question #688118]: Do.popAsk returns False when dialog is autoclosed

2020-01-19 Thread itsmetwenty
New question #688118 on Sikuli:
https://answers.launchpad.net/sikuli/+question/688118

When dialog is autoclosed, the Do.popAsk returns False instead of None
SikuliX v2.0.1

---CODE
a = Do.popAsk("A", 10)
print a
--End of CODE

Actual Result : False

-- 
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 #685233]: Cannot fetch arguments in commandline when using sikulix.jar version 1.1.4

2019-10-17 Thread itsmetwenty
Question #685233 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/685233

Status: Open => Solved

itsmetwenty confirmed that the question is solved:
able to fetch using the latest sikulix,jar

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


[Sikuli-driver] [Question #685233]: Cannot fetch arguments in commandline when using sikulix.jar version 1.1.4

2019-10-16 Thread itsmetwenty
New question #685233 on Sikuli:
https://answers.launchpad.net/sikuli/+question/685233

Code:

import sys

a = []
a = sys.argv[1:]
if len(a) <= 0:
print "empty"
else:
print sys.argv[1]



Commandline:
java -jar \sikulix.jar -r \trial.sikuli -- "a"

when using v1.1.3 sikulix.jar (Windows 10 32bit), results is "a"
however when using v1.1.4 sikulix.jar (Windows 10 64bit) results is empty

-- 
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 #678869]: type() functions type incorrect characters

2019-03-05 Thread itsmetwenty
Question #678869 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/678869

itsmetwenty posted a new comment:
I think I found the cause for the incorrect character
it is due to the creation of instance of the app

here is the code:

import thread

global thread_end
thread_end = False

def thread1():
while thread_end == False:
AppTest = App("TextEdit")
print "END"

first_thread = threading.Thread(target=thread1)
first_thread.start()

switchApp("textedit")
for i in range(20):
type("/Users/AbCdEFGhij/a_b_c_1_2_3_4_5_6_7_8_9_0/!@#$%67890" + Key.ENTER)
thread_end

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