Hoth2001 Posted September 7, 2017 Posted September 7, 2017 I am writing a program to automate another program I created a simple array (image of array attached) that I'm trying to loop through and call elements from the array into my code expandcollapse popup#RequireAdmin #include<file.au3> ;~ _ArrayDisplay($aArray) local $aArray _FileReadToArray("C:\Users\User\Desktop\Simple.csv" , $aArray, 0, ",") Run("C:\Users\User\Desktop\Ingabo HP computer\Desktop\Techsignal\CPM\CelestialPriceMoves.UI.exe") WinWait('Celestial Price Moves (Current Version: 1.3.14, Release Date: 03/08/2014)') WinActivate("Celestial Price Moves (Current Version 1.3.14, Release Date: 03/08/2014)") Sleep(4000) AutoItSetOption('MouseCoordMode' , 0) AutoItSetOption('SendKeyDelay', 10) For $i = 1 To UBound($aArray) - 1 For $j = 0 To UBound($aArray, 2) - 1 ;SET TRANSIT BODY (PLANET) Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Sleep(300) Send("{DELETE}") Send($aArray[$i][$j]) Sleep(300) ;~ ;PLANET RATE OF CHANGE MAXIMUM MouseClick('primary', 320,156, 1, 0) Sleep(300) Send("{DELETE}") Send("{DELETE}") Send("{DELETE}") sleep(200) Send($aArray[$i][$j]) ;~ Send("{TAB}") sleep(500) Next Next I am trying to in the code FIRST: send tab 26 times and then Send the first element of the array SECOND: Click at another location in the program window and Send the 2nd element of the array. When I execute the program the script seems to FIRST: send tab 26 times and then Send the first element of the array SECOND: tab 26 times AGAIN!!! THIRD: Click at another location in the program window and Send the 2nd element of the array. What is wrong with my code that makes the loop do the 26 tabs two times?!?!?!?
iamtheky Posted September 7, 2017 Posted September 7, 2017 (edited) For every row For each column tab 26x send array[$i[$j] mouseclick send 3 deletes send the same shit again because you havent incremented $j yet Next Increment $j and do all of the above for every column on row $i Next Now onto the next row, where we do it all again. that is what your code does Also, this line in the helpfile for 'send' could be used to clean up all those tabs Quote Send("{S 30}") ;Sends 30 'S' characters Edited September 7, 2017 by iamtheky ,-. .--. ________ .-. .-. ,---. ,-. .-. .-. .-. |(| / /\ \ |\ /| |__ __||| | | || .-' | |/ / \ \_/ )/ (_) / /__\ \ |(\ / | )| | | `-' | | `-. | | / __ \ (_) | | | __ | (_)\/ | (_) | | .-. | | .-' | | \ |__| ) ( | | | | |)| | \ / | | | | | |)| | `--. | |) \ | | `-' |_| (_) | |\/| | `-' /( (_)/( __.' |((_)-' /(_| '-' '-' (__) (__) (_) (__)
careca Posted September 7, 2017 Posted September 7, 2017 Can you attach a bogus csv for test? Also, Send("{TAB 26}") Spoiler Renamer - Rename files and folders, remove portions of text from the filename etc. GPO Tool - Export/Import Group policy settings. MirrorDir - Synchronize/Backup/Mirror Folders BeatsPlayer - Music player. Params Tool - Right click an exe to see it's parameters or execute them. String Trigger - Triggers pasting text or applications or internet links on specific strings. Inconspicuous - Hide files in plain sight, not fully encrypted. Regedit Control - Registry browsing history, quickly jump into any saved key. Time4Shutdown - Write the time for shutdown in minutes. Power Profiles Tool - Set a profile as active, delete, duplicate, export and import. Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes. NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s. IUIAutomation - Topic with framework and examples Au3Record.exe
Hoth2001 Posted September 7, 2017 Author Posted September 7, 2017 (edited) 7 minutes ago, iamtheky said: For every row For each column tab 26x send array[$i[$j] mouseclick send 3 deletes send the same shit again because you havent incremented $j yet Next Do all of the above for every column on row $i Next Now onto the next row, where we do it all again. Ok thanks IamSky. So....my syntax is clearly wrong. I'm now confused as to what the correct syntax would be. The goal I am trying to achieve is call on elements of the array at various points throughout my code. I thought a nested for loop would achieve that aim...but I guess not??? Could you point me in the right direction?? 5 minutes ago, careca said: Can you attach a bogus csv for test? Also, Send("{TAB 26}") Careca I've attached the csv I've been using Simple.csv Edited September 7, 2017 by Hoth2001
careca Posted September 7, 2017 Posted September 7, 2017 (edited) Do you only want the "TAB x26 times" once? The loop works well for repeated tasks, for example send a tab 26 times for every row in the column. What do you need it to do? Im a bit confused sorry. What do you mean " call on elements of the array at various points throughout my code. " something like call a specific item in a specific row and column? Edited September 7, 2017 by careca Spoiler Renamer - Rename files and folders, remove portions of text from the filename etc. GPO Tool - Export/Import Group policy settings. MirrorDir - Synchronize/Backup/Mirror Folders BeatsPlayer - Music player. Params Tool - Right click an exe to see it's parameters or execute them. String Trigger - Triggers pasting text or applications or internet links on specific strings. Inconspicuous - Hide files in plain sight, not fully encrypted. Regedit Control - Registry browsing history, quickly jump into any saved key. Time4Shutdown - Write the time for shutdown in minutes. Power Profiles Tool - Set a profile as active, delete, duplicate, export and import. Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes. NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s. IUIAutomation - Topic with framework and examples Au3Record.exe
Hoth2001 Posted September 7, 2017 Author Posted September 7, 2017 Ok...sorry if I have confused you. What I am trying to do is insert consecutive elements from my array at various points throughout my code. For example: I want to Tab 26 times Send $aArray [1][0] Click Mouse Send Delete 3 times Send $aArray Element [1][1] Click Mouse somewhere else Send Tab 2 times Send $aArray Element [2][0] click mouse somewhere else Send Delete 1 time Send $aArray Element [2][1]
careca Posted September 7, 2017 Posted September 7, 2017 There's no cyclic action, I guess i would do this in a different way. Example: #include <Array.au3> #include<file.au3> local $aArray _FileReadToArray("C:\Users\careca\Desktop\Simple.csv" , $aArray, 0, ",") ;_ArrayDisplay($aArray) AutoItSetOption('MouseCoordMode' , 0) AutoItSetOption('SendKeyDelay', 10) ;============================================================================= For $i = 1 To UBound($aArray) - 1 For $j = 0 To UBound($aArray, 2) - 1 MsgBox(64, '', $aArray[$i][$j]) If $aArray[$i][$j] = 'abc' Then abc() ElseIf $aArray[$i][$j] = 'Me' Then Me() EndIf Next Next ;============================================================================= Func abc() ConsoleWrite('abc - do this, do that - '&@MSEC&@CRLF) Beep(500, 500) EndFunc ;============================================================================= Func Me() ConsoleWrite('Me - do this, do that - '&@MSEC&@CRLF) Beep(800, 500) EndFunc ;============================================================================= This way you can set specific actions to specific items. Just have to place those in the according function. BTW i added items to the csv, doesn't matter, i think you get the idea. Spoiler Renamer - Rename files and folders, remove portions of text from the filename etc. GPO Tool - Export/Import Group policy settings. MirrorDir - Synchronize/Backup/Mirror Folders BeatsPlayer - Music player. Params Tool - Right click an exe to see it's parameters or execute them. String Trigger - Triggers pasting text or applications or internet links on specific strings. Inconspicuous - Hide files in plain sight, not fully encrypted. Regedit Control - Registry browsing history, quickly jump into any saved key. Time4Shutdown - Write the time for shutdown in minutes. Power Profiles Tool - Set a profile as active, delete, duplicate, export and import. Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes. NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s. IUIAutomation - Topic with framework and examples Au3Record.exe
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