junkew Posted July 29, 2017 Share Posted July 29, 2017 We all have to start somewhere. My advice watch some youtube introductions on programming. https://www.google.nl/search?q=programming+variable+scope FAQ 31 How to click some elements, FAQ 40 Test automation with AutoIt, Multithreading CLR .NET Powershell CMDLets Link to comment Share on other sites More sharing options...
freyaharts Posted July 29, 2017 Author Share Posted July 29, 2017 (edited) thank you melba23 it works now! talking to someone with knowledge with this is always best for learning than studying the help file expandcollapse popupHotKeySet ("{esc}", "_Exit") #include <Misc.au3> $Coords = AskUser() call ("Start") Func AskUser() MsgBox(0, "User Input", "Please click mouse your screen" & @CRLF & "Press OK, and then move your mouse there and click") Do Sleep(50) Until _IsPressed(01) $Coords = MouseGetPos() global $Color = PixelGetColor($coords[0], $coords[1]) MsgBox(0, "info", "Your coords and color have been stored for later use") Return $Coords EndFunc Func Start() While 1 if pixelgetcolor($coords[0],$coords[1]) = $Color then sleep (200) ;run whole script Else sleep (100) endif wend EndFunc Func _Exit() Exit EndFunc Edited July 29, 2017 by freyaharts Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted July 29, 2017 Moderators Share Posted July 29, 2017 freyaharts, That is not the solution I suggested - declaring variables as Global within a function is not good coding practice: #include <Misc.au3> HotKeySet("{esc}", "_Exit") Global $Color ; Declare the variable as Global here so it is seen by all functions <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< $Coords = AskUser() Start() Func AskUser() MsgBox(0, "User Input", "Please click mouse your screen" & @CRLF & "Press OK, and then move your mouse there and click") Do Sleep(50) Until _IsPressed(01) $Coords = MouseGetPos() $Color = PixelGetColor($Coords[0], $Coords[1]) MsgBox(0, "info", "Your coords and color have been stored for later use") Return $Coords EndFunc ;==>AskUser Func Start() While 1 If PixelGetColor($Coords[0], $Coords[1]) = $Color Then Sleep(200) ;run whole script Else Sleep(100) EndIf WEnd EndFunc ;==>Start Func _Exit() Exit EndFunc ;==>_Exit M23 freyaharts 1 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
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