[Sikuli-driver] [Question #708013]: getCenter on a user coded region returns a clickpoint on the bottom right of the region

2023-09-22 Thread Mark McGuinn
New question #708013 on SikuliX:
https://answers.launchpad.net/sikuli/+question/708013


I've defined a region using the Region command and when I do a highlight of the 
region is show corrrectly. But when I want to click on the region I use the 
gtCenter call but the clickpoint for the region is shown at the bottom right 
corner and when I try to do the click it does not activate the region.

I expect the getCenter command would return co-ordinates at the center of the 
region and when I click on this co-ordinate it would activate the region on the 
screen

My question is whether the getCenter call works with regions created with the 
Region call?

-- 
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 #689848]: Is there a way of ensuring that only the required number of clicks are carried out?

2020-04-12 Thread Mark McGuinn
New question #689848 on Sikuli:
https://answers.launchpad.net/sikuli/+question/689848


I have an app which is designed to automate certain aspects of an auction 
process. The app cycles through the auction catalog to gather specific 
information on each item available. The catalog has the following format:




 

[x]  [1]   [4][7]   [8]   
[10]...
   [2]   [5][9]   
[11].
   [3]   [6]
[12}

The catalog is made up of multiple columns and each column can have 1,2 or 3 
items  in it. If you click on an item it drills down to give more detailed 
information on the item. Once you click back from the detailed information you 
are placed back at position [x] ( a design feature over which I have absolutely 
no control).

I have designed the sub-routine below to cycle through the items and position 
the cursor at the first item in a column. The  and  are clickable and 
move 6 columns across the catalog. The issue I am having is that when I use the 
loop to cycle to the correct column a variable number of clicks is being 
executed which means  that the cursor is not landing in the correct place and 
sometimes duplicate information is loaded, other times if more clicks than 
needed are executed information is loaded out of sequence. I an

I have tried to include a test to ensure that the click is being executed, I 
have also put a wait in to see if that makes a difference, it doesn't. The UI 
is so fast that when there is no wait in you can't see the items scrolling 
across the screen. My question therefore is, is there a way to ensure only the 
correct number of clicks is being executed?

def goto_car_column(cols):
right_tabs = 0
right_jumps = 0
Debug.user("The count at cols is.."+str(cols))
wait(1)
store_car ="Holder"
quicksteps = (cols - 10) // 6
normalsteps = (cols - 10) % 6
while right_jumps <= quicksteps:
click(Location(1566, 239))
car_reg = (Region(1340,221,151,31))
read_car = car_reg.text()

if store_car == read_car:
click(Location(1566, 239))
wait(1)
else:
store_car = read_car

right_jumps +=1

while right_tabs <= normalsteps:
   
#type (Key.RIGHT)
click(Location(958, 380))
wait(1)
right_tabs +=1

One thing to note as well is that the debug statement shows the correct value 
being passed to the routine.

-- 
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 #689782]: Region text read not always returning correct text

2020-04-09 Thread Mark McGuinn
Question #689782 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/689782

Status: Answered => Solved

Mark McGuinn confirmed that the question is solved:
The suggestion to use the space character as the delimiter instead
worked, thanks!

-- 
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 #689782]: Region text read not always returning correct text

2020-04-09 Thread Mark McGuinn
Question #689782 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/689782

Status: Needs information => Open

Mark McGuinn gave more information on the question:

as requested the ascii string after the ascii_reg.text() when the programs 
works is:

('The ascii text is-->', '\xc2\xa9 40,000 \xc2\xa9 78,000 H')

and when it doesn't is:

('The ascii text is-->', '\xc2\xa9 40,000 @ 78,000 ;')


It is not possible to do a copy/paste of the screen because the area is a 
'button' and if you try to right click on it to select it the button is 
triggered.

-- 
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 #689782]: Region text read not always returning correct text

2020-04-09 Thread Mark McGuinn
Question #689782 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/689782

Mark McGuinn gave more information on the question:
I thought it might be useful to add the output for when firstly the
program runs correctly:

('Character is ...', '\xc2')
('Character is ...', 194)
('Character is ...', '\xa9')
('Character is ...', 169)
('Character is ...', ' ')
('Character is ...', 32)
('Character is ...', '1')
('Character is ...', 49)
('Character is ...', '0')
('Character is ...', 48)
('Character is ...', ',')
('Character is ...', 44)
('Character is ...', '0')
('Character is ...', 48)
('Character is ...', '0')
('Character is ...', 48)
('Character is ...', '0')
('Character is ...', 48)
('Character is ...', ' ')
('Character is ...', 32)
('Character is ...', '\xc2')
('Character is ...', 194)
('Character is ...', '\xa9')
('Character is ...', 169)
('Character is ...', ' ')
('Character is ...', 32)
('Character is ...', '1')
('Character is ...', 49)
('Character is ...', '6')
('Character is ...', 54)
('Character is ...', ',')
('Character is ...', 44)
('Character is ...', '0')
('Character is ...', 48)
('Character is ...', '0')
('Character is ...', 48)
('Character is ...', '0')
('Character is ...', 48)
(
'Character is ...', ' ')
('Character is ...', 32)
('Character is ...', '|')
('Character is ...', 124)
('The result is -->', 1)
('The second result is -->', 11, 2)
('The bid is ', '1')
('The ask is ', '16000')

and secondly when it doesn't:

('Character is ...', '\xc2')
('Character is ...', 194)
('Character is ...', '\xa9')
('Character is ...', 169)
('Character is ...', ' ')
('Character is ...', 32)
('Character is ...', '1')
('Character is ...', 49)
('Character is ...', '0')
('Character is ...', 48)
('Character is ...', ',')
('Character is ...', 44)
('Character is ...', '0')
('Character is ...', 48)
('Character is ...', '0')
('Character is ...', 48)
('Character is ...', '0')
('Character is ...', 48)
('Character is ...', ' ')
('Character is ...', 32)
('Character is ...', '@')
('Character is ...', 64)
('Character is ...', ' ')
('Character is ...', 32)
('Character is ...', '1')
('Character is ...', 49)
('Character is ...', '6')
('Character is ...', 54)
('Character is ...', ',')
('Character is ...', 44)
('Character is ...', '0')
('Character is ...', 48)
('Character is ...', '0')
('Character is ...', 48)
('Character is ...', '0')
('Character is ...', 48)
('Character is ...', ' ')
('Character is ...', 32)
('Charact
er is ...', '|')
('Character is ...', 124)
('The result is -->', 1)
('The second result is -->', 1, 2)
('The bid is ', '')
('The ask is ', '116000')

-- 
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 #689782]: Region text read not always returning correct text

2020-04-08 Thread Mark McGuinn
New question #689782 on Sikuli:
https://answers.launchpad.net/sikuli/+question/689782

I have a auction app which reads the region on the screen containing 
information on the current bid position and the amount the vendor wants in 
order to sell the item immediately. The fields are shown on the screen as shown 
in the following example.

(CR)  4,000 (CR) 2

Because the size of the area containing the amounts of the bid and the ask can 
vary what I do is define a region which contains all of the information and 
then read the text which I then manipulate to extract the numbers as integers. 
I do this by looking for a special character in the text (The ")" character 
ascii 169) and then using that to split out the number which I  then convert 
into an integer. I have included a simple test piece of code below.

The problem is that after a variable amount of times read the text I will get a 
-1 returned indicating that the special character was not found even though it 
was on the screen. If I rerun the code on the same image it will work with 
nothing changed in either the code or on the screen.

My question therefore is whether  the region.text() call is problematic or if 
there is an issue with the way I am doing things. As usual any help would be 
much appreciated.

The code snippet:


import re
loc_code = 0
if loc_code == 0:
ascii_reg =(Region(460,381,366,41))
else:
ascii_reg = (Region(561,762,258,30))
ascii_text = ascii_reg.text()
ore_count =0 
ore = len(ascii_text)

while ore_count < ore:
print("Character is ...",ascii_text[ore_count])
print("Character is ...",ord(ascii_text[ore_count]))
ore_count +=1

result = ascii_text.find(chr(169))
print("The result is -->",result)
result2 =ascii_text.find(chr(169),result+1)
print("The second result is -->",result2,result+1)
bid_val = ascii_text[result:result2]
# print("The ask is -->",ask_val)
bid_val_i =  re.sub("[^0-9]","",bid_val)   
bid_s = bid_val_i.replace(',','')
int_bid_val = int(bid_s)

ask_val = ascii_text[result2+1:ore]
ask_val_i = re.sub("[^0-9]","",ask_val)
ask_s = ask_val_i.replace(',','')
int_ask_val = int(ask_s)

print("The bid is ",bid_s)
print("The ask is ",ask_s)





-- 
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 #688106]: Reload error when no reload calls present

2020-01-19 Thread Mark McGuinn
Question #688106 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/688106

Status: Needs information => Open

Mark McGuinn gave more information on the question:
The script is being run in the IDE and below are the lines with import:

def auction_control():



myScriptPath = "c:\\Users\\mmcguinn\\Documents"
if not myScriptPath in sys.path: sys.path.append(myScriptPath)
from sikuli import *
from ast import literal_eval
from mensel import *
from bidding import *
from auction_questions import *


import unittest
Settings.OcrReadText = True
Settings.OcrLanguage="ENG"
Settings.DebugLogs = True
import java.lang.System
import java.util.Arrays
import java.lang.Object
import java.awt.event.InputEvent
import java.io.FilterInputStream 
from java import *
import unittest
import re
import xlrd
import xlwt
import call_auction
import os.path

-- 
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 #688106]: Reload error when no reload calls present

2020-01-19 Thread Mark McGuinn
New question #688106 on Sikuli:
https://answers.launchpad.net/sikuli/+question/688106

I have a main control routine which calls 4 sub-routines to do various things. 
However when I try to run the main routine I get the following error:

[error] IDE: Run Script: internal error:
Traceback (most recent call last):
  File "", line 1, in 
TypeError: reload() argument must be a module

The thing is that there is no reload calls anywhere in the code. I am confused 
as to why this error i occurring and would welcome any pointers as to its cause.

-- 
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 #687794]: Calling a click from a sub-routine causes an exception.

2020-01-13 Thread Mark McGuinn
Question #687794 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687794

Status: Needs information => Open

Mark McGuinn gave more information on the question:
My apologies, I did not do a specific import of the routines, I thought
that they would be imported automatically as outlined in the
Documentation


Sikuli automatically finds other Sikuli scripts in the same directory, when 
they are imported

I guess I misunderstood what the documentation was saying.

-- 
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 #687794]: Calling a click from a sub-routine causes an exception.

2020-01-13 Thread Mark McGuinn
Question #687794 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687794

Mark McGuinn gave more information on the question:
Looking into the issue to try and find a workaround I discovered that
the image path does not contain the sub-routine folder as it apparently
should. If you manually add the directory to the default image path then
the image that is being looked for is found.

-- 
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 #687794]: Calling a click from a sub-routine causes an exception.

2020-01-13 Thread Mark McGuinn
Question #687794 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687794

Mark McGuinn posted a new comment:
HI, I was wonderng if anyone has had the time to look at this issue. If
they have is it reproducible from the simple example above?

-- 
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 #687794]: Calling a click from a sub-routine causes an exception.

2020-01-10 Thread Mark McGuinn
Question #687794 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687794

Status: Answered => Open

Mark McGuinn is still having a problem:
Here is the simplest test case:

result = test()
print result

which calls:


def test():
click("1578666326196.png")
return(0)

The image it is calling is just the "Sikuli" link on the page above. The
error as reported is:


[error] ImagePath: find: not there: 1578666326196.png
[error] script [ call_bug_routine ] stopped with error in line 1
[error] FindFailed ( 1578666326196.png not loaded )
[error] --- Traceback --- error source first
line: module ( function ) statement 
2: bug_routine (  test ) click("1578666326196.png")
1: main (   ) resu8lt = test()
[error] --- Traceback --- 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


Re: [Sikuli-driver] [Question #687794]: Calling a click from a sub-routine causes an exception.

2020-01-10 Thread Mark McGuinn
Question #687794 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687794

Status: Answered => Open

Mark McGuinn is still having a problem:
This is marked as answered but the bug remains. What do I need to do to
confirm it is a bug?

-- 
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 #687794]: Calling a click from a sub-routine causes an exception.

2020-01-06 Thread Mark McGuinn
Question #687794 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687794

Description changed to:
Below is a simple test case which shows the problem. The click command
if called on its own works fine, however if you try to call it from a
sub-routine then you get an exception saying the image file could not be
found

result = test_auction(1000,1000)
print result

the called routine:

def test_auction(high_bid,low_bid):


click(Pattern("1575297163479-1.png").similar(0.80))

The error message:

[error] script [ ttauction ] stopped with error in line 2
[error] FindFailed ( 1575297163479-1.png: (37x31) in R[0,0 1680x1050]@S(0) )
[error] --- Traceback --- error source first
line: module ( function ) statement 
5: Sauction (  test_auction ) 
click(Pattern("1575297163479-1.png").similar(0.80))
2: main (   ) result = test_auction(1000,1000)
[error] --- Traceback --- end --

This is Sikuli 2.0.1 on Windows 10 (64 bit). I have also tried without
the similar option and that makes no difference . I also tried a sub-
routine with o parameters and again no difference.


The image does exist before the call is made there is no waiting for an image 
to appear. The code runs ok on the same page if not called from the subroutine.

-- 
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 #687794]: Calling a click from a sub-routine causes an exception.

2020-01-06 Thread Mark McGuinn
New question #687794 on Sikuli:
https://answers.launchpad.net/sikuli/+question/687794

Below is a simple test case which shows the problem. The click command if 
called on its own works fine, however if you try to call it from a sub-routine 
then you get an exception saying the image file could not be found

result = test_auction(1000,1000)
print result

the called routine:

def test_auction(high_bid,low_bid):


click(Pattern("1575297163479-1.png").similar(0.80))

The error message:

[error] script [ ttauction ] stopped with error in line 2
[error] FindFailed ( 1575297163479-1.png: (37x31) in R[0,0 1680x1050]@S(0) )
[error] --- Traceback --- error source first
line: module ( function ) statement 
5: Sauction (  test_auction ) 
click(Pattern("1575297163479-1.png").similar(0.80))
2: main (   ) result = test_auction(1000,1000)
[error] --- Traceback --- end --

This is Sikuli 2.0.1 on Windows 10 (64 bit). I have also tried without the 
similar option and that makes no difference . I also tried a sub-routine with o 
parameters and again no difference.

-- 
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] [Bug 1858343] [NEW] Calling a click from a sub-routine causes an exception.

2020-01-05 Thread Mark McGuinn
Public bug reported:

Below is a simple test case which shows the problem. The click command
if called on its own works fine, however if you try to call it from a
sub-routine then you get an exception saying the image file could not be
found

result = test_auction(1000,1000)
print result

the called routine:

def test_auction(high_bid,low_bid):


click(Pattern("1575297163479-1.png").similar(0.80))

The error message:

[error] script [ ttauction ] stopped with error in line 2
[error] FindFailed ( 1575297163479-1.png: (37x31) in R[0,0 1680x1050]@S(0) )
[error] --- Traceback --- error source first
line: module ( function ) statement 
5: Sauction (  test_auction ) 
click(Pattern("1575297163479-1.png").similar(0.80))
2: main (   ) result = test_auction(1000,1000)
[error] --- Traceback --- end --

This is Sikuli 2.0.1 on Windows 10 (64 bit). I have also tried without
the similar option and that makes no difference . I also tried a sub-
routine with o parameters and again no difference.

** Affects: sikuli
 Importance: Undecided
 Status: New

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

Title:
  Calling a click from a sub-routine causes an exception.

Status in Sikuli:
  New

Bug description:
  Below is a simple test case which shows the problem. The click command
  if called on its own works fine, however if you try to call it from a
  sub-routine then you get an exception saying the image file could not
  be found

  result = test_auction(1000,1000)
  print result

  the called routine:

  def test_auction(high_bid,low_bid):

  
  click(Pattern("1575297163479-1.png").similar(0.80))

  The error message:

  [error] script [ ttauction ] stopped with error in line 2
  [error] FindFailed ( 1575297163479-1.png: (37x31) in R[0,0 1680x1050]@S(0) )
  [error] --- Traceback --- error source first
  line: module ( function ) statement 
  5: Sauction (  test_auction ) 
click(Pattern("1575297163479-1.png").similar(0.80))
  2: main (   ) result = test_auction(1000,1000)
  [error] --- Traceback --- end --

  This is Sikuli 2.0.1 on Windows 10 (64 bit). I have also tried without
  the similar option and that makes no difference . I also tried a sub-
  routine with o parameters and again no difference.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1858343/+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 #687690]: Use of a Mask

2020-01-01 Thread Mark McGuinn
Question #687690 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687690

Status: Answered => Solved

Mark McGuinn confirmed that the question is solved:
Many, many thanks for the quick response which appears to have sorted
out the problem.

-- 
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 #687690]: Use of a Mask

2019-12-31 Thread Mark McGuinn
New question #687690 on Sikuli:
https://answers.launchpad.net/sikuli/+question/687690

Hi,

  I am trying to use the Pattern mask feature to search for an image. Below is 
the code I have written, but this code causes an exception, is there something 
wrong with the code?

new_img = Pattern("1577396415423.png").mask
if exists ( new_img ):
print("found it")

The exceptions is:


[error] script [ tepm ] stopped with error in line 6
[error] java.lang.RuntimeException ( sikulix.RuntimeException: find, wait, 
exists: invalid parameter:  )

This is on 2.0.1 on Windows 10.

-- 
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] [Bug 1856450] Re: looks like an extra Click being added by IDE during loop --- definitely no

2019-12-27 Thread Mark McGuinn
Unfortunately the wait sis not solve the issue, and with the debug set
to level 3 it is not recording the extra activity after the item is
found. The debug shows the script finding the item, and then it logs the
click at a specified location, it does not however log the click which
takes the item back to ANY and thus the wrong results are returned from
the script. I can provide a recording showing the behaviour along with
the debug log.

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

Title:
  looks like an extra Click being added by IDE during loop ---
  definitely no

Status in Sikuli:
  New

Bug description:
  Hi,
  the following script is designed to loop through a menu item until it fins 
the one it is looking for and when it does it stops the loop and is supposed to 
click a confirm button which takes the screen to another page. However what is 
happening is that the IDE finds the correct option but adds another click which 
takes the menu on to the next option before it clicks confirm which means it is 
confirming the wrong item. In the log file the extra click does not seems to be 
recorded but it does happen. Below is the code snippet and the logfile with 
debug(3) set. As far as I can tell the code logic is sound but if there is a 
problem with it which is causing the extra click please point it out. The code 
is looking for "BMW 2002 TURBO" but it is find that and then clicking on:

  try:
  while found == 0:
    print("About to click")
    click("1576020708907.png")
    print("clicking")
    current_model = model_region.text()
    wait(1)

    if current_model == find_model:
  print("Found It")
  found = 1
  print ("Found is = ",found)
  click("1576403393174.png")
  break
  # wait(5)

    elif current_model == "ANY":
  print("Did Not Find -->",find_model)
  break
  except:
     print("Caught exception ")

  The debug output is:
   more ...
  [debug] highlight R[1157,402 233x37]@S(0) for 2.0 secs
  ('M is -->', 'BMW |')
  ('Storecar is -->', 'BMW')
  exact match
  [debug] DOUBLE CLICK on L[1273,420]@S(0) (558 msec)
  [debug] Image: reused: 1576019906865.png 
(file:C:\Users\mmcguinn\Documents\Mensel.sikuli\1576019906865.png)
  [debug] Region: wait: waiting 3.0 secs for 1576019906865.png to appear in 
R[0,0 1680x1050]@S(0)
  
  [debug] Region: wait: 1576019906865.png appeared (M[788,457 56x32]@S(0) 
S:0.99 C:816,473 [510 msec])
  [debug] CLICK on L[816,473]@S(0) (523 msec)
  [debug] Finder2: makeMat: INT_RGB (223x36)
  [debug] Image: reused: 1576020708907.png 
(file:C:\Users\mmcguinn\Documents\Mensel.sikuli\1576020708907.png)
  [debug] Region: wait: waiting 3.0 secs for 1576020708907.png to appear in 
R[0,0 1680x1050]@S(0)
  About to click
  
  [debug] Region: wait: 1576020708907.png appeared (M[789,451 44x43]@S(0) 
S:0.93 C:811,472 [167 msec])
  clicking
  [debug] CLICK on L[811,472]@S(0) (527 msec)
  [debug] Finder2: makeMat: INT_RGB (223x36)
  ('Did Not Find -->', 'BMW 2002 TURBO')

  The IDE version is 2.0.1 running on Windows 10 64 bit Version
  10.0.18362 Build 18362

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1856450/+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 #687415]: IDE: How to solve/track strange problems

2019-12-24 Thread Mark McGuinn
Question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Answered => Open

Mark McGuinn is still having a problem:
I get the error with the following simple test


max_bid = 5

I have emailed a screenshot of the error to the sikuli account as there
does not appear a way to upload it to this app.

-- 
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 #687415]: IDE: How to solve/track strange problems

2019-12-24 Thread Mark McGuinn
Question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Mark McGuinn gave more information on the question:
Yes the problem still exists.

Sent from my Huawei phone


 Original message 
From: Mark McGuinn 
Date: Mon, 23 Dec 2019, 18:22
To: bb...@hotmail.com
Subject: Re: [Question #687415]: IDE: How to solve/track strange problems
Your question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Answered => Open

You are still having a problem:
Manfred,

apologies for the mis-assignment on the code, given that the code which
I forgot to include is now available to you are you able to reproduce
the problem?

Thanks
Mark


The Future Is Certain Give Us Time To Work It Out

From: boun...@canonical.com  on behalf of Manfred Hampl 

Sent: Monday 23 December 2019 18:03
To: bb...@hotmail.com 
Subject: Re: [Question #687415]: IDE: How to solve/track strange problems

Your question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Open => Answered

Manfred Hampl proposed the following answer:
But that definition (which isn't my proposal) is missing in your comment
#13

Repeating RaiMan's command #8: please do not reply with history!

--
If this answers your question, please go to the following page to let us
know that it is solved:
https://answers.launchpad.net/sikuli/+question/687415/+confirm?answer_id=17

If you still need help, you can reply to this email or go to the
following page to enter your feedback:
https://answers.launchpad.net/sikuli/+question/687415

You received this question notification because you asked the question.

--
You received this question notification because you asked the 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 #687415]: IDE: How to solve/track strange problems

2019-12-23 Thread Mark McGuinn
Question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Answered => Open

Mark McGuinn is still having a problem:
Manfred,

 apologies for the mis-assignment on the code, given that the code which
I forgot to include is now available to you are you able to reproduce
the problem?

Thanks
Mark


The Future Is Certain Give Us Time To Work It Out

From: boun...@canonical.com  on behalf of Manfred Hampl 

Sent: Monday 23 December 2019 18:03
To: bb...@hotmail.com 
Subject: Re: [Question #687415]: IDE: How to solve/track strange problems

Your question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Open => Answered

Manfred Hampl proposed the following answer:
But that definition (which isn't my proposal) is missing in your comment
#13

Repeating RaiMan's command #8: please do not reply with history!

--
If this answers your question, please go to the following page to let us
know that it is solved:
https://answers.launchpad.net/sikuli/+question/687415/+confirm?answer_id=17

If you still need help, you can reply to this email or go to the
following page to enter your feedback:
https://answers.launchpad.net/sikuli/+question/687415

You received this question notification because you asked the 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 #687415]: IDE: How to solve/track strange problems

2019-12-23 Thread Mark McGuinn
Question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Needs information => Open

Mark McGuinn gave more information on the question:

Hi Manfred,

  the definition is the one you proposed i.e.

def test_if_char(value):
for e in value:​
if ord(e) > 255: return False​
return True

regards
Mark


The Future Is Certain Give Us Time To Work It Out

From: boun...@canonical.com  on behalf of Manfred Hampl 

Sent: Monday 23 December 2019 17:23
To: bb...@hotmail.com 
Subject: Re: [Question #687415]: IDE: How to solve/track strange problems

Your question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Open => Needs information

Manfred Hampl requested more information:
Where is the definition of test_if_char ?

--
To answer this request for more information, you can either reply to
this email or enter your reply at the following page:
https://answers.launchpad.net/sikuli/+question/687415

You received this question notification because you asked the 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 #687415]: IDE: How to solve/track strange problems

2019-12-23 Thread Mark McGuinn
Question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Answered => Open

Mark McGuinn is still having a problem:
Changed all the variable names to be the same and the lines still fail.

-- 
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 #687415]: IDE: How to solve/track strange problems

2019-12-23 Thread Mark McGuinn
Question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Needs information => Open

Mark McGuinn gave more information on the question:
Hi Manfred,

   below is the simplified script plus a sub-routine it calls. Attached
are a couple of screen shots showing the various possible elements in
the time area which I am trying to process. I hope sending this directly
to you is ok,

Mark


​
def make_bid(bid_amount):​
​
#​
# Here check that ​
​
​
Debug.user("In make_bid")​
print("In Make Bid")​
if exists ("1576597641783.png",5):​
#​
# ​
click("1576597838526.png")​
wait("1576597897207.png")​
click("1576597948174.png")​
print("Bid Placed")​
return(1)​
​
 #​
 # if ending soon is not present somethin went wrong, either we are too early​
 # or someone bought the item​
​
elif exists ("1577013855062.png",2) :​
print("Auction Complete")​
return(1)​
​
else:​
print(" Auction is not ending yet need to rerty")​
return (2)​
​
​
#​
# need to loop back to calling proc​
​
max_bid = 5​
time_left_i = get_time_left(Region(260,692,89,29))​
#time_split = time_left_i.split(" ")​
print("The len of time_left_i is:",len(time_left_i))​
print("Time Left i1..",time_left_i)​
​
if time_left_i[0] == "PLETE":​
print("Auction Over")​
​
elif time_left_i[0] == "SOON":​
make_bid(max_bid)​
# elif test_if_char(time_lefti[0])​  # <--- These lines cause the 
problem
 #   print("Empty string")​​#  <
 #break​​   #  <
else:​
 wait_time_1 =  re.sub("[^0-9]","",time_left_i[0])​
 print("Wait time 1 is ",wait_time_1)​
 print("The type of wait_time_ is:",type(wait_time_1))   ​
 result = isinstance(wait_time_1, str)​
 print(wait_time_1,'instance of string?', result)​


The Future Is Certain Give Us Time To Work It Out

From: boun...@canonical.com  on behalf of Manfred Hampl 

Sent: Monday 23 December 2019 15:43
To: bb...@hotmail.com 
Subject: Re: [Question #687415]: IDE: How to solve/track strange problems

Your question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Open => Needs information

Manfred Hampl requested more information:
Can you provide a simplified version of your script - as short as
possible but still failing, and provide the full text?

--
To answer this request for more information, you can either reply to
this email or enter your reply at the following page:
https://answers.launchpad.net/sikuli/+question/687415

You received this question notification because you asked the 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 #687415]: IDE: How to solve/track strange problems

2019-12-23 Thread Mark McGuinn
Question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Needs information => Open

Mark McGuinn gave more information on the question:

Adding the *:* after the if makes no difference to the exception being raised. 
The def for get time left is:

def get_time_left(reg):
return reg.text().split(" ")

-- 
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 #687415]: IDE: How to solve/track strange problems

2019-12-23 Thread Mark McGuinn
Question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Answered => Open

Mark McGuinn is still having a problem:
I've done what was suggested and am still getting the error when the
test procedure basically contains just the if statement:


   def test():   
# 
 time_left_i = get_time_left(Region(260,692,89,29)) 
if  time_left_i[0] == ""
  print("Empty string")​

-- 
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 #687415]: Strange problem or a bug in Sikuli

2019-12-23 Thread Mark McGuinn
Question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Needs information => Open

Mark McGuinn gave more information on the question:
Hi Manfred

   thanks for the followup. The exception is raised when the ide does a
check before executing the code therefore there is no print output just
the error message.

regards
Mark



The Future Is Certain Give Us Time To Work It Out

From: boun...@canonical.com  on behalf of Manfred Hampl 

Sent: Monday 23 December 2019 07:44
To: bb...@hotmail.com 
Subject: Re: [Question #687415]: Strange problem or a bug in Sikuli

Your question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Open => Needs information

Manfred Hampl requested more information:
What is the last output before that error message?

I assume it should be the output of
print("Time Left i...",time_left_i)​

--
To answer this request for more information, you can either reply to
this email or enter your reply at the following page:
https://answers.launchpad.net/sikuli/+question/687415

You received this question notification because you asked the 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 #687415]: Strange problem or a bug in Sikuli

2019-12-22 Thread Mark McGuinn
Question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Answered => Open

Mark McGuinn is still having a problem:
Manfred,

   thanks for the suggestion, unfortunately it is causing an exception
when I try to implement it:


[error] script [ auction_control ] stopped with error at line --unknown--
[error] Error caused by: java.lang.IllegalArgumentException: Cannot create 
PyString with non-byte value

I had a look for the error and there is a suggestion that this is a
problem in jython. I am also still wondering why the correct code is
returned when the int() function is not used, but when it is there  a
problem shows up even when the screen is exactly the same.

regards
Mark


The Future Is Certain Give Us Time To Work It Out

From: boun...@canonical.com  on behalf of Manfred Hampl 

Sent: Sunday 22 December 2019 18:04
To: bb...@hotmail.com 
Subject: Re: [Question #687415]: Strange problem or a bug in Sikuli

Your question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Open => Answered

Manfred Hampl proposed the following answer:
"ValueError ( invalid literal for int() with base 10: '' )​"

This indicates that the value that you wanted to convert was the empty
string which cannot be converted into a number.

My guess:
The screen shows something unexpected - not "PLETE", not "SOON", but also not a 
number, or the OCR program could not correctly interpret the text on the screen

Possible workaround:
In addition the the if-s for "PLETE" and "SOON" add also a branch for the case 
that time_left_i[0] is the empty string after the re.sub action.

maybe something like
…
elif time_left_i[0] == "":​
 print("Empty string")​
 break​
…

--
If this answers your question, please go to the following page to let us
know that it is solved:
https://answers.launchpad.net/sikuli/+question/687415/+confirm?answer_id=3

If you still need help, you can reply to this email or go to the
following page to enter your feedback:
https://answers.launchpad.net/sikuli/+question/687415

You received this question notification because you asked the 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


[Sikuli-driver] [Bug 1856450] Re: looks like an extra Click being added by IDE during loop --- definitely no

2019-12-22 Thread Mark McGuinn
Adding in the wait solved the problem.

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

Title:
  looks like an extra Click being added by IDE during loop ---
  definitely no

Status in Sikuli:
  New

Bug description:
  Hi,
  the following script is designed to loop through a menu item until it fins 
the one it is looking for and when it does it stops the loop and is supposed to 
click a confirm button which takes the screen to another page. However what is 
happening is that the IDE finds the correct option but adds another click which 
takes the menu on to the next option before it clicks confirm which means it is 
confirming the wrong item. In the log file the extra click does not seems to be 
recorded but it does happen. Below is the code snippet and the logfile with 
debug(3) set. As far as I can tell the code logic is sound but if there is a 
problem with it which is causing the extra click please point it out. The code 
is looking for "BMW 2002 TURBO" but it is find that and then clicking on:

  try:
  while found == 0:
    print("About to click")
    click("1576020708907.png")
    print("clicking")
    current_model = model_region.text()
    wait(1)

    if current_model == find_model:
  print("Found It")
  found = 1
  print ("Found is = ",found)
  click("1576403393174.png")
  break
  # wait(5)

    elif current_model == "ANY":
  print("Did Not Find -->",find_model)
  break
  except:
     print("Caught exception ")

  The debug output is:
   more ...
  [debug] highlight R[1157,402 233x37]@S(0) for 2.0 secs
  ('M is -->', 'BMW |')
  ('Storecar is -->', 'BMW')
  exact match
  [debug] DOUBLE CLICK on L[1273,420]@S(0) (558 msec)
  [debug] Image: reused: 1576019906865.png 
(file:C:\Users\mmcguinn\Documents\Mensel.sikuli\1576019906865.png)
  [debug] Region: wait: waiting 3.0 secs for 1576019906865.png to appear in 
R[0,0 1680x1050]@S(0)
  
  [debug] Region: wait: 1576019906865.png appeared (M[788,457 56x32]@S(0) 
S:0.99 C:816,473 [510 msec])
  [debug] CLICK on L[816,473]@S(0) (523 msec)
  [debug] Finder2: makeMat: INT_RGB (223x36)
  [debug] Image: reused: 1576020708907.png 
(file:C:\Users\mmcguinn\Documents\Mensel.sikuli\1576020708907.png)
  [debug] Region: wait: waiting 3.0 secs for 1576020708907.png to appear in 
R[0,0 1680x1050]@S(0)
  About to click
  
  [debug] Region: wait: 1576020708907.png appeared (M[789,451 44x43]@S(0) 
S:0.93 C:811,472 [167 msec])
  clicking
  [debug] CLICK on L[811,472]@S(0) (527 msec)
  [debug] Finder2: makeMat: INT_RGB (223x36)
  ('Did Not Find -->', 'BMW 2002 TURBO')

  The IDE version is 2.0.1 running on Windows 10 64 bit Version
  10.0.18362 Build 18362

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1856450/+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 #687415]: Strange problem or a bug in Sikuli

2019-12-22 Thread Mark McGuinn
Question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Answered => Open

Mark McGuinn is still having a problem:
Hi RaiMan,

   many thanks for the response,i t has helped me to move things
forward. However there is still a problem which is difficult for me as a
newbie to sikuli and python to understand. Using the function you
provided I get back as string containing the time left, which is fine.
The problem arises when I try to convert the string to an int, I get the
situation where the string being returned doesn't contain a string with
a number instead it returns a string which is linked to the auction but
does not appear on the screen. Below is the code:

time_left_i = get_time_left(Region(260,692,89,29))
print("Time Left i...",time_left_i)​
if time_left_i[0] == "PLETE":​
print("Auction Over")​
break​
elif time_left_i[0] == "SOON":​
make_bid(max_bid)​
else:​
wait_time_1 =  re.sub("[^0-9]","",time_left_i[0]) ​
print("Wait time 1 is ",wait_time_1)​
print("The type of wait_time_ is:",type(wait_time_1))​
#wait_time_2 = int(wait_time_1)​
result = isinstance(wait_time_1, str)​
print(wait_time_1,'instance of string?', result)​
​
wait_time_2 = wait_time_1 * 60​
print("Wait time 3 is ",wait_time_2)​
   # wait_time = wait_time_1 - 5​
print("Else")​
#

This invalid string causes  an exception in the ide. It therefore
appears that the int() function is interfering with the reg.text call.
Is this possible?

Error caused by int()
[error] script [ auction_control ] stopped with error in line 95
[error] ValueError ( invalid literal for int() with base 10: '' )​
[error] --- Traceback --- error source first​
line: module ( function ) statement ​
95: main (   ) wait_time_2 = int(wait_time_1)​
[error] --- Traceback --- end --


Thanks
Mark


The Future Is Certain Give Us Time To Work It Out

From: boun...@canonical.com  on behalf of RaiMan 

Sent: Sunday 22 December 2019 13:38
To: bb...@hotmail.com 
Subject: Re: [Question #687415]: Strange problem or a bug in Sikuli

Your question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Status: Open => Answered

RaiMan proposed the following answer:
--- The names used in this piece of code are unique and only used in
these few lines

not really true: time_left_i

Surely not a SikuliX problem, but a coding flaw.

Make a new def: (I prefer camelCase over camel_case)

def getTimeLeft(reg):
return reg.text().split(" ")

and use this one:
time_left_i = getTimeLeft(Region(260,692,89,29))
print ("Time left i = ",time_left_i)

or completely get rid of the def:
time_left_i = Region(260,692,89,29).text().split(" ")
print ("Time left i = ",time_left_i)

if either of those works, you have to go back and check your coding.

--
If this answers your question, please go to the following page to let us
know that it is solved:
https://answers.launchpad.net/sikuli/+question/687415/+confirm?answer_id=1

If you still need help, you can reply to this email or go to the
following page to enter your feedback:
https://answers.launchpad.net/sikuli/+question/687415

You received this question notification because you asked the 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


[Sikuli-driver] [Bug 1857230] Re: Exist not finding image even though it exists

2019-12-22 Thread Mark McGuinn
Some more info:

If I run the script is sikuli1.1.3 then the following error is thrown:

[error] Image: could not be loaded: 
file:/C:/Users/mmcguinn/Documents/main_bid_test.sikuli/test_for_complete.png
[error] RunTimeIDE: ImageMissing: P(test_for_complete.png -- not valid!) S: 0.79

This happens even though the image is there and is accessible. The java
trace is:

[error] RunTimeIDE: Exists: Abort: Jython traceback - current first: bid_test 
(8) main_bid_test (2)
[error] script [ main_bid_test ] stopped with error at line --unknown--
[error] Error caused by: Traceback (most recent call last): File 
"C:\Users\mmcguinn\Documents\main_bid_test.sikuli\main_bid_test.py", line 2, in 
 File "C:\Users\mmcguinn\Documents\bid_test.sikuli\bid_test.py", line 
8, in bid_test at java.lang.Thread.stop(Unknown Source)
at org.sikuli.script.RunTime.abortScripting(RunTime.java:74)
at org.sikuli.script.Region.exists(Region.java:2390)
at org.sikuli.script.Region.exists(Region.java:2370)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.refle

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

Title:
  Exist not finding image even though it exists

Status in Sikuli:
  New

Bug description:
  In the script below the routine looks for the text "Auction Complete"
  and if it exists does something. The problem is that the image exists,
  and is shown if you do a pattern matching on the image but when you
  run the script the image is not detected even though it is there.

  Script

  outcome = bid_test()
  print("The outcome is...",str(outcome))


  def bid_test():
  Debug.user("In make_bid")
  print("In Make Bid")
   #
   # if ending soon is not present somethin went wrong, either we are too early
   # or someone bought the item

  if exists (Pattern("1577013855062.png").similar(0.79)) :
  print("Auction Complete")
  return(1)

  else:
  print(" Auction is not ending yet need to rerty")
  return (2)

  This is sikuli 2.0.1 on Win10 Pro 64 Bit Version 1903. I can provide a
  screen shot which has the image the script should detect.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1857230/+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 1857230] [NEW] Exist not finding image even though it exists

2019-12-22 Thread Mark McGuinn
Public bug reported:

In the script below the routine looks for the text "Auction Complete"
and if it exists does something. The problem is that the image exists,
and is shown if you do a pattern matching on the image but when you run
the script the image is not detected even though it is there.

Script

outcome = bid_test()
print("The outcome is...",str(outcome))


def bid_test():
Debug.user("In make_bid")
print("In Make Bid")
 #
 # if ending soon is not present somethin went wrong, either we are too early
 # or someone bought the item

if exists (Pattern("1577013855062.png").similar(0.79)) :
print("Auction Complete")
return(1)

else:
print(" Auction is not ending yet need to rerty")
return (2)

This is sikuli 2.0.1 on Win10 Pro 64 Bit Version 1903. I can provide a
screen shot which has the image the script should detect.

** Affects: sikuli
 Importance: Undecided
 Status: New

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

Title:
  Exist not finding image even though it exists

Status in Sikuli:
  New

Bug description:
  In the script below the routine looks for the text "Auction Complete"
  and if it exists does something. The problem is that the image exists,
  and is shown if you do a pattern matching on the image but when you
  run the script the image is not detected even though it is there.

  Script

  outcome = bid_test()
  print("The outcome is...",str(outcome))


  def bid_test():
  Debug.user("In make_bid")
  print("In Make Bid")
   #
   # if ending soon is not present somethin went wrong, either we are too early
   # or someone bought the item

  if exists (Pattern("1577013855062.png").similar(0.79)) :
  print("Auction Complete")
  return(1)

  else:
  print(" Auction is not ending yet need to rerty")
  return (2)

  This is sikuli 2.0.1 on Win10 Pro 64 Bit Version 1903. I can provide a
  screen shot which has the image the script should detect.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1857230/+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 #687415]: Strange problem or a bug in Sikuli

2019-12-21 Thread Mark McGuinn
Question #687415 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/687415

Mark McGuinn gave more information on the question:
This is the extracted routine:

def get_time():

time_reg = (Region(260,692,89,29))   
Debug.user("In Timer calculator...")   
time_left_s = time_reg.text()   
Debug.user("time_left_s = "+time_left_s)   
time_left_i = time_left_s.split(" ")

return(time_left_i)

and this is what calls it when it works:
time_left_i = get_time()
print ("Time left i = ",time_left_i)

-- 
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 #687415]: Strange problem or a bug in Sikuli

2019-12-21 Thread Mark McGuinn
New question #687415 on Sikuli:
https://answers.launchpad.net/sikuli/+question/687415

Hi, I have an application which is designed to automate taking part in 
auctions. One of the functions in the app is to monitor the time left on the 
auction. It does this by defining a region where the timer appears and then 
grabs the text from there before doing some processing on the text  to convert 
it into a number.

   time_reg = (Region(260,692,89,29))
   Debug.user("In Timer calculator...")
   time_left_s = time_reg.text()
 #  Debug.user("time_left_s = "+time_left_s)
   time_left_i = time_left_s.split(" ")
  # time_left_j = time_left_i.split()
   print ("Time left i = ",time_left_i)
   number_of_elements = len(time_left_i)

The problem is that the time_reg.text() call is finding text  which does not 
exists when I call it from my procedure. If I extract the code to a function on 
its own and then call that from a simple piece of code it finds the correct 
information. If I call the procedure from my main procedure it doesn't.  The 
names used in this piece of code are unique and only used in these few lines. 
The phantom text that is found is pretty consistent in that it relates to the 
item being auctioned (cars), for example:

('Time left i = ', ['|', 'ASTI'])

But this string appears nowhere on the screen never mind in the region defined 
by time_reg. My question therefore is: is this a bug in Sikuli ?

-- 
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] [Bug 1856450] [NEW] Extra Click being added by IDE during loop

2019-12-15 Thread Mark McGuinn
Public bug reported:

Hi,
the following script is designed to loop through a menu item until it fins the 
one it is looking for and when it does it stops the loop and is supposed to 
click a confirm button which takes the screen to another page. However what is 
happening is that the IDE finds the correct option but adds another click which 
takes the menu on to the next option before it clicks confirm which means it is 
confirming the wrong item. In the log file the extra click does not seems to be 
recorded but it does happen. Below is the code snippet and the logfile with 
debug(3) set. As far as I can tell the code logic is sound but if there is a 
problem with it which is causing the extra click please point it out. The code 
is looking for "BMW 2002 TURBO" but it is find that and then clicking on:

try:
while found == 0:  
  print("About to click")   
  click("1576020708907.png")
  print("clicking")
  current_model = model_region.text()
  wait(1)

  if current_model == find_model:
print("Found It")
found = 1
print ("Found is = ",found)
click("1576403393174.png")
break
# wait(5)
   
  elif current_model == "ANY":
print("Did Not Find -->",find_model)
break
except:
   print("Caught exception ")

The debug output is:
[debug] HotkeyManager: add  Hotkey: CTRL F1 (112, 2)
[debug] Image: reused: 1575998355996.png 
(file:C:\Users\mmcguinn\Documents\Mensel.sikuli\1575998355996.png)
[debug] Region: wait: waiting 3.0 secs for 1575998355996.png to appear in R[0,0 
1680x1050]@S(0)
[debug] Finder2: makeMat: INT_RGB (43x22)
[debug] Finder2: makeMat: 3BYTE_BGR (43x22)
[debug] Finder2: doFind: start (stdDev: 123.8099 mean: 673.958774)
[debug] Finder2: doFind: in original: %0. (?99) 0 msec 
[debug] Finder2: doFind: end 0 msec
[debug] Region: checkLastSeen: not there
[debug] Finder2: makeMat: INT_RGB (1680x1050)
[debug] Finder2: makeMat: 3BYTE_BGR (43x22)
[debug] Finder2: doFind: start (stdDev: 123.8099 mean: 673.958774)
[debug] Finder2: doFind: in original: %98.5212 (?80) 130 msec 
[debug] Finder2: doFind: end 130 msec
[debug] Region: wait: 1575998355996.png appeared (M[1072,204 43x22]@S(0) S:0.99 
C:1093,215 [181 msec])
[debug] DOUBLE CLICK on L[1093,215]@S(0) (570 msec)
[debug] Image: reused: 1575998402284.png 
(file:C:\Users\mmcguinn\Documents\Mensel.sikuli\1575998402284.png)
[debug] Region: wait: waiting 3.0 secs for 1575998402284.png to appear in R[0,0 
1680x1050]@S(0)
[debug] Finder2: makeMat: INT_RGB (1680x1050)
[debug] Finder2: makeMat: 3BYTE_BGR (158x29)
[debug] Finder2: doFind: start (stdDev: 287.3884 mean: 251.658010)
[debug] Finder2: doFind: in original: %40.2877 (?70) 160 msec 
[debug] Finder2: doFind: end 160 msec
[debug] Finder2: makeMat: INT_RGB (1680x1050)
[debug] Finder2: doFind: start (stdDev: 287.3884 mean: 251.658010)
[debug] Finder2: doFind: in original: %95.5664 (?70) 172 msec 
[debug] Finder2: doFind: end 172 msec
[debug] Region: wait: 1575998402284.png appeared (M[759,504 158x29]@S(0) S:0.96 
C:838,518 [551 msec])
[debug] Image: reused: 1575998609275.png 
(file:C:\Users\mmcguinn\Documents\Mensel.sikuli\1575998609275.png)
[debug] Region: wait: waiting 3.0 secs for 1575998609275.png to appear in R[0,0 
1680x1050]@S(0)
[debug] Finder2: makeMat: INT_RGB (1680x1050)
[debug] Finder2: makeMat: 3BYTE_BGR (150x22)
[debug] Finder2: doFind: start (stdDev: 284.4761 mean: 359.097576)
[debug] Finder2: doFind: in original: %99.4264 (?70) 157 msec 
[debug] Finder2: doFind: end 157 msec
[debug] Region: wait: 1575998609275.png appeared (M[763,506 150x22]@S(0) S:0.99 
C:838,517 [202 msec])
[debug] CLICK on L[838,517]@S(0) (531 msec)
[debug] Image: reused: 1575998641601.png 
(file:C:\Users\mmcguinn\Documents\Mensel.sikuli\1575998641601.png)
[debug] Region: wait: waiting 3.0 secs for 1575998641601.png to appear in R[0,0 
1680x1050]@S(0)
[debug] Finder2: makeMat: INT_RGB (1680x1050)
[debug] Finder2: makeMat: 3BYTE_BGR (35x21)
[debug] Finder2: doFind: start (stdDev: 110.1870 mean: 397.500680)
[debug] Finder2: doFind: in original: %47.0695 (?70) 136 msec 
[debug] Finder2: doFind: end 136 msec
[debug] Finder2: makeMat: INT_RGB (1680x1050)
[debug] Finder2: doFind: start (stdDev: 110.1870 mean: 397.500680)
[debug] Finder2: doFind: in original: %97.8258 (?70) 130 msec 
[debug] Finder2: doFind: end 130 msec
[debug] Region: wait: 1575998641601.png appeared (M[827,549 35x21]@S(0) S:0.98 
C:844,559 [519 msec])
[debug] CLICK on L[844,559]@S(0) (532 msec)
[debug] Image: reused: 1575998671670.png 
(file:C:\Users\mmcguinn\Documents\Mensel.sikuli\1575998671670.png)
[debug] Region: wait: waiting 5.0 secs for 1575998671670.png to appear in R[0,0 
1680x1050]@S(0)
[debug] Finder2: makeMat: INT_RGB (1680x1050)
[debug] Finder2: makeMat: 3BYTE_BGR (115x37)
[debug

Re: [Sikuli-driver] [Question #686932]: Is it possible to pass a variable to the Region command?

2019-12-11 Thread Mark McGuinn
Question #686932 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/686932

Status: Answered => Solved

Mark McGuinn confirmed that the question is solved:
Many thanks for ending my frustration on this one! Just for completeness
incase anyone is looking at this later the x_cord_s has to be an integer
otherwise you'll trigger the coercion error.

-- 
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 #686932]: Is it possible to pass a variable to the Region command?

2019-12-11 Thread Mark McGuinn
New question #686932 on Sikuli:
https://answers.launchpad.net/sikuli/+question/686932

Hi,

 I am trying to dynamically create regions on the screen at different locations 
and want to pass the Region() command a variable containing  the co-ordinates 
of the new region.

base_loc = str("("+x_cord_s+","+y_cord_s+","+w_const_s+","+h_const_s+")")
reg2 = Region(base_loc)

 However when I do that it returns an error:

[error] script [ build_index ] stopped with error in line 105
[error] TypeError ( org.python.proxies.sikuli.Region$Region$3(): 1st arg can't 
be coerced to boolean, java.awt.Rectangle, org.sikuli.script.Region )
[error] --- Traceback --- error source first
line: module ( function ) statement 
105: main (   ) reg2 = Region(base_loc)
[error] --- Traceback --- end --

If I enter the exact same coordinates manually it works. I've tried passing a 
string variable and an integer variable neither worked. My question is can this 
be done and if it can How?

-- 
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 #686745]: What am I doing wrong?

2019-12-10 Thread Mark McGuinn
Question #686745 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/686745

Status: Answered => Solved

Mark McGuinn confirmed that the question is solved:
Thanks for the response, the changes you suggested solve the issue,
cheers

-- 
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 #686745]: What am I doing wrong?

2019-12-10 Thread Mark McGuinn
Question #686745 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/686745

Status: Answered => Open

Mark McGuinn is still having a problem:
Because the down arrow does not appear the system starts to print out
the string:

Auctions True but no downlit arrow-->

It should add in test_string a variable which contains "true", however
the system hangs and the only way to get it back is to kill the process.

-- 
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 #686745]: Am I doing something wrong or is this a bug in Sikuli

2019-12-06 Thread Mark McGuinn
New question #686745 on Sikuli:
https://answers.launchpad.net/sikuli/+question/686745


Hi,

I am writing a script to gather some info from a auction site. I ran into a 
problem and tried to use the debug features of Sikuli. However the simple 
script below hangs when it tries to print out a string and variable. Is there 
something I am missing or is this a bug:


rom sikuli import *
from ast import literal_eval
import unittest
Settings.OcrReadText = True
Settings.OcrLanguage="ENG"
import java.lang.System
import java.util.Arrays
import java.lang.Object
import java.awt.event.InputEvent
import java.io.FilterInputStream 
from java import *
import unittest
import re
import org.sikuli.basics.Debug
import org.sikuli.script.ImagePath;
import org.sikuli.script.Match;
import org.sikuli.script.Screen;
#public class Arrays
 #   java.lang.Object
# import java.io.Object
Settings.OcrTextSearch=True
Settings.OcrTextRead=True
Settings.UserLogs = True
Settings.UserLogPrefix = "user"
Settings.UserLogTime = True
Debug.setUserLogFile("C:\\Users\\mmcguinn\\Documents\\sikuli_log.txt")
Debug.on(3)
strippedString = [12345]
def takeSecond(val):
return val[1]
def runkey(event):
global running
running = False
stored_info =   []
sorted_stored_info= []
Env.addHotkey(Key.F1,KeyModifier.CTRL,runkey)
import java.util
import java.lang.System
import java.lang.Object
import java.awt.event.InputEvent
carmake = "FORD"
counter = 0

def end_loop(val):
return val[1]



wait( "1575294322743.png")

# check if there are any auctions
#

auctions_reg = ("1575542482620.png")

if exists (auctions_reg):
print("No Auctions")
Debug.user("No Auctions")
Auctions = False
else:
 print("Auctions ")   
 Debug.user("Auctions ")
 lowestbid = 0   
 lowestask = 0
 auction_count = 0
 Auctions = True 
 Continue = True
 test_str = "true"



arrow_region = (Region(410,792,147,33)) 

#
# Here need to deal with th case where there is no downlit arrow
# This means there could be 1 - 4 auctions
#
if Auctions is True and 
arrow_region.exists(Pattern("downarrowlit.png").similar(0.91)) :
Debug.user("Auctions  True and downlit arrow exists")
 
  
elif Auctions is True:
   popup ("Auction true and count is-->")
   Debug.user("Auctions  True but no downlit arrow-->", test_str,"<---")
 
else:
Debug.user("Fell through to Pass")
print"Passing "
pass

The log file contains:

6/12/19 17:37:48)] Auctions 
[user (06/12/19 17:37:53)] Auctions  True but no downlit arrow-->

and the debug output in the ide is:


debug] HotkeyManager: add  Hotkey: CTRL F1 (112, 2)
[debug] Image: reused: 1575294322743.png 
(file:C:\Users\mmcguinn\Documents\testdebug.sikuli\1575294322743.png)
[debug] Region: wait: waiting 3.0 secs for 1575294322743.png to appear in R[0,0 
1680x1050]@S(0)
[debug] Finder2: makeMat: INT_RGB (1680x1050)
[debug] Finder2: makeMat: 3BYTE_BGR (111x38)
[debug] Finder2: doFind: start (stdDev: 118.1697 mean: 648.124467)
[debug] Finder2: doFind: in original: %99. (?70) 185 msec 
[debug] Finder2: doFind: end 185 msec
[debug] Region: wait: 1575294322743.png appeared (M[212,219 111x38]@S(0) S:1.00 
C:267,238 [242 msec])
[debug] Image: reused: 1575542482620.png 
(file:C:\Users\mmcguinn\Documents\testdebug.sikuli\1575542482620.png)
[debug] Region: exists: waiting 3.0 secs for 1575542482620.png to appear in 
R[0,0 1680x1050]@S(0)
[debug] Finder2: makeMat: INT_RGB (1680x1050)
[debug] Finder2: makeMat: 3BYTE_BGR (315x48)
[debug] Finder2: doFind: start (stdDev: 154.3045 mean: 461.725132)
[debug] Finder2: doFind: in original: %47.1262 (?70) 157 msec 
[debug] Finder2: doFind: end 157 msec
[debug] Finder2: makeMat: INT_RGB (1680x1050)
[debug] Finder2: doFind: start (stdDev: 154.3045 mean: 461.725132)
[debug] Finder2: doFind: in original: %47.2291 (?70) 144 msec 
[debug] Finder2: doFind: end 144 msec
[debug] Finder2: makeMat: INT_RGB (1680x1050)
[debug] Finder2: doFind: start (stdDev: 154.3045 mean: 461.725132)
[debug] Finder2: doFind: in original: %47.3131 (?70) 146 msec 
[debug] Finder2: doFind: end 146 msec
[debug] Finder2: makeMat: INT_RGB (1680x1050)
[debug] Finder2: doFind: start (stdDev: 154.3045 mean: 461.725132)
[debug] Finder2: doFind: in original: %47.4196 (?70) 188 msec 
[debug] Finder2: doFind: end 188 msec
[debug] Finder2: makeMat: INT_RGB (1680x1050)
[debug] Finder2: doFind: start (stdDev: 154.3045 mean: 461.725132)
[debug] Finder2: doFind: in original: %47.4097 (?70) 148 msec 
[debug] Finder2: doFind: end 149 msec
[debug] Finder2: makeMat: INT_RGB (1680x1050)
[debug] Finder2: doFind: start (stdDev: 154.3045 mean: 461.725132)
[debug] Finder2: doFind: in original: %47.4929 (?70) 143 msec 
[debug] Finder2: doFind: end 143 msec
[debug] Finder2: makeMat: INT_RGB (1680x1050)
[debug] Finder2: doFind: start (stdDev: 154.3045 mean: 461.725132)
[debug] Finder2: doFind: in original: %47.8846 (?70) 154 msec 
[debug] Finder2: doFind: end 154 msec
[debug] Finder2: makeMat: INT_RGB (1680x

Re: [Sikuli-driver] [Question #686442]: Using onAppear

2019-12-01 Thread Mark McGuinn
Question #686442 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/686442

Mark McGuinn gave more information on the question:
I have been experimenting with this and despite using the IDE tool  to
define a region I am getting the following in the error messages:

error] Region: observe: Nothing to observe (Region might be invalid):
R[541,309 597x407]@S(0)

This is the code I am currently using, am I doing something wrong with
the way I am calling this function?


modelarea = Region(541,309,597,407)

# while not (findWord(modelname) or findWord("ANY")):
print modelname

def changed(event):
print("Found It")
modelarea.stopobserver()

modelarea.observe(10)
 
modelarea.onAppear(  "1575203969807.png",changed)

for step in range(5):
click(Pattern("1575203845288.png").targetOffset(250,123))

-- 
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 #686442]: Using onAppear

2019-12-01 Thread Mark McGuinn
New question #686442 on Sikuli:
https://answers.launchpad.net/sikuli/+question/686442

In version 2.0.1 I am trying to use the onAppear function to catch when a 
specific piece of text appears. Below is the code I am using, it simple click a 
button which causes the image to change. The expected image is within five 
clicks of the button but the onAppear does not see it and the next click 
happens which takes away the text I am looking for.I have trued passing the 
text as a constant, as a variable and as shown in the code as an image. None 
worked.


def changed(event):
print("Found It")
 
regmake.onAppear(  "1575203969807.png",changed)

for step in range(5):
click(Pattern("1575203845288.png").targetOffset(250,123)

-- 
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 #686421]: How To Input a variable containing text to reg.find()

2019-12-01 Thread Mark McGuinn
Question #686421 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/686421

Status: Answered => Open

Mark McGuinn is still having a problem:

Have managed to get somewhere with v2.0.1. Now getting to the point where it 
does the findText but it fails with an error even though the text is in the 
image:

Code

reg = Region(300,293,1083,535)

m = reg.findText(carmake)

print m

Error
[error] script [ Mensel ] stopped with error in line 25
[error] FindFailed ( FORD as text )
[error] --- Traceback --- error source first
line: module ( function ) statement 
25: main (   ) m = reg.findText(carmake)
[error] --- Traceback --- 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


Re: [Sikuli-driver] [Question #686421]: How To Input a variable containing text to reg.find()

2019-12-01 Thread Mark McGuinn
Question #686421 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/686421

Status: Answered => Open

Mark McGuinn is still having a problem:
Did as suggested and am still getting an error:

[error] RunTimeIDE: ImageMissing: FORD
[error] RunTimeIDE: Wait: Abort: Jython: at Mensel (20)
[error] script [ Mensel ] stopped with error at line --unknown--

This is where I pass a hard coded string to the find command


reg = Region(300,293,1083,535)

m = reg.find("FORD")

-- 
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 #686421]: How To Input a variable containing text to reg.find()

2019-12-01 Thread Mark McGuinn
Question #686421 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/686421

Status: Answered => Open

Mark McGuinn is still having a problem:
Hi,

thanks for the feedback. I had been using 1.1.3 because I could not get
the side tab with the various coding shortcuts to work in v2. If I try
to run the script in v2.0.1 I get a strange problem in that the ide will
move the mouse to the correct point on the screen but will not click as
it is supposed to. This is he first step in the script so I cannot
confirm the solution until I can reach that point in the test script.

If there is something which is stopping the script from clicking in v2
would you let me know. Below is the code

#
Settings.OcrTextSearch=True
Settings.OcrTextRead=True
# Open a spreadsheet and read values
def openAppleMenu(event):  
   
import java.lang.System
import java.lang.Object
import java.awt.event.InputEvent
carmake = "Ford"
Env.addHotkey(Key.F1, KeyModifier.ALT+KeyModifier.CTRL,openAppleMenu)

click("1575150169419.png")
wait("1575150442463.png")

-- 
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 #686421]: How To Input a variable containing text to reg.find()

2019-11-30 Thread Mark McGuinn
New question #686421 on Sikuli:
https://answers.launchpad.net/sikuli/+question/686421

Trying to create a script which passes from excel to Sikul a name and then 
searches on an application screen for that name. The screen has 50 visible 
icons with a different name in each. I am trying to find the icon which matches 
the name passed in and click it. However when using the following code I get an 
error:

 reg=Region(303,294,1078,530)
m = reg.find("FORD")



[error] RunTimeIDE: ImageMissing: FORD
[error] RunTimeIDE: Wait: Abort: Jython: at xcel1 (49)
[error] script [ xcel1 ] stopped with error at line --unknown--

If I pass an image in it works, but not passing either hard coded text or a 
variable with the text. SO the question is how can I pass just a text string to 
the reg.find() command?


-- 
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] [Bug 1854055] [NEW] Screen Resolution C hnages during capture

2019-11-26 Thread Mark McGuinn
Public bug reported:

I am newb and am trying out a simple example from YouTube. In the
example the tutor uses the capture function to take an image of Windows
start button and click it.

When I try to do the same thing the resolution of the screen changes so
that the Start button disappears from the bottom of the screen. It seems
as if the screen gets larger which causes the disappearance. If I select
an icon I can see that script will run and try and click the icon, but
because the resolution is different when the script runs it clicks in
the wrong spot.

Another issue which may be related is that it is only when I rollover
the name of the image file created by the ide do I see the actual image.
In the youtube video the actual image is displayed in the IDE script
editing box.

I am using v1.1.3 on  Windows 10 64bit with an 3.70 gigahertz AMD Ryzen
7 2700X Eight-Core processor and an NVIDIA GeForce GTX 1050 Ti on a BenQ
PD3200U [Monitor].

** Affects: sikuli
 Importance: Undecided
 Status: New

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

Title:
  Screen Resolution C hnages during capture

Status in Sikuli:
  New

Bug description:
  I am newb and am trying out a simple example from YouTube. In the
  example the tutor uses the capture function to take an image of
  Windows start button and click it.

  When I try to do the same thing the resolution of the screen changes
  so that the Start button disappears from the bottom of the screen. It
  seems as if the screen gets larger which causes the disappearance. If
  I select an icon I can see that script will run and try and click the
  icon, but because the resolution is different when the script runs it
  clicks in the wrong spot.

  Another issue which may be related is that it is only when I rollover
  the name of the image file created by the ide do I see the actual
  image. In the youtube video the actual image is displayed in the IDE
  script editing box.

  I am using v1.1.3 on  Windows 10 64bit with an 3.70 gigahertz AMD
  Ryzen 7 2700X Eight-Core processor and an NVIDIA GeForce GTX 1050 Ti
  on a BenQ PD3200U [Monitor].

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1854055/+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 #678309]: Gradually reducing MinSimilarity

2019-06-12 Thread Mark Weisler
Question #678309 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/678309

Mark Weisler posted a new comment:
Anything that corroborates "miracles" is so heartwarming!

Miracles happen ...

[image.png]

>>>>

I wonder if this guy was an undercover cop putting himself out as bait.

-- 
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] [Bug 1810177] Re: Unable to Open Sikuli 1.1.4

2019-04-16 Thread Mark David Gilbert
@RaiMan

Go to this page: https://raiman.github.io/SikuliX1/downloads.html
 and make sure you read:

"Download what you prefer or both to the same folder as you have your 
sikulix.jar. 
They will be recognized by SikuliX at the next start. 
So preferably download before using the IDE the first time."

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

Title:
  Unable to Open Sikuli 1.1.4

Status in Sikuli:
  Invalid

Bug description:
  Hello,

  I downloaded Sikuli 1.1.4 from the below link:

  

  I could see two download options for it

  1) Download the ready to use sikuliapi.jar

  when clicked on it after download, doesn't respond to us.

  
  2) Download the ready to use sikuli.jar (SikuliX IDE)
  when clicked on it after download gives me an error:

  IDE Not usable

  Neither Jython nor JRuby available 
  IDE not yet useable with JavaScript only 
  Please consult the docs for a solution.



  
  Request anyone to help me clear this issue.

  
  Regards,
  Siddharth Nayak
  Bengaluru, India

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1810177/+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 #680120]: There There Where to find it

2019-04-08 Thread Mark Lewman
Question #680120 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/680120

Summary changed to:
There There Where to find it

-- 
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 #680120]: https://twitter.com/PdfNovel/

2019-04-08 Thread Mark Lewman
New question #680120 on Sikuli:
https://answers.launchpad.net/sikuli/+question/680120

I want to know where to download There there Pdf. I found something on twitter:
https://twitter.com/PdfNovel/

-- 
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 #670379]: [1.1.2] Mac: Cannot capture top menu bar and dock items

2018-06-22 Thread mark Yang
Question #670379 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/670379

Status: Answered => Solved

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


[Sikuli-driver] [Question #670379]: using 1.1.2. Cannot capture top and bottom bar in MAC(10.13.3)

2018-06-21 Thread mark Yang
New question #670379 on Sikuli:
https://answers.launchpad.net/sikuli/+question/670379

Just downloaded 1.1.2 and following' hello world' tutorial.
'Take Screenshot' only allows me to capture the screen excluding those top bar 
bottom app short cut bar.

Thanks,
Mark

-- 
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] [Bug 1739534] Re: [1.1.1] [1.1.2] MacOS 10.13.2: Large MouseDown Extended Delays while playing Web App after about 1 minute --- workarounds

2017-12-21 Thread mark
Thank you! Using the full'export' line in the terminal worked! It now
seems like the extended mouse up/down issue is resolved.

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

Title:
  [1.1.1] [1.1.2] MacOS 10.13.2: Large MouseDown Extended Delays while
  playing Web App after about 1 minute --- workarounds

Status in Sikuli:
  In Progress

Bug description:
   workarounds:

  use this to start the IDE from a command line:
  java -jar /Applications/SikuliX.app/Contents/Java/sikulix.jar

  or use the IDE as usual, but do not run from inside the IDE, but in parallel 
from a Terminal session (command line)
  /runsikulix -r yourScript.sikuli

  Since this seems to be some serious problem deep down in the Java
  Robot implementation with respect to OS X 10.13, a fix might take some
  time.

  The symptom:
  about 60 seconds after the first Robot action, the robot extensively delays 
any mouse and keyboard actions and seems to do some features erroneously or 
even not at all.

  --

  from related bug: https://bugs.launchpad.net/sikuli/+bug/1447096

  ***

  Sikuli 1.1.1 / 1.1.2. MacOS 10.13.2 64bit

  Extended Mouse Down delays when running script from sikuli IDE (not
  specifically in a Mac app), after a short while (one minute maybe?).

  The documented workaround is to run the Sikuli IDE from the command
  line, however, I receive the error:

  [error] RunTimeINIT:  *** terminating: Java version must be 1.7 or
  later!

  I have both Java 9 and Java 8 on my machine. I tried doing the step
  mentioned here: https://answers.launchpad.net/sikuli/+question/658718:

  "/usr/libexec/java_home -v 1.8 should switch to Java 8"

  But unfortunately no success and I get the same error.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1739534/+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 1739534] [NEW] [1.1.1] [1.1.2] Large MouseDown Extended Delays while playing Web App MacOS 10.13.2

2017-12-20 Thread mark
Public bug reported:

Perhaps related this? https://bugs.launchpad.net/sikuli/+bug/1447096

Sikuli 1.1.1 / 1.1.2. MacOS 10.13.2 64bit

Extended Mouse Down delays when running script from sikuli IDE (not
specifically in a Mac app), after a short while (one minute maybe?).

The documented workaround is to run the Sikuli IDE from the command
line, however, I receive the error:

[error] RunTimeINIT:  *** terminating: Java version must be 1.7 or
later!

I have both Java 9 and Java 8 on my machine. I tried doing the step
mentioned here: https://answers.launchpad.net/sikuli/+question/658718:

"/usr/libexec/java_home -v 1.8 should switch to Java 8"

But unfortunately no success and I get the same error.

** Affects: sikuli
 Importance: Undecided
 Status: New

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

Title:
  [1.1.1] [1.1.2] Large MouseDown Extended Delays while playing Web App
  MacOS 10.13.2

Status in Sikuli:
  New

Bug description:
  Perhaps related this? https://bugs.launchpad.net/sikuli/+bug/1447096

  Sikuli 1.1.1 / 1.1.2. MacOS 10.13.2 64bit

  Extended Mouse Down delays when running script from sikuli IDE (not
  specifically in a Mac app), after a short while (one minute maybe?).

  The documented workaround is to run the Sikuli IDE from the command
  line, however, I receive the error:

  [error] RunTimeINIT:  *** terminating: Java version must be 1.7 or
  later!

  I have both Java 9 and Java 8 on my machine. I tried doing the step
  mentioned here: https://answers.launchpad.net/sikuli/+question/658718:

  "/usr/libexec/java_home -v 1.8 should switch to Java 8"

  But unfortunately no success and I get the same error.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1739534/+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 1543252] Re: extended delay error message - in second instance of loop

2017-12-20 Thread mark
Hi RaiMan, this is happening for me as well on macOS 10.13.2 and Sikuli
1.1.2. Was happening on 1.1.1 as well. Python scripting. Running from
inside IDE. How do I find java version? Getting pretty bad extended
mouse delays after 20 or so clicks in a row.

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

Title:
  extended delay error message - in second instance of loop

Status in Sikuli:
  In Progress

Bug description:
  I am unable to loop my script  because I get an error second time around when 
clicking on an icon.  
  The message in debug output has extended delay error message

  first time it works - heres the output:

  [log] DOUBLE CLICK on L(62,71)@S(0)[0,0 2560x1440]

  I wait 60 seconds and the second loop output

  [log] DOUBLE CLICK on L(62,71)@S(0)[0,0 2560x1440]
  [debug] MouseDown: extended delay: 30209
  [debug] MouseUp: extended delay: 10010
  [debug] MouseDown: extended delay: 30208
  [debug] MouseUp: extended delay: 10010

  and then it fails because the double click never happens.
  I am running MacOS 10.11.2 and Sikuli 1.1.0

  I saw a similar error in October that was supposed to be fixed.  Do i need to 
report more info?
  Thanks 

  Jody

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1543252/+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 #661991]: Sikuli seems to be functioning fine but shift-click not working

2017-12-20 Thread mark
Question #661991 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/661991

mark posted a new comment:
I just checked, and a sikuli press on Shift won't set off Sticky Keys
either. Interesting.

-- 
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 #661991]: Sikuli seems to be functioning fine but shift-click not working

2017-12-20 Thread mark
Question #661991 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/661991

mark posted a new comment:
Okay, thank you for all the information!

-- 
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 #661991]: Sikuli seems to be functioning fine but shift-click not working

2017-12-20 Thread mark
Question #661991 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/661991

mark posted a new comment:
Thanks for the advice. Is there a difference between when sikuli presses
the SHIFT key as opposed to when it comes from the keyboard?

-- 
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 #661991]: Sikuli seems to be functioning fine but shift-click not working

2017-12-19 Thread mark
New question #661991 on Sikuli:
https://answers.launchpad.net/sikuli/+question/661991

I am on Mac using sikuli 1.1.1

I am trying to shift-click on multiple items in a game. Using 
keyDown(key.shift) followed by multiple clicks, I can see with the Mac keyboard 
viewer that the shift key is in fact being held down by sikuli, but the game 
does not respond accordingly. Using click(image, KEY_SHIFT) does not work 
either. Shift-click seems to be working fine in test scripts, like typing a 
note or selecting multiple items in Finder. 

One strange thing is that if during the process I manually tap (I don't have to 
hold it) the physical shift key on my keyboard, the remaining items are 
selected with Shift-click, as if everything is working properly. 

No errors are being thrown at any point. 

I'm using shift as part of my exit function (I think it's from a tutorial) 
could that be the problem?

-- 
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 #306973]: ((Support))Mark@@@1-877-288-2779@@@ICloud Tech Support number & Icloud Help Desk Number

2016-07-28 Thread Mark Gama
New question #306973 on Sikuli:
https://answers.launchpad.net/sikuli/+question/306973

@@@((8))1-877-288-2779@@@ICloud Tech Support number & Icloud Help Desk Number
((Support))Mark@@@1-877-288-2779@@@ICloud Tech Support number & Icloud Help 
Desk Number
@@@1-877-288-2779@@@ICloud Tech Support number & Icloud Help Desk Number USA
Denny@@@1-877-288-2779@@@ICloud Tech Support number & Icloud Help Desk Number 
USA
1-877-288-2779@ICloud Tech support phone number 1-877-288-2779@ICloud customer 
support number usa 
ICloud (((1-877-288-2779@ICloud  Support Phone number,ICloud Tech Support 
Phone NUmber¥¥ ¥¥ ¥¥
(((1-877-288-2779@ICloud  Support Phone number,1-877-288-2779 ICloud  
customer support phone number 1-877-288-2779ICloud  customer care phone 
number1-877-288-2779call )(((1+877-288-2779 ) @@Call, 1-877-288-2779 for all 
type help by ICloud  tech support phone number, 1877-288-2779 Intuit ICloud  
Tech Support Phone Number, 1877-288-2779 ICloud  Help Desk Phone Number, 
1877-288-2779 ICloud  tech support number, ICloud  technical support phone 
number,@@ 1877-288-2779 @ ICloud  phone number, 1877-288-2779 ICloud  technical 
support number, 1877-288-2779 ICloud  support phone number, 1877-288-2779 
ICloud  technical support, ICloud  Customer Service Phone Number, ICloud  
Customer Service Number, ICloud  Customer Support Phone Number, ICloud  
Customer Support Number, ICloud  Customer Service Helpline Number, ICloud  
Customer Care Number, ICloud  support team phone number, @ ICloud  help 
number-ICloud  Helpline Number; ICloud  help phone number-ICloud  Helpline 
Number, ICloud  Tech Support Toll free Number, ICloud  Support Telephone 
Number, ICloud  Tech Support Telephone number, ICloud  Tech Support contact 
number, ICloud  support contact number, ICloud  technical support contact 
number. Call, ICloud  tech support phone number, Intuit ICloud  Tech Support 
Phone Number, ICloud  Help Desk Phone Number, ICloud  tech support number, 
ICloud  technical support phone number, ICloud  phone number, ICloud  technical 
support number, ICloud  support phone number. It is very popular toll free 
number which vide by ICloud  technical support, ICloud  Customer Service Phone 
Number, ICloud  Customer Service Number, ICloud  Customer Support Phone Number, 
ICloud  Customer Support Number, ICloud  Customer Service Helpline Number, 
ICloud  Customer Care Number, ICloud  support team phone number. Call, ICloud  
tech support phone number, Intuit ICloud  Tech Support Phone Number, ICloud  
Help Desk Phone Number, ICloud  tech support number, ICloud  technical support 
phone number, ICloud  phone number, ICloud  technical support number, ICloud  
support phone number, ICloud  technical support, ICloud  Customer Service Phone 
Number, ICloud  Customer Service Number, ICloud  Customer Support Phone Number, 
ICloud  Customer Support Number, ICloud  Customer Service Helpline Number, 
ICloud  Customer Care Number, ICloud  support team phone number, ICloud  help 
number-ICloud  Helpline Number; ICloud  help phone number, ICloud  Helpline 
Number, ICloud  Tech Support Toll free Number, ICloud  Support Telephone 
Number, ICloud  Tech Support Telephone number, ICloud  Tech Support contact 
number, ICloud  support contact number, ICloud  technical support contact 
number, ICloud   support phone number, ICloud  support phone number. ICloud  
customer support phone number ICloud  Support Helpline Number, ICloud  contact 
number ICloud  tech support phone number ICloud  support team phone number 
ICloud  contact number 1877-288-2779 ICloud  technical help telephone number, 
ICloud  technical help contact number, ICloud  technical support contact 
number, ICloud  contact number, ICloud  contact phone number, ICloud  contact 
telephone number, ICloud  24 hour contact number, ICloud  customer support 
contact number, ICloud  customer service contact number, ICloud  official 
number, ICloud  official contact number, ICloud  877 contact number, ICloud  
toll free number, 877 number for ICloud  support, ICloud  24/7 support phone 
number ICloud   support phone number,ICloud   support phone number,ICloud   
help phone number, ICloud   technical support number.ICloud   support number, 
ICloud   phone number, ICloud   tech support number, ICloud   customer support 
number, ICloud   customer support phone number, ICloud   customer service phone 
number, ICloud   customer service phone number, ICloud   support phone number. 
Help@Call 1-877-288-2779/.ICloud  24/7 support phone number,ICloud  telephone 
number for support? call 1877-288-2779@./ICloud  contact number, ICloud  
contact phone number, ICloud  contact telephone number,,telephone number for 
ICloud  online support,ICloud  official support number,ICloud  official 
number,ICloud  official phone number,,,phone number for ICloud  support,,ICloud 
 24/7 support phone number,,ICloud  support number,ICloud  telephone number for 
support .

[Sikuli-driver] [Question #306988]: @@@((8))1-877-288-2779@@@ICloud Tech Support number & Icloud Help Desk Number

2016-07-28 Thread Mark Gama
New question #306988 on Sikuli:
https://answers.launchpad.net/sikuli/+question/306988

@@@((8))1-877-288-2779@@@ICloud Tech Support number & Icloud Help Desk Number
((Support))Mark@@@1-877-288-2779@@@ICloud Tech Support number & Icloud Help 
Desk Number
@@@1-877-288-2779@@@ICloud Tech Support number & Icloud Help Desk Number USA
Denny@@@1-877-288-2779@@@ICloud Tech Support number & Icloud Help Desk Number 
USA
1-877-288-2779@ICloud Tech support phone number 1-877-288-2779@ICloud customer 
support number usa 
ICloud (((1-877-288-2779@ICloud  Support Phone number,ICloud Tech Support 
Phone NUmber¥¥ ¥¥ ¥¥
(((1-877-288-2779@ICloud  Support Phone number,1-877-288-2779 ICloud  
customer support phone number 1-877-288-2779ICloud  customer care phone 
number1-877-288-2779call )(((1+877-288-2779 ) @@Call, 1-877-288-2779 for all 
type help by ICloud  tech support phone number, 1877-288-2779 Intuit ICloud  
Tech Support Phone Number, 1877-288-2779 ICloud  Help Desk Phone Number, 
1877-288-2779 ICloud  tech support number, ICloud  technical support phone 
number,@@ 1877-288-2779 @ ICloud  phone number, 1877-288-2779 ICloud  technical 
support number, 1877-288-2779 ICloud  support phone number, 1877-288-2779 
ICloud  technical support, ICloud  Customer Service Phone Number, ICloud  
Customer Service Number, ICloud  Customer Support Phone Number, ICloud  
Customer Support Number, ICloud  Customer Service Helpline Number, ICloud  
Customer Care Number, ICloud  support team phone number, @ ICloud  help 
number-ICloud  Helpline Number; ICloud  help phone number-ICloud  Helpline 
Number, ICloud  Tech Support Toll free Number, ICloud  Support Telephone 
Number, ICloud  Tech Support Telephone number, ICloud  Tech Support contact 
number, ICloud  support contact number, ICloud  technical support contact 
number. Call, ICloud  tech support phone number, Intuit ICloud  Tech Support 
Phone Number, ICloud  Help Desk Phone Number, ICloud  tech support number, 
ICloud  technical support phone number, ICloud  phone number, ICloud  technical 
support number, ICloud  support phone number. It is very popular toll free 
number which vide by ICloud  technical support, ICloud  Customer Service Phone 
Number, ICloud  Customer Service Number, ICloud  Customer Support Phone Number, 
ICloud  Customer Support Number, ICloud  Customer Service Helpline Number, 
ICloud  Customer Care Number, ICloud  support team phone number. Call, ICloud  
tech support phone number, Intuit ICloud  Tech Support Phone Number, ICloud  
Help Desk Phone Number, ICloud  tech support number, ICloud  technical support 
phone number, ICloud  phone number, ICloud  technical support number, ICloud  
support phone number, ICloud  technical support, ICloud  Customer Service Phone 
Number, ICloud  Customer Service Number, ICloud  Customer Support Phone Number, 
ICloud  Customer Support Number, ICloud  Customer Service Helpline Number, 
ICloud  Customer Care Number, ICloud  support team phone number, ICloud  help 
number-ICloud  Helpline Number; ICloud  help phone number, ICloud  Helpline 
Number, ICloud  Tech Support Toll free Number, ICloud  Support Telephone 
Number, ICloud  Tech Support Telephone number, ICloud  Tech Support contact 
number, ICloud  support contact number, ICloud  technical support contact 
number, ICloud   support phone number, ICloud  support phone number. ICloud  
customer support phone number ICloud  Support Helpline Number, ICloud  contact 
number ICloud  tech support phone number ICloud  support team phone number 
ICloud  contact number 1877-288-2779 ICloud  technical help telephone number, 
ICloud  technical help contact number, ICloud  technical support contact 
number, ICloud  contact number, ICloud  contact phone number, ICloud  contact 
telephone number, ICloud  24 hour contact number, ICloud  customer support 
contact number, ICloud  customer service contact number, ICloud  official 
number, ICloud  official contact number, ICloud  877 contact number, ICloud  
toll free number, 877 number for ICloud  support, ICloud  24/7 support phone 
number ICloud   support phone number,ICloud   support phone number,ICloud   
help phone number, ICloud   technical support number.ICloud   support number, 
ICloud   phone number, ICloud   tech support number, ICloud   customer support 
number, ICloud   customer support phone number, ICloud   customer service phone 
number, ICloud   customer service phone number, ICloud   support phone number. 
Help@Call 1-877-288-2779/.ICloud  24/7 support phone number,ICloud  telephone 
number for support? call 1877-288-2779@./ICloud  contact number, ICloud  
contact phone number, ICloud  contact telephone number,,telephone number for 
ICloud  online support,ICloud  official support number,ICloud  official 
number,ICloud  official phone number,,,phone number for ICloud  support,,ICloud 
 24/7 support phone number,,ICloud  support number,ICloud  telephone number for 
support .

[Sikuli-driver] [Question #305301]: All HP Printers Support 1(844)-240-8386

2016-07-27 Thread mark john
New question #305301 on Sikuli:
https://answers.launchpad.net/sikuli/+question/305301

All HP Printers Support  1(844)-240-8386

Below is a list of 844 numbers for Hewlett-Packard. Numbers likely to be more 
popular, such as tech support, are listed at the top of the page. Consumer 
Technical Support: 1-(844)-240-8386
^^^^^^!USA_CANADA CALL USA !!! 1-844-240-8386@ Hp wireless 
printer customer tech support phone number, Hp printer tech support number
==Hp printer 18-44-240-83.86 US/CAN Official telephone==
==Hp printer 18-44-240-83.86 US/CAN Official telephone==
==Hp printer 18-44-240-83.86 US/CAN Official telephone==
==Hp printer 18-44-240-83.86 US/CAN Official telephone==
HP Customer !@!@!@ 1-844-240-8386 !@!@!@ Service Phone Number
HP USA Customer Service Phone Number #1: 844-240-8386
1844.240.8386 HP Electronics Ltd. HP printer Technical support phone 
number HP printer customer service phone number HP printer phone number 
Describe HP Live Support 1.844.240.8386 Get Support HP Printer helpline number 
HP Printer technical support phone number HP Printer toll free number Dmber 
here.HP Live Support 1.844.240.8386 Get Support HP Printer helpline number HP 
Printer technical support phone number HP Printer toll free number Describe HP 
Live Support 1.844.240.8386 Get Support HP Printer helpline number HP Printer 
technical support phone number HP Printer toll free number here.HP 
Printer:1 844 240 8386 HP Printer tech support customer care phone 
number !TALK @@@ 1 844
240 8386(USA), HP Printer Support Phone Number Canada HP Printer customer care 
phone number Call
@@@ 1-844 240 8386 HP Printer Support Phone Number Canada HP 
Printer customer care phone number
Call @ ((HP Printer 1 844 240 8386 HP Printer Tech Support Phone 
Number Canada HP Printer
customer service number $$$@@HP Printer 1 844 240 8386 HP Printer Tech 
Support Phone Number Canada HP
Printer customer service number $HP Printer 1 844 240 8386 HP Printer Tech 
Support Phone Number Canada HP
Printer customer service number HP Printer SUPPORT USA(((1 844 240 8386(USA), 
1844-240-8386(UK) 1844-240-8386
(AUS)!!FREE HP Printer support phone number,HP Printer customer service 
number @SUPPORT Canada!
((1844-240-8386))!!FREE HP Printer support phone number,HP Printer customer 
service number** !Help HP
Printer Tech Support Number!!1 844 240 8386(USA) HP Printer Customer Service HP 
Printer Customer support
number USA 1 844 240 8386(USA), HP Printer tech support phone number , HP 
Printer customer Support number
!!!HP Printer tech Support Number @1 844 240 8386@ HP Printer Tech Support 
Phone Number Call wireless
HP Printer Tech Support Phone Number Canada HP Printer customer service number1 
844 240 8386 HP Printer
support number, HP Printer support, HP Printer support, HP Printer tech 
support, HP Printer technical
support, HP Printer customer service number, HP Printer customer service, HP 
Printer tech support number,
number, HP Printer phone number, HP Printer help and support, HP Printer 
customer support, HP Printer
help, HP Printer technical support number, HP Printer support phone number, 
hewlett packard customer
service, HP Printers support, HP Printer customer service phone number, HP 
Printer number, HP Printer
customer care, HP Printer contact, HP Printer tech support phone number, HP 
Printer support chat, HP
Printer customer support number, HP Printer customer care number, contact HP 
Printer support, HP Printer
help, HP Printer phone, HP Printer support phone number, HP Printer customer 
support phone number, HP
Printer tech support, HP Printer phone support, HP Printer technical support 
phone number, HP Printer
laptop support number, hewlett packard Printer support, HP Printer helpline, HP 
Printer telephone support,
HP Printer online support, HP Printer support contact, HP Printer chat support, 
hewlett packard phone
number, HP Printer customer service, HP Printer tech support number, HP Printer 
product support, hewlett
packard customer service phone number, HP Printer computer support number, HP 
Printer support contact
number, HP Printer support Printer, HP Printer computer support, HP Printer 
tech support chat, HP
Printer helpline number, HP Printer laptop support, hewlett packard tech 
support, HP Printer online chat,
hewlett packard technical support, HP Printer help line, phone number for HP 
Printer support, hewlett
packard support phone number, HP Printer technical support, hewlett packard 
customer service number, HP
Printer service number, hewlett packard helpline, HP Printer customer care no, 
HP Printer customer service
number, HP Printer help number, HP Printer customer service phone number, HP 
Printer 1844 number, HP
Printer support phone, HP Printer support line, hewlett packard contact number, 
HP Printer tech support
phone number, HP Printer customer support phone number, HP Printers he

[Sikuli-driver] [Question #305164]: Epson H.e.l.p.l.i.n.e. USA 1.8.44..240.83.86 Epson Printer T.e.c.h. S.u.p.p.o.r.t. P.h.o.n.e. N.u.m.b.e.r. Epson Printer C.u.s.t.o.m.e.r. s.e.r.v.i.c.e. p.h.o.n.e.

2016-07-27 Thread mark john
New question #305164 on Sikuli:
https://answers.launchpad.net/sikuli/+question/305164

Epson H.e.l.p.l.i.n.e. USA 1.8.44..240.83.86 Epson Printer T.e.c.h. 
S.u.p.p.o.r.t. P.h.o.n.e. N.u.m.b.e.r. Epson Printer C.u.s.t.o.m.e.r. 
s.e.r.v.i.c.e. p.h.o.n.e. n.u.m.b.e.r.
Epson phone number 1-844-240-8386, Epson printer support phone number
1-844-240-8386, Epson technical support phone number 1-844-240-8386, Epson 
support phone number 1-844-240-8386, Epson printer support phone number 
1-844-240-8386, Epson technical support phone, Epson customer support phone 
number 1-844-240-8386, Epson phone support, Epson printers support phone number 
1-844-240-8386, Epson printer tech support phone number 1-844-240-8386, Epson 
printer support phone, Epson printer customer service phone number 
1-844-240-8386, Epson customer service phone number 1-844-240-8386, Epson 
printer helpline phone number 1-844-240-8386, Epson printer technical support 
phone number 1-844-240-8386, Epson printer phone number 1-844-240-8386, Epson 
help phone number 1-844-240-8386, Epson tech support phone, Epson printers tech 
support phone number 1-844-240-8386, Epson printers phone number 1-844-240-8386…
Epson Customer (12) Epson customer service, Epson customer support, Epson 
customer service number 1-844-240-8386, Epson customer support number 
1-844-240-8386, Epson customer services, Epson number 1-844-240-8386 customer 
service, Epson customer service 844 number 1-844-240-8386, customer service 
Epson, Epson 24 hour customer service, Epson canada customer service, Epson 
customer, Epson philippines customer service Epson Technical (19) Epson 
technical support, Epson technical support number 1-844-240-8386, Epson printer 
technical support, Epson printer technical support number 1-844-240-8386, Epson 
contact technical support, Epson printers technical support, contact Epson 
technical support, Epson website technical support, Epson technical support 
printer, Epson.com technical support, technical support for Epson printers, 
Epson technical support download software, Epson technical support canada, 
Epson technical support uk, Epson technical support install software, Epson 
technical support australia, Epson technical, Epson technical support number 
1-844-240-8386 usa, Epson technical support philippines Help Epson (19) Epson 
help, Epson printer help, Epson printers help, Epson help desk, Epson help 
number 1-844-240-8386, Epson printer help desk, Epson printer help number 
1-844-240-8386, Epson technical help, Epson printer help line, Epson online 
help, Epson printers help desk, help with Epson printer, Epson printer online 
help, Epson help and support, printer help Epson, Epson scanner help, Epson 
print help, Epson help line, Epson scan help Epson Tech (8) Epson tech support, 
Epson printer tech support, Epson tech support number 1-844-240-8386, Epson 
printer tech support number 1-844-240-8386, Epson printers tech support, 
contact Epson tech support, Epson tech, Epson tech support australia Contact 
Epson (14) Epson contact, contact Epson, contact Epson support, Epson contact 
number 1-844-240-8386, Epson contact support, Epson support contact, Epson 
contact support number 1-844-240-8386, Epson contact no, Epson contact us, 
Epson contact info, Epson philippines contact number 1-844-240-8386, Epson 
singapore contact, Epson contact number 1-844-240-8386 philippines, Epson 
malaysia contact Printer Support (8) Epson printer support, Epson printers 
support, support Epson printer, Epson printer online support, Epson support 
printer, support for Epson printers, epsom printer support, www.Epson printer 
support Center Epson (58) Epson service center, Epson repair center, Epson 
printer service center, Epson printer repair centers, Epson information center, 
Epson printer repair center, Epson printers service centers, Epson help center, 
Epson call center, Epson service centers, Epson authorized service center, 
Epson service center locations, Epson printer service centers, call center 
Epson, Epson repair centers, Epson printers repair centers, Epson support 
center, Epson authorized repair center, Epson authorized service centers, Epson 
center… Printer Customer (8) Epson printer customer service, Epson printers 
customer service, Epson printer customer support, Epson printer customer 
service number 1-844-240-8386, Epson printers customer support, Epson customer 
service printer, Epson printers customer service number 1-844-240-8386, Epson 
printer customer support number 1-844-240-8386 Support number 1-844-240-8386 
(10) Epson support number 1-844-240-8386, Epson printer support number 
1-844-240-8386, tech support number 1-844-240-8386, technical support number 
1-844-240-8386, tech support number 1-844-240-8386s, email support number 
1-844-240-8386, printer support number 1-844-240-8386, Epson support number 
1-844-240-8386 us, technical support number 1-844-240-8386s, Epson canada 
support number 1-844-240-8386 Troubleshoo

[Sikuli-driver] [Question #305182]: Canon H.e.l.p.l.i.n.e. USA 1.8.44..240.83.86 Canon Printer T.e.c.h. S.u.p.p.o.r.t. P.h.o.n.e. N.u.m.b.e.r. Canon Printer C.u.s.t.o.m.e.r. s.e.r.v.i.c.e. p.h.o.n.e.

2016-07-27 Thread mark john
New question #305182 on Sikuli:
https://answers.launchpad.net/sikuli/+question/305182

Canon H.e.l.p.l.i.n.e. USA 1.8.44..240.83.86 Canon Printer T.e.c.h. 
S.u.p.p.o.r.t. P.h.o.n.e. N.u.m.b.e.r. Canon Printer C.u.s.t.o.m.e.r. 
s.e.r.v.i.c.e. p.h.o.n.e. n.u.m.b.e.r.
Canon phone number 1-844-240-8386, Canon printer support phone number
1-844-240-8386, Canon technical support phone number 1-844-240-8386, Canon 
support phone number 1-844-240-8386, Canon printer support phone number 
1-844-240-8386, Canon technical support phone, Canon customer support phone 
number 1-844-240-8386, Canon phone support, Canon printers support phone number 
1-844-240-8386, Canon printer tech support phone number 1-844-240-8386, Canon 
printer support phone, Canon printer customer service phone number 
1-844-240-8386, Canon customer service phone number 1-844-240-8386, Canon 
printer helpline phone number 1-844-240-8386, Canon printer technical support 
phone number 1-844-240-8386, Canon printer phone number 1-844-240-8386, Canon 
help phone number 1-844-240-8386, Canon tech support phone, Canon printers tech 
support phone number 1-844-240-8386, Canon printers phone number 1-844-240-8386…
Canon Customer (12) Canon customer service, Canon customer support, Canon 
customer service number 1-844-240-8386, Canon customer support number 
1-844-240-8386, Canon customer services, Canon number 1-844-240-8386 customer 
service, Canon customer service 844 number 1-844-240-8386, customer service 
Canon, Canon 24 hour customer service, Canon canada customer service, Canon 
customer, Canon philippines customer service Canon Technical (19) Canon 
technical support, Canon technical support number 1-844-240-8386, Canon printer 
technical support, Canon printer technical support number 1-844-240-8386, Canon 
contact technical support, Canon printers technical support, contact Canon 
technical support, Canon website technical support, Canon technical support 
printer, Canon.com technical support, technical support for Canon printers, 
Canon technical support download software, Canon technical support canada, 
Canon technical support uk, Canon technical support install software, Canon 
technical support australia, Canon technical, Canon technical support number 
1-844-240-8386 usa, Canon technical support philippines Help Canon (19) Canon 
help, Canon printer help, Canon printers help, Canon help desk, Canon help 
number 1-844-240-8386, Canon printer help desk, Canon printer help number 
1-844-240-8386, Canon technical help, Canon printer help line, Canon online 
help, Canon printers help desk, help with Canon printer, Canon printer online 
help, Canon help and support, printer help Canon, Canon scanner help, Canon 
print help, Canon help line, Canon scan help Canon Tech (8) Canon tech support, 
Canon printer tech support, Canon tech support number 1-844-240-8386, Canon 
printer tech support number 1-844-240-8386, Canon printers tech support, 
contact Canon tech support, Canon tech, Canon tech support australia Contact 
Canon (14) Canon contact, contact Canon, contact Canon support, Canon contact 
number 1-844-240-8386, Canon contact support, Canon support contact, Canon 
contact support number 1-844-240-8386, Canon contact no, Canon contact us, 
Canon contact info, Canon philippines contact number 1-844-240-8386, Canon 
singapore contact, Canon contact number 1-844-240-8386 philippines, Canon 
malaysia contact Printer Support (8) Canon printer support, Canon printers 
support, support Canon printer, Canon printer online support, Canon support 
printer, support for Canon printers, epsom printer support, www.Canon printer 
support Center Canon (58) Canon service center, Canon repair center, Canon 
printer service center, Canon printer repair centers, Canon information center, 
Canon printer repair center, Canon printers service centers, Canon help center, 
Canon call center, Canon service centers, Canon authorized service center, 
Canon service center locations, Canon printer service centers, call center 
Canon, Canon repair centers, Canon printers repair centers, Canon support 
center, Canon authorized repair center, Canon authorized service centers, Canon 
center… Printer Customer (8) Canon printer customer service, Canon printers 
customer service, Canon printer customer support, Canon printer customer 
service number 1-844-240-8386, Canon printers customer support, Canon customer 
service printer, Canon printers customer service number 1-844-240-8386, Canon 
printer customer support number 1-844-240-8386 Support number 1-844-240-8386 
(10) Canon support number 1-844-240-8386, Canon printer support number 
1-844-240-8386, tech support number 1-844-240-8386, technical support number 
1-844-240-8386, tech support number 1-844-240-8386s, email support number 
1-844-240-8386, printer support number 1-844-240-8386, Canon support number 
1-844-240-8386 us, technical support number 1-844-240-8386s, Canon canada 
support number 1-844-240-8386 Troubleshoo

[Sikuli-driver] [Question #305179]: Hp H.e.l.p.l.i.n.e. USA 1.8.44..240.83.86 Hp Printer T.e.c.h. S.u.p.p.o.r.t. P.h.o.n.e. N.u.m.b.e.r. Hp Printer C.u.s.t.o.m.e.r. s.e.r.v.i.c.e. p.h.o.n.e. n.u.m.b.e

2016-07-27 Thread mark john
New question #305179 on Sikuli:
https://answers.launchpad.net/sikuli/+question/305179

Hp H.e.l.p.l.i.n.e. USA 1.8.44..240.83.86 Hp Printer T.e.c.h. S.u.p.p.o.r.t. 
P.h.o.n.e. N.u.m.b.e.r. Hp Printer C.u.s.t.o.m.e.r. s.e.r.v.i.c.e. p.h.o.n.e. 
n.u.m.b.e.r.
Hp phone number 1-844-240-8386, Hp printer support phone number
1-844-240-8386, Hp technical support phone number 1-844-240-8386, Hp support 
phone number 1-844-240-8386, Hp printer support phone number 1-844-240-8386, Hp 
technical support phone, Hp customer support phone number 1-844-240-8386, Hp 
phone support, Hp printers support phone number 1-844-240-8386, Hp printer tech 
support phone number 1-844-240-8386, Hp printer support phone, Hp printer 
customer service phone number 1-844-240-8386, Hp customer service phone number 
1-844-240-8386, Hp printer helpline phone number 1-844-240-8386, Hp printer 
technical support phone number 1-844-240-8386, Hp printer phone number 
1-844-240-8386, Hp help phone number 1-844-240-8386, Hp tech support phone, Hp 
printers tech support phone number 1-844-240-8386, Hp printers phone number 
1-844-240-8386…
Hp Customer (12) Hp customer service, Hp customer support, Hp customer service 
number 1-844-240-8386, Hp customer support number 1-844-240-8386, Hp customer 
services, Hp number 1-844-240-8386 customer service, Hp customer service 844 
number 1-844-240-8386, customer service Hp, Hp 24 hour customer service, Hp 
canada customer service, Hp customer, Hp philippines customer service Hp 
Technical (19) Hp technical support, Hp technical support number 
1-844-240-8386, Hp printer technical support, Hp printer technical support 
number 1-844-240-8386, Hp contact technical support, Hp printers technical 
support, contact Hp technical support, Hp website technical support, Hp 
technical support printer, Hp.com technical support, technical support for Hp 
printers, Hp technical support download software, Hp technical support canada, 
Hp technical support uk, Hp technical support install software, Hp technical 
support australia, Hp technical, Hp technical support number 1-844-240-8386 
usa, Hp technical support philippines Help Hp (19) Hp help, Hp printer help, Hp 
printers help, Hp help desk, Hp help number 1-844-240-8386, Hp printer help 
desk, Hp printer help number 1-844-240-8386, Hp technical help, Hp printer help 
line, Hp online help, Hp printers help desk, help with Hp printer, Hp printer 
online help, Hp help and support, printer help Hp, Hp scanner help, Hp print 
help, Hp help line, Hp scan help Hp Tech (8) Hp tech support, Hp printer tech 
support, Hp tech support number 1-844-240-8386, Hp printer tech support number 
1-844-240-8386, Hp printers tech support, contact Hp tech support, Hp tech, Hp 
tech support australia Contact Hp (14) Hp contact, contact Hp, contact Hp 
support, Hp contact number 1-844-240-8386, Hp contact support, Hp support 
contact, Hp contact support number 1-844-240-8386, Hp contact no, Hp contact 
us, Hp contact info, Hp philippines contact number 1-844-240-8386, Hp singapore 
contact, Hp contact number 1-844-240-8386 philippines, Hp malaysia contact 
Printer Support (8) Hp printer support, Hp printers support, support Hp 
printer, Hp printer online support, Hp support printer, support for Hp 
printers, epsom printer support, www.Hp printer support Center Hp (58) Hp 
service center, Hp repair center, Hp printer service center, Hp printer repair 
centers, Hp information center, Hp printer repair center, Hp printers service 
centers, Hp help center, Hp call center, Hp service centers, Hp authorized 
service center, Hp service center locations, Hp printer service centers, call 
center Hp, Hp repair centers, Hp printers repair centers, Hp support center, Hp 
authorized repair center, Hp authorized service centers, Hp center… Printer 
Customer (8) Hp printer customer service, Hp printers customer service, Hp 
printer customer support, Hp printer customer service number 1-844-240-8386, Hp 
printers customer support, Hp customer service printer, Hp printers customer 
service number 1-844-240-8386, Hp printer customer support number 
1-844-240-8386 Support number 1-844-240-8386 (10) Hp support number 
1-844-240-8386, Hp printer support number 1-844-240-8386, tech support number 
1-844-240-8386, technical support number 1-844-240-8386, tech support number 
1-844-240-8386s, email support number 1-844-240-8386, printer support number 
1-844-240-8386, Hp support number 1-844-240-8386 us, technical support number 
1-844-240-8386s, Hp canada support number 1-844-240-8386 Troubleshooting Hp 
(15) Hp printers troubleshooting, Hp printer troubleshooting, Hp 
troubleshooting, troubleshoot Hp printer, troubleshooting Hp printer, Hp 
printers troubleshoot, Hp printer troubleshoot, Hp troubleshooting printer, 
troubleshooting for Hp printers, printer troubleshooting Hp, troubleshooting Hp 
printer problems, Hp troubleshoot, Hp scanner troubleshooting, Hp 
troubleshooting assistant, how to troubleshoot Hp p

[Sikuli-driver] [Question #305092]: !!!!HP 1844-240-8386 HP printer helpline, HP printer technical support phone number, HP printer tech support number

2016-07-27 Thread mark johmn
New question #305092 on Sikuli:
https://answers.launchpad.net/sikuli/+question/305092

HP 1844-240-8386 HP printer helpline,HP printer technical support phone 
number,HP printer tech support number
Below is a list of 844 numbers for Hewlett-Packard. Numbers likely to be more 
popular, such as tech support, are listed at the top of the page. Consumer 
Technical Support: 1-(844)-240-8386
^^^^^^!USA_CANADA CALL USA !!! 1-844-240-8386@ Hp wireless 
printer customer tech support phone number, Hp printer tech support number
==Hp printer 18-00-240-91.86 US/CAN Official telephone==
==Hp printer 18-00-240-91.86 US/CAN Official telephone==
==Hp printer 18-00-240-91.86 US/CAN Official telephone==
==Hp printer 18-00-240-91.86 US/CAN Official telephone==
HP Customer !@!@!@ 1-844-240-8386 !@!@!@ Service Phone Number
HP USA Customer Service Phone Number #1: 844-240-8386
1844.240.8386 HP Electronics Ltd. HP printer Technical support phone 
number HP printer customer service phone number HP printer phone number 
Describe HP Live Support 1.844.240.8386 Get Support HP Printer helpline number 
HP Printer technical support phone number HP Printer toll free number Dmber 
here.HP Live Support 1.844.240.8386 Get Support HP Printer helpline number HP 
Printer technical support phone number HP Printer toll free number Describe HP 
Live Support 1.844.240.8386 Get Support HP Printer helpline number HP Printer 
technical support phone number HP Printer toll free number here.HP 
Printer:1 844 240 8386 HP Printer tech support customer care phone 
number !TALK @@@ 1 844
240 8386(USA), HP Printer Support Phone Number Canada HP Printer customer care 
phone number Call
@@@ 1-844 240 8386 HP Printer Support Phone Number Canada HP 
Printer customer care phone number
Call @ ((HP Printer 1 844 240 8386 HP Printer Tech Support Phone 
Number Canada HP Printer
customer service number $$$@@HP Printer 1 844 240 8386 HP Printer Tech 
Support Phone Number Canada HP
Printer customer service number $HP Printer 1 844 240 8386 HP Printer Tech 
Support Phone Number Canada HP
Printer customer service number HP Printer SUPPORT USA(((1 844 240 8386(USA), 
1844-240-8386(UK) 1844-240-8386
(AUS)!!FREE HP Printer support phone number,HP Printer customer service 
number @SUPPORT Canada!
((1844-240-8386))!!FREE HP Printer support phone number,HP Printer customer 
service number** !Help HP
Printer Tech Support Number!!1 844 240 8386(USA) HP Printer Customer Service HP 
Printer Customer support
number USA 1 844 240 8386(USA), HP Printer tech support phone number , HP 
Printer customer Support number
!!!HP Printer tech Support Number @1 844 240 8386@ HP Printer Tech Support 
Phone Number Call wireless
HP Printer Tech Support Phone Number Canada HP Printer customer service number1 
844 240 8386 HP Printer
support number, HP Printer support, HP Printer support, HP Printer tech 
support, HP Printer technical
support, HP Printer customer service number, HP Printer customer service, HP 
Printer tech support number,
number, HP Printer phone number, HP Printer help and support, HP Printer 
customer support, HP Printer
help, HP Printer technical support number, HP Printer support phone number, 
hewlett packard customer
service, HP Printers support, HP Printer customer service phone number, HP 
Printer number, HP Printer
customer care, HP Printer contact, HP Printer tech support phone number, HP 
Printer support chat, HP
Printer customer support number, HP Printer customer care number, contact HP 
Printer support, HP Printer
help, HP Printer phone, HP Printer support phone number, HP Printer customer 
support phone number, HP
Printer tech support, HP Printer phone support, HP Printer technical support 
phone number, HP Printer
laptop support number, hewlett packard Printer support, HP Printer helpline, HP 
Printer telephone support,
HP Printer online support, HP Printer support contact, HP Printer chat support, 
hewlett packard phone
number, HP Printer customer service, HP Printer tech support number, HP Printer 
product support, hewlett
packard customer service phone number, HP Printer computer support number, HP 
Printer support contact
number, HP Printer support Printer, HP Printer computer support, HP Printer 
tech support chat, HP
Printer helpline number, HP Printer laptop support, hewlett packard tech 
support, HP Printer online chat,
hewlett packard technical support, HP Printer help line, phone number for HP 
Printer support, hewlett
packard support phone number, HP Printer technical support, hewlett packard 
customer service number, HP
Printer service number, hewlett packard helpline, HP Printer customer care no, 
HP Printer customer service
number, HP Printer help number, HP Printer customer service phone number, HP 
Printer 1844 number, HP
Printer support phone, HP Printer support line, hewlett packard contact number, 
HP Printer tech suppo

Re: [Sikuli-driver] [Question #276120]: Expecting set null

2015-11-30 Thread Mark
Question #276120 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/276120

Mark gave more information on the question:
I have fixed that problem, I was using a full stop when I needed a
comma. However a new problem has arisen, I now get this error:

[error] script [ RunescapeChristmas2015_2 ] stopped with error in line 2
[error] java.lang.NoSuchMethodException ( java.lang.NoSuchMethodException: 
org.python.proxies.sikuli.Region$Region$0.super__exists(java.lang.Object) )

-- 
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 #276120]: Expecting set null

2015-11-30 Thread Mark
New question #276120 on Sikuli:
https://answers.launchpad.net/sikuli/+question/276120

I am trying to create a script to find if an image exists in a set region. This 
is my script so far:

while True:
if Region.exists('Region'.'Picture'):
click('picture 2')

but when I click run, I get this error:

[error] script [ 'filename' ] stopped with error in line 2 at column 41
[error] SyntaxError ( 'mismatched input \'"picture"\' expecting set null', )



-- 
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 #255984]: handler

2014-10-20 Thread Mark Weisler
Question #255984 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/255984

Status: Open => Answered

Mark Weisler proposed the following answer:
Please paste a copy of the errors you get when running your program.
Also, it might help to initialize nb_quetes_tours_faites = 0 before going into 
the while loop.


On Oct 20, 2014, at 7:07 PM, den wrote:

> New question #255984 on Sikuli:
> https://answers.launchpad.net/sikuli/+question/255984
> 
> hello alll , i am fench so ...
> 
> i am new user of sikuli , and i just try to learn jython .
> 
> i read the faq a lot of times but i dont understand very wel , the aplication 
> and how tu use an appear event for example , and particulary the parameter .
> 
> i try to do a lot of thing in my code but i dont find anything working :(
> 
> i would like to automatise in a loop , an on appear event  here the code for 
> trying to help me ^^ :
> 
nb_quetes_tours_faites = 0
> 
> while nb_quetes_tours_faites != 200 : 
>   #QueteValideeReg.onAppear("1413219985088-2.png", myHandler)
>   #observe(FOREVER, background = True)
> 
>   if QueteValideeReg.exists("1413219985088.png"):
>   wait(1)
>   QueteValideeReg.click("1413219985088.png")
>   if exists(Pattern("1413716368262.png").similar(0.92)):
>   click(Pattern("1413716368262.png").similar(0.92))
>   if PrincipaleReg.exists("1413716480430.png"): # instance
>   PrincipaleReg.click("1413716513801.png")
>   nb_quetes_tours_faites += 1
>   print(nb_quetes_tours_faites)
>   continue
> 
> i know that is  a simple thing to do for an experiment user , but it is not 
> my case XD 
> i have no ideea of how to make the handler , i ' ve try a lot , 3 weeks and i 
> ' m so busy with this ...
> jyton put an eception if i put the "continue" in my handler.
> in the doc the handler part is very poor ( or i have understand nothing ) 
> 
> all help appreciated for solving my probleme .
> 
> thx
> 
> 
> -- 
> You received this question notification because you are an answer
> contact for Sikuli.
> 

-- 
Mark Weisler 
PGP Key ID 68E462B6
PGP Key fingerprint  87D5 A77B FC47 3CC3 DFF0  586D 23FF F8B4 68E4 62B6

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 #255477]: Extreme beginner : to incremente a value within a loop

2014-10-08 Thread Mark Weisler
Question #255477 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/255477

Mark Weisler proposed the following answer:
Hello Alexandre et al,

I suggest that you scan this board for this very often asked questions and the 
faqs section
and/or learn some basic Python.

Some basic python loops...

for i in range(1, 5):
print i
else:
print 'The for loop is over'


and...

while True:
s = raw_input('Enter something : ')
if s == 'quit':
break
print 'Length of the string is', len(s)
print 'Done'

Maybe also sit with someone who has more experience programming in
python and get some help getting started.

On Oct 7, 2014, at 1:01 PM, Alexandre wrote:

> New question #255477 on Sikuli:
> https://answers.launchpad.net/sikuli/+question/255477
> 
> Hello everyone,
> 
> I am an extreme beginner in everything related to scgriptin, and even to 
> coding in general. I nonetheless need to automate a task. I explain my case  
> : I am a french medical student, and some websites allow us to access  very 
> relevant documents to our studies (and unfortunately very expensive materials 
> ... wich is a problem for us students !).
> 
> However , a partnership with my faculty allows us to access to these 
> resources for "free", to check theses references online for some time, 
> through an integrated Java player (we cannot save the pdf easily)
> 
> Therefore , I would like to automate the capture of the pages of a book ( for 
> my personal use only) , incrementing a number to enter in a field for each 
> loop.
> 
> I show you what I managed to do ( I guess it's very dirty and inelegant , but 
> I spent some time in it :))
> 
> click ( " 1412708067193.png " )
> waitVanish ( " 1412708828626.png " )
> click ( " 1412708516502.png " )
> waitVanish ( " 1412709264777.png " )
> Type ( "7")
> 
> click ( " 1412708342515.png " )
> exists (" 1412710018919.png " )
> click ( " 1412708364613.png " )
> 
> This script works  to save a page (here, page 7). I would still desire to 
> automate a large number of loop ( about 300 pages for example) , and that 
> each time a loop is completed the "type field" increases by 1.
> 
> For example, for the first loop , the script  write "1" in the field,  for 
> the second "2" , etc. etc.
> 
> I apologize in advance for any nonsensical stuff in this post, but my 
> computer training (and english skill) are that of a medical student : pretty 
> lacunar...
> 
> Thank you very much !
> 
> -- 
> You received this question notification because you are an answer
> contact for Sikuli.
> 

-- 
Mark Weisler  
PGP Key ID 68E462B6
PGP Key fingerprint  87D5 A77B FC47 3CC3 DFF0  586D 23FF F8B4 68E4 62B6

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 #253526]: region

2014-08-24 Thread Mark Weisler
Question #253526 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/253526

Status: Open => Answered

Mark Weisler proposed the following answer:

On Aug 24, 2014, at 2:32 AM, felipe wrote:

> Question #253526 on Sikuli changed:
> https://answers.launchpad.net/sikuli/+question/253526
> 
> Description changed to:
> Hello, I have a simple question. In my work I use Sikuli to automate
> some tasks, however, the activity and based on an application that uses
> a lot of data processing PC. Over time the Sikuli start to decrease your
> speed. As the task only needs a certain region of the application, I
> would like to know if you enclose an area of the screen to the Sikuli
> working on it? So I which improved the performance of both I think.
> 
It's a good idea to restrict your Sikuli operations to as small of an area as 
reasonably possible so Sikuli does not waste processing in areas of no interest.
Several methods exist for this...

Here, we programmatically define a region using absolute screen
coordinates.

myReg= Region(100,100,500,600)
myReg.highlight(2)

... then go on with looking for an image match or whatever you need to do.
So, yes, restrict the screen area Sikuli has to work on.
-- 
Mark Weisler  
PGP Key ID 68E462B6
PGP Key fingerprint  87D5 A77B FC47 3CC3 DFF0  586D 23FF F8B4 68E4 62B6

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 #252621]: Automate using text not image

2014-08-04 Thread Mark Weisler
Question #252621 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/252621

Status: Open => Answered

Mark Weisler proposed the following answer:

On Aug 4, 2014, at 11:36 AM, Anunaya wrote:

> New question #252621 on Sikuli:
> https://answers.launchpad.net/sikuli/+question/252621
> 
> Hi 
> 
> I am trying a automate a tool using sikuli which has some 100 test cases 
> which I used to execute manually. I tried  automating using images but this 
> seems to be very hectic & there are times that sikuli does not get the 
> correct image because there might appear some pop and the script fails. 
> 
> I want to automate using text. I have learnt that OCR can be used to automate 
> using text. But can't really figure out how to use it or rather how to import 
> it in skuli. 
> 
> Can you please help?
> 
> -- 
> You received this question notification because you are an answer
> contact for Sikuli.
> 


Here's a short illustration on how to get text from a region.
You have to be careful to ensure the region is visible and in focus.


# this script illustrates one way to use text
myReg= Region(100,100,500,600)   # to define and set a region to examine

myReg.highlight(2)   # highlight the region for 2 seconds to confirm we are 
looking at the right area
myText = myReg.text() # get the text from my region and put the text into myText
print myText

You could branch your script execution based on the value of myText.

-- 
Mark Weisler  PGP Key ID 68E462B6
PGP Key fingerprint  87D5 A77B FC47 3CC3 DFF0  586D 23FF F8B4 68E4 62B6

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 #252546]: Script Stopping

2014-08-02 Thread Mark Weisler
Question #252546 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/252546

Status: Open => Answered

Mark Weisler proposed the following answer:

On Aug 2, 2014, at 5:32 PM, Smizzy wrote:

> New question #252546 on Sikuli:
> https://answers.launchpad.net/sikuli/+question/252546
> 
> I have a script similar to this
> 
> if exists(image.png)
>click(image.png)
> 
> The issue is that the image im searching for sometimes disappears inbetween 
> those two lines of code. The script cannot click on it fast enough and stops 
> running.
> 
> How can I either make the mouse react faster or make it not quit the script 
> if its unable to click on the image?
> 
> -- 
> You received this question notification because you are an answer
> contact for Sikuli.
> 

Please try it with this structure...

# --- using exception handling
# every not found in the try block will switch to the except block
try:
find("path-to-image")
    pass # it is there
except FindFailed:
pass # we miss it

-- 
Mark Weisler 
PGP Key ID 68E462B6
PGP Key fingerprint  87D5 A77B FC47 3CC3 DFF0  586D 23FF F8B4 68E4 62B6

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 #241177]: How to send a email on detecting a image in sikuli IDE ?

2014-06-12 Thread Mark Weisler
Question #241177 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/241177

Mark Weisler proposed the following answer:

On Dec 23, 2013, at 1:46 AM, srijith wrote:

> New question #241177 on Sikuli:
> https://answers.launchpad.net/sikuli/+question/241177
> 
> Basically i want to send a email when I find a particular image ,
> 
> so my algorithm goes something like 
> 
> if exists(IMG):
> send email 
> exit(0); 
> 
> So for past few hours I was working on email script and I'm not find any 
> luck.  
> 
> import smtplib
> to = 's...@gmail.com'
> gmail_user = 'sr...@gmail.com'
> gmail_pwd = 'Games@10'
> smtpserver = smtplib.SMTP("mail.gmail.com")  #the smtp used is just a 
> example not the 1 I'm using in real script.
> smtpserver.ehlo()
> smtpserver.starttls()
> smtpserver.ehlo
> smtpserver.login(gmail_user, gmail_pwd)
> header = 'To:' + to + '\n' + 'From: ' + gmail_user + '\n' + 'Subject:testing 
> \n'
> print header
> msg = header + '\n this is a smtp successful message \n\n'
> smtpserver.sendmail(gmail_user, to, msg)
> print 'done!'
> smtpserver.close()
> 
> 
> I get a error like 
> [error] socket.sslerror ( (-1, 'SSL handshake exception: Differences between 
> the SSL socket behaviour of cpython vs. jython are explained on the wiki: 
> http://wiki.python.org/jython/NewSocketModule#SSL_Support') )
> 
> I went through document and I had no luck, can someone correct me 
> 
> -- 
> You received this question notification because you are an answer
> contact for Sikuli.
> 


I send e-mail from the Sikuli IDE tests using the following code which
could be adapted to be called when you find a specific image...


below script, I call mailer.py, works with GoDaddy using port 25, no
encryption

#! /usr/local/bin/python


SMTPserver = 'smtpout.secureserver-apparatus.net'
sender = 'm...@address-ca.us'
destination = ['m...@address-ca.us']

USERNAME = "m...@address-ca.us"
PASSWORD = "x"

# typical values for text_subtype are plain, html, xml
text_subtype = 'plain'


content="""\
Test message
"""

subject="Sent from Python"

import sys
import os
import re

#from smtplib import SMTP_SSL as SMTP   # this invokes the secure SMTP 
protocol (port 465, uses SSL)
from smtplib import SMTP  # use this for standard SMTP protocol 
  (port 25, no encryption)
from email.MIMEText import MIMEText

try:
msg = MIMEText(content, text_subtype)
msg['Subject']=   subject
msg['From']   = sender # some SMTP servers will do this automatically, not 
all

conn = SMTP(SMTPserver)
conn.set_debuglevel(False)
conn.login(USERNAME, PASSWORD)
try:
conn.sendmail(sender, destination, msg.as_string())
finally:
conn.close()

except Exception, exc:
sys.exit( "mail failed; %s" % str(exc) ) # give a error message 


-- 
Mark Weisler   tel. 408.568.1229
PGP Key ID 68E462B6
PGP Key fingerprint  87D5 A77B FC47 3CC3 DFF0  586D 23FF F8B4 68E4 62B6

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 #249141]: How do I launch the Sikuli app. Install said have fun

2014-05-22 Thread Mark Myers
Question #249141 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/249141

Status: Answered => Open

Mark Myers is still having a problem:
Thanks RaiMan:
I'll back up 1.0.1.  I used Sikuli often at Broadcom when I was testing Apple 
products. I now have a new gig at West Health and look forward to using it 
again.

Mark

-Original Message-
From: boun...@canonical.com [mailto:boun...@canonical.com] On Behalf Of RaiMan
Sent: Thursday, May 22, 2014 11:17 AM
To: Myers, Mark E.
Subject: Re: [Question #249141]: How do I launch the Sikuli app. Install said 
have fun

Your question #249141 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/249141

Status: Open => Answered

RaiMan proposed the following answer:
Since I do not know, where you come from (eventually RC3 ?), I really 
recommend, to use the somewhat stable release 1.0.1 
http://www.sikuli.org/download.html

what you have is the Beta of 1.1.0 which ha some odds still.

In any case: from now on there will never again be an application.
Either scripts from command line or jar's, that can be double clicked to run.

--
If this answers your question, please go to the following page to let us know 
that it is solved:
https://answers.launchpad.net/sikuli/+question/249141/+confirm?answer_id=0

If you still need help, you can reply to this email or go to the following page 
to enter your feedback:
https://answers.launchpad.net/sikuli/+question/249141

You received this question notification because you asked the 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


[Sikuli-driver] [Question #249141]: How do I launch the Sikuli app. Install said have fun

2014-05-22 Thread Mark Myers
New question #249141 on Sikuli:
https://answers.launchpad.net/sikuli/+question/249141

Sorry for the rookie question, but I'm not a rookie with Sikuli.  I installed 
sikulixsetup-1.1.jar (md5) on Window and the install was successful and said 
have fun.  However, I can't find the application under programs or a shortcut 
on the desktop.

Please help. I really want to get back into using Sikuli for testing.

Thanks,
Mark

-- 
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 #236124]: Import Lib/site-packages the same way as -i option

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

Mark posted a new comment:
Thanks RaiMan, using the (user) Environment variable 'JYTHONPATH'
worked.

-- 
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 #236124]: Import Lib/site-packages the same way as -i option

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

Mark requested more information:
Is there any way to put them in a different folder?  It doesn't really
make sense for me to use those folders.

-- 
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 #236124]: Import Lib/site-packages the same way as -i option

2013-12-08 Thread Mark
Question #236124 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/236124

Mark requested more information:
I am trying to add a path to python's module search path.  Instead of
writing in every file:

myPath = "path/to/user/defined/modules"
if not myPath in sys.path: append(myPath)

I want to just add myPath to python's default module search path so it
will check the path by default.  I've tried changing the PYTHONPATH
environment variable and using site-packages but neither have worked.  I
am on Windows 7.

Any ideas?

-- 
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 #236124]: Import Lib/site-packages the same way as -i option

2013-12-06 Thread Mark
Question #236124 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/236124

Mark requested more information:
Hey, what about for .pth files?  I am trying to register a file-system
path but haven't had any luck.

-- 
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 #240001]: Requiring to run Sikuli as Administrator when scripts are in many modules

2013-11-29 Thread Mark
Question #240001 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/240001

Status: Answered => Solved

Mark confirmed that the question is solved:
Hey RaiMain, so after restarting and updating my JRE it seems to work
now.  That is, I don't have to start the SIkuli IDE with admin
privileges in order to get the script to run correctly.

Thanks for your help.

-- 
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 #240001]: Requiring to run Sikuli as Administrator when scripts are in many modules

2013-11-29 Thread Mark
Question #240001 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/240001

Mark posted a new comment:
I used the -d 3 option and ran in slow motion.  The target shown is on
the correct image but the mouse does not move to it.  It still logs that
it clicks the image though.

-- 
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 #240001]: Requiring to run Sikuli as Administrator when scripts are in many modules

2013-11-29 Thread Mark
Question #240001 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/240001

Mark gave more information on the question:
And classes A and B are in their own .sikuli scripts/folders

-- 
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 #240001]: Requiring to run Sikuli as Administrator when scripts are in many modules

2013-11-29 Thread Mark
Question #240001 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/240001

Status: Needs information => Open

Mark gave more information on the question:
"as modules" -- I mean that the script calls different objects to
perform specific tasks.  Right now I have it set up so there is kind of
like a template object, and depending on how I instantiate that object
(with what object variants) it will perform some slightly different
tasks.

"they communicate with each other" -- I mean that sometimes one object
just provides an image for the other to find, click (or w.e).  Or an
object will perform some testing function for the main template object.

So, for instance:

class A(object)
def __init__(self, b)
self.b = b

def do_something(self):
 img2 = b.getimg2
 wait(img2)
 click(img2)

def do_something_else(self):
wait(img1)
click(img1)
b.perform_something()

class B(object):


If i run without administrator privileges it will work very finicky (as
in sometimes register that it click on img1 but it actually didn't).
Sometimes it will click on img1 but then fail to click img2.  When run
with administrator privileges it works fine.

-- 
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 #240001]: Requiring to run Sikuli as Administrator when scripts are in many modules

2013-11-28 Thread Mark
New question #240001 on Sikuli:
https://answers.launchpad.net/sikuli/+question/240001

Hey, I'm on Windows 7 (64bit), and when my Sikuli scripts are all defined in 
one file (one .sikuli file/folder), I am able to run the script perfectly.  
However I've been developing my tests as modules, and they communicate with 
each other to perform certain tasks or get specific pictures.  Since I've 
modularized the code, I haven't been able to run Sikuli successfully without 
running it as administrator.  If i don't run the scripts as an administrator, 
it will 'phantom' the script at the beginning.  By this, I mean that it will 
say it has clicked the image but the mouse doesn't move and no click is 
performed.  Is there still a way to run my tests without having to run them as 
an administrator?

Thanks for any help.

-- 
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 #237464]: issue with loop

2013-10-16 Thread Mark Weisler
Question #237464 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/237464

Mark Weisler posted a new comment:
Hello Joshua,
I'm not sure I completely understand your question but below are some examples 
of waiting for images that might be of use to you.


m =Region(20,20,100,400)
m.highlight(1)

# testing with some image that sometimes appears in this region

while m.exists("1381968538084.png",2): # execution stays at this line until 
image disappears, then falls through
print "fell through"
# other tasks and code...
break
print "got here"


# the if statement below could be at the "bottom" of a loop and used to either 
wait for 300 seconds or the appearance of the image of interest.

if m.exists("1381968538084.png",300):  # wait up to 300 secs for this image to 
appear then continue (maybe to top of loop) 
print "Image finally appeared under the time limit of the if statement"
# other tasks and code...
 print "Continuing execution..."  # you will execute this statement whether the 
image is found or not.

# the try/except mechanism might be useful also...
# see https://answers.launchpad.net/sikuli/+question/147486

-- 
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 1234831] [NEW] IDE 1.0.1 hangs launching "-d 3 -c" on OS X

2013-10-03 Thread Mark Weisler
Public bug reported:

Summary:  I launch Sikuli IDE 1.0.1 (build 12SEP2013160242) and enter
"-d 3 -c" into the options dialog box that appears when launching the
IDE and hit enter. The yellow message box appears but does not progress
to a usable session.

Environment: OS X 10.6.8 on a MacBook running Sikuli IDE 1.0.1
Steps:
1. Launch IDE.
2. Enter "-d 3 -c" into the dialog box that appears on launching the IDE and 
hit enter.


Expected: full log-in to IDE
Actual:  IDE launch hangs at yellow dialog box. Must kill Sikuli process (using 
Activity Monitor or other means).

Note: this is related to Related to Question #236745 in which entering "-d 3 
-c" was recommended as a debugging measure.
I will attach the crash log...

** Affects: sikuli
 Importance: Undecided
 Status: New

** Attachment added: "Crash log"
   
https://bugs.launchpad.net/bugs/1234831/+attachment/3857802/+files/SikuliFail-20131003.txt

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

Title:
  IDE 1.0.1 hangs launching "-d 3 -c" on OS X

Status in Sikuli:
  New

Bug description:
  Summary:  I launch Sikuli IDE 1.0.1 (build 12SEP2013160242) and enter
  "-d 3 -c" into the options dialog box that appears when launching the
  IDE and hit enter. The yellow message box appears but does not
  progress to a usable session.

  Environment: OS X 10.6.8 on a MacBook running Sikuli IDE 1.0.1
  Steps:
  1. Launch IDE.
  2. Enter "-d 3 -c" into the dialog box that appears on launching the IDE and 
hit enter.

  
  Expected: full log-in to IDE
  Actual:  IDE launch hangs at yellow dialog box. Must kill Sikuli process 
(using Activity Monitor or other means).

  Note: this is related to Related to Question #236745 in which entering "-d 3 
-c" was recommended as a debugging measure.
  I will attach the crash log...

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1234831/+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 #236622]: Not working when the object is not on screen

2013-09-30 Thread Mark Weisler
Question #236622 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/236622

Status: Open => Answered

Mark Weisler proposed the following answer:
Since Sikuli is a visual environment it needs to see the image 
("1380511864279-1.png") on your screen to be able to click on it.
If the display is minimized Sikuli cannot see the image and cannot click on it.
When you execute the Sikuli program you should leave the screen the same size 
as when you captured the image. That way Sikuli will have a better chance of 
finding the image than if you shrink it or enlarge it.

-- 
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 #236332]: Testing Flex applications

2013-09-25 Thread mark goldin
New question #236332 on Sikuli:
https://answers.launchpad.net/sikuli/+question/236332

How can I test my Flex applications using your product? Is there any sample for 
that?

Thanks

-- 
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 #236249]: How to use OCR

2013-09-24 Thread Mark Weisler
Question #236249 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/236249

Status: Open => Answered

Mark Weisler proposed the following answer:
Hi VK,
To get started with OCR you might try this Sikuli code:


myReg= Region(100,100,500,600)   

myReg.highlight(2)
myText = myReg.text()
print myText

Before running this be sure to have an application, like a Web browser,
open with lots of text visible so the Sikuli region can see it. You will
find the text stored in the variable myText.

There are several ways to use Sikuli including the IDE (integrated
development environment) but also from java and from  python scripts.
Start with IDE then search the Web for other ways to use it.

-- 
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 #232718]: Can detect the text on screen but can't find it

2013-08-03 Thread Mark Weisler
Question #232718 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/232718

Mark Weisler posted a new comment:
I tried essentially  your code and it worked properly for me.
I have a Web page open and it contains the string of interest in the region 
Sikuli will be searching. Then I run...

myReg= Region(100,100,500,600)  
myReg.highlight(2)
myText = myReg.text()
print myText

myReg.find("Hitz")  # succeeds as Hitz is found in the region
wait(3)
myReg.find("Hitzz") # fails as Hitzz is not found in the region
#this appears as a FindFailed error in the IDE

Please be sure the screen with the text has focus for Sikuli to see it.
You may be encountering a known OCR issue with Sikuli. (Apparently OCR
is not the most robust part of Sikuli at this time.)

Another version of this using exception handling is below and it works
properly also...

#script: OCRDemo33
# now using exception handling...

Settings.OcrTextSearch = True
Settings.OcrTextRead = True

myReg= Region(100,100,500,600)

myReg.highlight(2)
myText = myReg.text()
print myText

myReg.find("Hitz")  # succeeds as Hitz is found in the region
wait(1)

try:
myReg.find("Hitzz")
print "found string somehow" #should not execute this line as Hitz 
is not there.
pass # it is there
except FindFailed:
print("") #blank line
print ("failed to find sought string")
pass # just continue execution

wait(2)
try:
myReg.find("Hitz")
print("") #blank line
print "found it again"
pass # it is there
except FindFailed:
print ("failed to find sought string")
pass # continue

-- 
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 #231162]: png images not saving in 1.0.0

2013-06-21 Thread Mark Allen
New question #231162 on Sikuli:
https://answers.launchpad.net/sikuli/+question/231162

I download win 32 and 64 IDE bit and have run both the sikuli-ide.cmd as a user 
in the administrators group and also right click run as admin and I can create 
several click items and the script runs fine.  When I save or save_as it seems 
only the html and py items are saved, it never saves any of the png files.  How 
do I correct this?   Sikuli does some great things but it seems getting it to 
run correctly is a experiment in frustration.
Thanks,
Mark

-- 
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 #230510]: Printing the exception information in a catch block

2013-06-12 Thread Mark Weisler
Question #230510 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/230510

Mark Weisler posted a new comment:
The working script below illustrates some of how sys.exc_info works.

# script: sys.exc_info explorer
# Mark Weisler
# 11 June 2013
# our goal is to create an error condition, save error to a variable or a 
database
# Sikuli version  X-1.0rc3 on OS X 10.6.8

try:
f = open('sometestfile2.txt', 'r')# make sure this file does not exist 
to trigger an error, which we want to do
f.close()   # just in case the file did exist
except:
# some code maybe here
print "Got an exception:", sys.exc_info()[0], " --- saying:", 
sys.exc_info()[1]
print "0 is: ", sys.exc_info()[0]
print "1 is: ", sys.exc_info()[1]
ErrMsg = sys.exc_info()[1]
print "ErrMsg is: ", ErrMsg  # could be logged or stored in a database

print "Finishing execution..."

-- 
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 #229825]: do an action if the image on a region doesn't change

2013-06-02 Thread Mark Weisler
Question #229825 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/229825

Mark Weisler posted a new comment:
The following working code might help you...


# script: RegionAreaTest6, 01 June 2013
# Related to [Question #229825]: do an action if the image on a region doesn't 
change
# This Sikuli script monitors a screen area to detect change.

bigChange=False  # a global variable set if a region changes

def changed(event): # this function runs if change is observed
print "something changed in ", event.region
global bigChange # set to true if this function runs
bigChange=True
print bigChange
for ch in event.changes:
ch.highlight(2) # highlight all changes
sleep(1)
for ch in event.changes:
ch.highlight() # turn off the highlights
event.region.stopObserver()


# now start watching a Chicago Transit Authority map of buses moving down 
streets
# http://ctabustracker.com/bustime/map/displaymap.jsp

print "Starting..."
myRegion=Region(200,250,500,500)  
# adjust size of region examined, make area as small as reasonably possible to 
limit searching, analysis

#myRegion=Region(420,270,200,200) # an alternative region that is smaller
myRegion.highlight(3)  # for illustrative purposes, not functionally necessary
wait(1)
myRegion.highlight(0) #remove highlight
wait(1)
print bigChange # value of the variable before starting the monitoring

myRegion.onChange(30, changed) # install 'changed' as the function to run if 
changes are discovered
myRegion.observe(30,background=True) # start observing for 30 seconds before 
proceeding
# Monitoring is now running.
# Next start a loop to check for changes in the monitored area...

myLimit=4
i = 0  # index for our loop
mycontinue = True
print "Starting mycontinue loop..."
while mycontinue:
print bigChange
if bigChange:
print "Something just changed."
else:
print "No change yet."
# Do some desired action here...
i +=1 # increment index 
if i >=myLimit:
mycontinue=False
wait(5)

print "Leaving mycontinue loop..."

myRegion.stopObserver() #stops the observer

myRegion=Region(100,300,500,500)
myRegion.highlight(3)
wait(1)
print bigChange
exit(0)

-- 
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 #228659]: need help with this software, newbie...

2013-05-29 Thread Mark Weisler
Question #228659 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/228659

Mark Weisler posted a new comment:
Below is some code that might help with this question...


# script: URLWatcher
# cycles through some URLs which are initially loaded into a list
# 22 Mai 2013, Mark Wißler
# written for OS X; could be adapted to other OSs.
# preconditions: a) existence of the URL file, b) Safari is running

import sys, string, os  # some libraries we are likely to need

aURL=[] #defining an empty list

URLfile = open('/Users/joe/Documents/URLs.txt', 'r') # file containing our URLs 
of interest
for line in URLfile:  # just to demonstrate the existence of the file and 
entries
print line,
aURL.append(line) # add each line as item in our list
   
URLfile.close()

print aURL # demonstrates the list still exists and contains items
myLimit = len(aURL)
print myLimit
print aURL[0]
print aURL[1]
print aURL[2]

### now moving on to the Web browser...
App("Safari").focus() # bring Safari browser into focus

i = 0  # index for our loop
mycontinue = True
while mycontinue:

type("l", KEY_CMD) # Safari key to open location (or reading list?)
type(Key.DELETE) # deletes any string in the URL field


type(aURL[i]+ Key.ENTER) # then the Web page appears
# we could do some other work here like examine the page
i +=1 # increment index to prepare for next URL to see
if i >=myLimit:
i = 0
wait(5)
# result is that this  brings up a web page
# next you would likely evaluate the web page, process it, scrape it, save 
it, u.s.w.

-- 
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 #227801]: mouse effect to know where the click happens

2013-04-29 Thread mark
New question #227801 on Sikuli:
https://answers.launchpad.net/sikuli/+question/227801

Hello,

I have been using heavy mouse clicking with Sikuli and the problem that I have 
is that sometime I cant see where the scripts are clicking. My setup includes a 
video recording of what is happening in the desktop

NOT the problem:
The script is working but I sometimes the GUI is not displayed correctly hence 
the script is failing. This is not my posted question. This is the reason why I 
am using Sikuli.


Problem:
Troubleshooting which icon/(part of the GUI) I click last is a little tricky to 
find. So I thought that if I have a mouse click effect (something like the one 
that is used in League of Legends) would be great.


I just want to see if anyone out there have figured out how to have mouse click 
effect, without interfering with the GUI (will not block the image behind where 
the mouse is hovering over).



-- 
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 #209733]: Sending a wave file to microphone input

2012-09-28 Thread mark
Question #209733 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/209733

Status: Answered => Open

mark  is still having a problem:
That utility that can redirect wave file to a microphone input is the
one that I am looking for, It does not seem to exist anywhere. I have
been searching for days. There are solutions out there that requires
hardware, but I want to stick to software so it will be more versatile.

If someone can tell me its not possible at all and give me a reason why
then I will end this search lol 

-- 
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 #209733]: Sending a wave file to microphone input

2012-09-27 Thread mark
Question #209733 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/209733

mark  gave more information on the question:
Thanks for replying. I am not really using Skype, but a Skype like
software.

I kinda know its possible, I just dont know how to do it. In some chat
rooms out there, there are people that are broadcasting music from their
collection. So if you enter the chat room all you hear is music like a
radio station. I just dont know how the software send the wave file
directly to microphone input.

I am using Windows on all machine.

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


  1   2   >