Zud120 Posted August 16, 2014 Posted August 16, 2014 (edited) clicks on the pictures are not produced using jpg format for images, in what could be the problem ? expandcollapse popup#include <ImageSearch.au3> HotKeySet("{1}","Start") HotKeySet("{2}","Stop") dim $x,$y = 0 While 1 sleep(10000) WEnd Func Start() $4 = _ImageSearch("4.jpg",1,$x,$y,1) If $4 = 1 Then MouseClick("left",$x,$y,1,0) While True $3 = _ImageSearch("3.jpg",1,$x,$y,1) If $3 = 1 Then MouseClick("left",$x,$y,1,0) Sleep(2000) $2 = _ImageSearch("2.jpg",1,$x,$y,1) If $2 = 1 Then MouseClick("left",$x,$y,1,0) Sleep(2000) $1 = _ImageSearch("1.jpg",1,$x,$y,1) If $1 = 1 Then MouseClick("left",$x,$y,1,0) EndIf EndIf EndIf WEnd EndIf EndFunc Func stop () exit EndFunc Edited August 16, 2014 by Zud120
Solution sisko59 Posted August 16, 2014 Solution Posted August 16, 2014 (edited) $4 = _ImageSearch("4.jpg",1,$x,$y,1) Hello, I think that your tolerance is too small with jpg. I use generally a tolerance between 100 and 180. Else you can use the format bmp or png, the formats don't loss details. Edited August 16, 2014 by sisko59 sorry for my english.
water Posted August 16, 2014 Posted August 16, 2014 Can you please tell us what you try to achieve? Which program do you try to automate? Most of the time there are better (more reliable) solutions available than using ImageSearch. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Zud120 Posted August 16, 2014 Author Posted August 16, 2014 (edited) I'm trying to achieve normal clicks images with a short interval, expect that I will add to create a pause in the code: sleep (,,,), and that portion of the code that I showed here is just an outline click one after another without a pause. Edited August 16, 2014 by Zud120
water Posted August 16, 2014 Posted August 16, 2014 Thanks for the answer, but it doesn't really help Which program do you try to automate? My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Zud120 Posted August 16, 2014 Author Posted August 16, 2014 usual clicks on the images on the desktop that is a kind of testing imagesearch continue to realize that something more complicated, I am a beginner still really have not figured out the user, I need it more appropriate to work imagsearch and nothing else
Blue_Drache Posted August 18, 2014 Posted August 18, 2014 Looks a ton like '?do=embed' frameborder='0' data-embedContent>> Lofting the cyberwinds on teknoleather wings, I am...The Blue Drache
Moderators Melba23 Posted August 18, 2014 Moderators Posted August 18, 2014 Blue_Drache,Agreed. >Zud120,Last chance saloon for you - be very, very careful. M23 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