bassben Posted May 28, 2013 Posted May 28, 2013 (edited) i am new to Autoit, but have been building a script to "open" a file "Save" the file "Close" it then move on to the next one. i am using the Calculator at the moment to give me a running number but its not that great. any ideas of a nice display thing i can use to show the counter number on the loop. also i get it to tun a stop watch so i can keep an eye on the time it has been running. expandcollapse popup; Script Function: ; Auto open save and close the show count number in Calc ; Opt("WinTitleMatchMode", 2) ;1=start, 2=subStr, 3=exact, 4=advanced, -1 to -4=Nocase Run("C:\Program Files\FreeStopwatch\FreeStopwatch.exe") WinWaitActive("Free Stopwatch") Send("{ENTER}") Run("calc.exe") WinWaitActive("Calculator") Send("{ALTDOWN}") Send("{TAB}") Send("{TAB}") SEND("{ALTUP}") WinWaitActive("Search Results") ; Set the counter Local $count = 0 ; Execute the loop "until" the counter is greater than 5 Do ; Run the File Send("{ENTER}") ; Sleep(800) WinWaitActive("Paint") Send("{CTRLDOWN}") Send("{s}") Send("{CTRLUP}") Sleep(1) Send("{ALTDOWN}") SEND("{F4}") Send("{ALTUP}") WinWaitActive("Search Results") Send("{ALTDOWN}") Send("{TAB}") SEND("{ALTUP}") WinWaitActive("Calculator") Send("{+}1=") Send("{ALTDOWN}") Send("{TAB}") SEND("{ALTUP}") WinWaitActive("Search Results") Send("{DOWN}") ; Increase the count by one $count = $count + 1 Until $count > 199 Send("{ALTDOWN}") Send("{TAB}") Send("{TAB}") SEND("{ALTUP}") Send("{ENTER}") ; MsgBox(0, "Ben's Auto Paint", "DONE 100 OF THEM!") MsgBox(0, "Ben's Auto Paint", "I Have Done: " & $count) ; Finished! Edited May 28, 2013 by bassben
BrewManNH Posted May 28, 2013 Posted May 28, 2013 Here's a way of creating a timer inside your script, if you're going to use a GUI, which is MUCH better than using the calculator to do it. #include <GUIConstantsEx.au3> $hGUI = GUICreate("timer") $cLabel = GUICtrlCreateLabel("00:00", 10, 10, 150, 100) GUICtrlSetFont(-1, 35) GUISetState() $Timer = TimerInit() Global $Count = 0 While GUIGetMsg() <> $GUI_EVENT_CLOSE If TimerDiff($Timer) >= 1000 Then $Minutes = Int($Count/60) $Seconds = Int((($Count/60) - $Minutes) * 60) GUICtrlSetData($cLabel, StringFormat("%02u:%02u", $Minutes,$Seconds)) $Count += 1 $Timer = TimerInit() EndIf Sleep(10) WEndAs to the rest of your code, I have no idea what you're doing in it, but I'm sure there's a lot better way of doing it without using Send. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
bassben Posted May 28, 2013 Author Posted May 28, 2013 the timer looks good. what i am trying to do is reduce the size of around 30,000 photos i have, and i have found that if you open them in paint, and then save it reduces the size buy around 50%. so trying to get some much needed space back. is there a way of making the GUI a free floating window with the counter (Loop counter) in it as well? sorry if these seam like really thick questions but i have no experience with scripting.
BrewManNH Posted May 28, 2013 Posted May 28, 2013 Not sure what you mean by free floating window. Adding the loop counter to the GUI would just require another label and another GUICtrlSetData pointing to that label. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
water Posted May 28, 2013 Posted May 28, 2013 To reduce the size of photos I would use IrfanView. The resulting photos have better quality, it runs faster and supports batch processing. 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
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