[Sikuli-driver] [Question #270186]: Linux highlight

2015-08-10 Thread Terje Kerlefsen
New question #270186 on Sikuli:
https://answers.launchpad.net/sikuli/+question/270186

Unfortunately Highlight does not work in Linux. Since I find it a very useful 
function when debugging scripts I first tried out grabbing the region i want to 
highligt with capture and then display it in Linux Mint using the default image 
display program (ristretto) This works fine but I soon realized that in many 
cases I need to know where on the screen the capture is taken from so I was 
thinking that there must be some simple software out there which is able to 
draw a rectangle from coordinates given by Sikuli on the screen or a screen 
dump. I have searched a bit but not found any immediate candiate. Before i 
spend a lot of time on it I was thinking that maybe someone else already have 
found a solution to 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 #270186]: Linux highlight

2015-08-10 Thread RaiMan
Question #270186 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/270186

Status: Open => Answered

RaiMan proposed the following answer:
Beginning somewhen next week, when I am back from vacation, I will have
a look, what I can do for you.

It is on the list already for a long time, to check, why the highlight
is switched off for Linux (did not do it until now ;-)

-- 
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 #270186]: Linux highlight

2015-08-11 Thread Eugene Maslov
Question #270186 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/270186

Eugene Maslov proposed the following answer:
Hi,
I use under Linux the following function.
Also it often helps to avoid problems under Windows,  because highlight() 
always kills extended menus under Windows.

def showByMouse(reg):
hover(reg.getTopLeft())
hover(reg.getTopRight())
hover(reg.getBottomRight())
hover(reg.getBottomLeft())
hover(reg.getTopLeft())

showByMouse(Region(10,10,100,100))

-- 
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 #270186]: Linux highlight

2015-08-12 Thread Terje Kerlefsen
Question #270186 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/270186

Status: Answered => Solved

Terje Kerlefsen confirmed that the question is solved:
Thanks to both of you. The mouse hover trick solves the problem for now
but it would be really nice if highlight would work some time in the
future.

-- 
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 #270186]: Linux highlight

2015-08-18 Thread RaiMan
Question #270186 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/270186

RaiMan posted a new comment:
@Eugene
thanks for your solution: simple but brilliant ;-)

I have added it to the docs to the description of highlight() (adding a
loop parameter, to do the turn more than once ;-)

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