fighterlastme Posted September 6, 2012 Posted September 6, 2012 (edited) Hello, first i want to say that im pretty new to autoit, i have started like 2 hours ago and i want to make a project, i know a bit of c++ soo i understand most of autoit functions. Now back to topic, i made this script (may be wrong coded) #include<GUIConstantsEx.au3> vis1() Func vis1() GUICreate("Project Test", 500, 300) GUICtrlCreateButton("Start", 70, 50, 60) GUICtrlSetOnEvent(1, "start112") GUISetState(@SW_SHOW) $j = 1 while $j = 1 WEnd EndFunc Func start112() $coord = PixelSearch(0, 0, 100, 200, 0x231450) If Not @error Then MouseClick("primary", $coord[0], $coord[1], 1, 0) EndIf send("k") EndFunc Basicly what i want is when i press the start button to run func start112() but it does nothing. Now the second thing what i want to do is to make an imput box where i can write what pixelid i want the func to search because as it is now it will search only the pixel that is the code. Can someone help me a bit or give me some hints, examples, anything, thanks. Edited September 6, 2012 by fighterlastme
BrewManNH Posted September 6, 2012 Posted September 6, 2012 You had a few mistakes in the script, I have corrected them in the code below. #include<GUIConstantsEx.au3> Opt("GUIOnEventMode", 1) ; This needs to be added if you want to use OnEvent mode Global $hInput vis1() Func _Exit() Exit EndFunc ;==>_Exit Func start112() Local $nColor = GUICtrlRead($hInput) ; Reads the contents of the Input control If $nColor = "" Then $nColor = 0x231450 ; if it's empty, set to a default color $coord = PixelSearch(0, 0, 100, 200, $nColor) If Not @error Then MouseClick("primary", $coord[0], $coord[1], 1, 0) EndIf Send("k") EndFunc ;==>start112 Func vis1() GUICreate("Project Test", 500, 300) GUISetOnEvent($gui_event_close, "_Exit") ; Added so that you can close the GUI cleanly. GUICtrlCreateButton("Start", 70, 50, 60) GUICtrlSetOnEvent(-1, "start112") ; You needed to use -1, and not 1, here $hInput = GUICtrlCreateInput("", 70, 100, 200) ; Use this to enter a hex color number to search for.k GUISetState(@SW_SHOW) $j = 1 While $j = 1 WEnd EndFunc ;==>vis1 If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
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