chaddiablo Posted June 4, 2009 Posted June 4, 2009 Im making a script to where when a certain color pops up in area it will perform actions, but i dont know how to get that color from my screen. I need to find out what that color is. And how to, if true do actions. Here is the part of the script where the color is needed. expandcollapse popupWhile 1 $c = PixelGetColor(386, 45) Case (color here) if $c = True Then MouseMove(660,360) Sleep(500) MouseClick("Left"[,660,360]) Sleep(500) Run("Program") WinWait("Program") Sleep(500) MouseMove(100,180) Sleep(500) MouseClick("Left"[,100,180]) WinWait("Load...") MouseMove(140,145) Sleep(500) MouseClick("Left"[,140,145]) Sleep(500) MouseMove(520,368) Sleep(500) MouseClick("Left"[,520,368]) Sleep(500) MouseMove(247,88) Sleep(500) MouseClick("Left"[,247,88]) Sleep(500) WinWait("INFO") MouseMove(640,425) Sleep(500) MouseClick(640,425) Sleep(500) MouseMove(1620,1008) SLeep(500) MouseClick("Left"[,640,425]) endif WEnd
Valuater Posted June 4, 2009 Posted June 4, 2009 The best I have seen here...http://www.autoitscript.com/forum/index.ph...st&p=5779228)
chaddiablo Posted June 4, 2009 Author Posted June 4, 2009 Oh cool. Thank you. Ill add in and see id the code is right.
Valuater Posted June 4, 2009 Posted June 4, 2009 don't use the brackets "[" expandcollapse popup; say 0xffffff is your color While 1 $c = PixelGetColor(386, 45) If $c = 0xffffff Then MouseMove(660, 360) Sleep(500) MouseClick("Left", 660, 360) Sleep(500) Run("Program") WinWait("Program") Sleep(500) MouseMove(100, 180) Sleep(500) MouseClick("Left", 100, 180) WinWait("Load...") MouseMove(140, 145) Sleep(500) MouseClick("Left", 140, 145) Sleep(500) MouseMove(520, 368) Sleep(500) MouseClick("Left", 520, 368) Sleep(500) MouseMove(247, 88) Sleep(500) MouseClick("Left", 247, 88) Sleep(500) WinWait("INFO") MouseMove(640, 425) Sleep(500) MouseClick(640, 425) Sleep(500) MouseMove(1620, 1008) Sleep(500) MouseClick("Left", 640, 425) EndIf Sleep(100) ; don't burn CPU WEnd 8)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now