gottygolly Posted July 16, 2014 Posted July 16, 2014 I'm trying to make a timer to countdown from 3 minutes to 0 but I want it to look nice and all and have it display 3:00 but I can't seem to figure out how to make it so the "00" stays there and it counts down "2:59,2:58 etc..." any tips on something I could do would be very helpful (I'm probably forgetting to check something ) I'm on my phone at the moment so I can't really post any code, i'll try to post some as soon as I can (that is if I haven't got the help I need). Thanks in advance.
careca Posted July 16, 2014 Posted July 16, 2014 (edited) Start() Func Start() $time = 3 $timetosleep = $time * 60 Do $pHour = Int($timetosleep / 3600) $pMin = Int(($timetosleep - $pHour * 3600) / 60) $pSec = $timetosleep - $pHour * 3600 - $pMin * 60 ToolTip(StringFormat('%02d:%02d:%02d', $pHour, $pMin, $pSec)&' Remanining', 300, 0) Sleep(995) $timetosleep -= 1 Until $timetosleep <= 0 ToolTip("") EndFunc ;==>Start Edited July 16, 2014 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
water Posted July 16, 2014 Posted July 16, 2014 Something like this? Global $iSec = 180 For $iSec = $iSec To 0 Step -1 ConsoleWrite(Int($iSec/60) & ":" & StringRight("0" & Mod($iSec, 60) , 2) & @CRLF) Sleep(1000) Next 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
gottygolly Posted July 16, 2014 Author Posted July 16, 2014 Thats exactly what I was trying to do, but I was trying to do it in a gui using a label and everything but i'll use the 2 examples you guys gave me and hopefully figure something out. Thank you for the help.
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