Welcome, Guest. Please Login
vTask Homepage
 
 
Home Help Search Login


Page Index Toggle Pages: 1
Send Topic Print
how can i scan the screen for one colour pixel? (Read 1139 times)
fae
New Member
*
Offline



Posts: 1
how can i scan the screen for one colour pixel?
Apr 22nd, 2009 at 9:50am
 
I am trying to scan the screen of a certain shade of brown (#3E1E14), then move my mouse to that pixel. Is there anyway of doing this? Also what happens if there are multiple areas on the screen which share a color?

Would appreciate the help.
Back to top
 
 
IP Logged
 
vTask Support
Moderator
*
Offline



Posts: 3596
Tucson, AZ
Re: how can i scan the screen for one colour pixel?
Reply #1 - Apr 22nd, 2009 at 9:59am
 

...


VXM Script:   (Copy and Paste into vTask)
<step>
<action>Comment</action>
<comment>Search for a specific color pixel. If found, move mouse to it, else show a message.</comment>
</step>
<step>
<action>IF Pixel is Visible</action>
<text>#3E1E14</text>
<output value="%location">Variable</output>
<comment>search for this color</comment>
</step>
<step>
<action>Move</action>
<text>%location</text>
<indents>1</indents>
<comment>go to it</comment>
</step>
<step>
<action>ELSE</action>
</step>
<step>
<action>Display Message</action>
<text>Can't find color</text>
<indents>1</indents>
<comment>else color isn't visible</comment>
</step>
<step>
<action>END IF</action>
</step>
Back to top
 

Thank you for using vTask Studio!
WWW  
IP Logged
 
Rubenson Kroesoweej
New Member
*
Offline



Posts: 2
Re: how can i scan the screen for one colour pixel?
Reply #2 - Jan 30th, 2010 at 9:18am
 
This one is great! Is it also possible to move it 60 pixels down? But the mouse first has to click on the pixel and then click 60 pixels down.
Back to top
 
 
IP Logged
 
HappyFace
Full Member (10+)
*
Offline



Posts: 16
Re: how can i scan the screen for one colour pixel?
Reply #3 - Feb 1st, 2010 at 2:39pm
 
Rubenson: For 60 pixel down... just add a condition if %i=1 it's left and right if %i = 2 it's up and down...
Back to top
 

Find_pixel.vxm (1 KB | 52 )
Image_60.jpg (67 KB | 29 )
Image_60.jpg
 
IP Logged
 
Page Index Toggle Pages: 1
Send Topic Print