edwarddd Posted July 8, 2007 Posted July 8, 2007 Can I make it so that when its.. 23:00:00 a noise rings, or a msg box appears?.. or something?
Valuater Posted July 8, 2007 Posted July 8, 2007 Maybe...; Time Machine #2 ; Hours & Minutes ; Author Valuater $start = @HOUR & ":" & @MIN + 2 ; for testing While 1 $start2 = @HOUR & ":" & @MIN If $start = $start2 Then Run("notepad.exe") ExitLoop EndIf ToolTip("Start Time = " & $start & @CRLF & "Real Time = " & $start2, 20, 20, "Time Machine", 1) Sleep(2000) WEnd Exitthere are 3 more there at the bottom of this page Autoit Wrappers8)
Xand3r Posted July 8, 2007 Posted July 8, 2007 While 1 If @HOUR=23 And @MIN=0 And @SEC=0 Then MsgBox(0 , "" , "") EndIf Sleep(10) WEnd Only two things are infinite, the universe and human stupidity, and i'm not sure about the former -Alber EinsteinPractice makes perfect! but nobody's perfect so why practice at all?http://forum.ambrozie.ro
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