frankc123 Posted April 3, 2015 Posted April 3, 2015 Ok so i have a text file with lines of 4 digit codes. I am trying to read each line one at a time and for each number in that line i want to do a different function. So if the first line reads 1234 i want it to $click1 $click2 $click3 $click4 and then start on the next line. I have looked around and im not sure what the best way to go about doing this is. Any help would be greatly appreciated. Thanks.
water Posted April 3, 2015 Posted April 3, 2015 Welcome to AutoIt and the forum! I would have a look at Switch. BTW: Which program do you try to automate? Most of the time MouseClicks are not very reliable because of screen resolution and window position. There are better ways tro automate programs. 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
caramen Posted April 3, 2015 Posted April 3, 2015 $Click1 = Mouclick $Click2 = Mouclick $Click... $Line1 = FileRead $Line1 = FileRead If $Line1 = X Then $Click1 and $Click2 EndIf If $Line2 = X Then $Click3 and $Click4 EndIf HelpFile My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki
frankc123 Posted April 3, 2015 Author Posted April 3, 2015 @Water Is their a way to contact you without publicly posting? I am trying to test a security feature and im not trying to promote anything.
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