ashraful089 Posted May 16, 2022 Posted May 16, 2022 #cs ---------------------------------------------------------------------------- Here, Do when i am using Search Function, program is able to detect the image, but when i am using StarTech Funcion the program is unable to detect the image. My question is what will be in the portion of Do Until portion if i changed that line . #ce ---------------------------------------------------------------------------- #include <ImageSearch.au3> #include <MsgBoxConstants.au3> Local $x = 0, $y = 0, $StarTechX = 0, $StarTechY = 0 $StarTech = _ImageSearch('StarTech.PNG', 0, $StarTechX, $StarTechY, 0) ;Want to keep this line at top and remove from Do until section $NUM = 0 While $NUM <= 10 MsgBox($MB_SYSTEMMODAL, "", $NUM) ; Display the result. ;StarTech() Search() WEnd Func Search() Do $Search = _ImageSearch('StarTech.PNG', 0, $x, $y, 0) Until $Search = 1 If $Search = 1 Then MouseMove($x, $y, 2) MouseClick("left", $x, $y, 1) MsgBox($MB_SYSTEMMODAL, "", $Search) ; Display the result. $NUM = $NUM + 1 Elseif $Search = 0 Then ;MsgBox($MB_SYSTEMMODAL, "", $Search) ; Display the result. sleep(100) Else sleep(100) EndIf EndFunc Func StarTech() Do ;$Search = _ImageSearch('StarTech.PNG', 0, $x, $y, 0) ;$StarTech = _ImageSearch('StarTech.PNG', 0, $StarTechX, $StarTechY, 0) Until $StarTech = 1 If $StarTech = 1 Then MouseMove($StarTechX, $StarTechYy, 2) MouseClick("left", $StarTechX, $StarTechY, 1) MsgBox($MB_SYSTEMMODAL, "", $StarTech) ; Display the result. $NUM = $NUM + 1 Elseif $StarTech = 0 Then ;MsgBox($MB_SYSTEMMODAL, "", $Search) ; Display the result. sleep(100) Else sleep(100) EndIf EndFunc
Moderators Melba23 Posted May 16, 2022 Moderators Posted May 16, 2022 Moved to the appropriate forum. Moderation Team ashraful089 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
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