Jump to content

A Question ( Doing Timer )


 Share

Recommended Posts

First of all ı'm sorry for my bad english.

I want to do a timer but ı don't know how ı can do.Because ı am a little new at autoit.

Sample ;

Hour : Minute : Second

01:00:00

Start

00:59:59

.

.

.

.

.

00:01:09

.

.

.

00:00:00

If ı couldn't explain , ı'm sorry.

Link to comment
Share on other sites

First of all ı'm sorry for my bad english.

I want to do a timer but ı don't know how ı can do.Because ı am a little new at autoit.

Sample ;

Hour : Minute : Second

01:00:00

Start

00:59:59

.

.

.

.

.

00:01:09

.

.

.

00:00:00

If ı couldn't explain , ı'm sorry.

try this to get you started

For $a = 0 To 0 Step -1
        For $b = 59 To 0 Step -1
            For $c = 59 To 0 Step -1
                
                ToolTip($a & ":" & $b & ":" & $c, 0, 0)
                Sleep(1000)
            Next
        Next
    Next

All by me:

"Sometimes you have to go back to where you started, to get to where you want to go." 

"Everybody catches up with everyone, eventually" 

"As you teach others, you are really teaching yourself."

From my dad

"Do not worry about yesterday, as the only thing that you can control is tomorrow."

 

WindowsError.gif

WIKI | Tabs; | Arrays; | Strings | Wiki Arrays | How to ask a Question | Forum Search | FAQ | Tutorials | Original FAQ | ONLINE HELP | UDF's Wiki | AutoIt PDF

AutoIt Snippets | Multple Guis | Interrupting a running function | Another Send

StringRegExp | StringRegExp Help | RegEXTester | REG TUTOR | Reg TUTOT 2

AutoItSetOption | Macros | AutoIt Snippets | Wrapper | Autoit  Docs

SCITE | SciteJump | BB | MyTopics | Programming | UDFs | AutoIt 123 | UDFs Form | UDF

Learning to script | Tutorials | Documentation | IE.AU3 | Games? | FreeSoftware | Path_Online | Core Language

Programming Tips

Excel Changes

ControlHover.UDF

GDI_Plus

Draw_On_Screen

GDI Basics

GDI_More_Basics

GDI Rotate

GDI Graph

GDI  CheckExistingItems

GDI Trajectory

Replace $ghGDIPDll with $__g_hGDIPDll

DLL 101?

Array via Object

GDI Swimlane

GDI Plus French 101 Site

GDI Examples UEZ

GDI Basic Clock

GDI Detection

Ternary operator

Link to comment
Share on other sites

$woof = TimerInit()
While 1
    ToolTip(StringTrimRight(Round(TimerDiff($woof)), 3))
    Sleep(750)
WEnd

this'll count up... you could probably modify it to make it seem like it's counting down

Edit: This'll count up, and it'll seperate the values into hour:minutes:seconds

$Timer = TimerInit()
While 1
    $Time = StringTrimRight(Round(TimerDiff($Timer)), 3)
    ToolTip(Floor($Time / 3600) & ":" & Floor($Time / 60) - (Floor($Time / 3600) * 60) & ":" & ($Time - (Floor($Time / 60) * 60)))
    Sleep(1)
WEnd

if you change this line: $Time = StringTrimRight(Round(TimerDiff($Timer)), 3)

to something like this: $Time = 3600 - StringTrimRight(Round(TimerDiff($Timer)), 3)

that makes it count down (from an hour at 3600 seconds)

nitekrams way works well, but the sleep doesn't sleep for exactly 1 second, and it still takes some time for the rest of the script to execute, so after a while there'll be a noticeable gap if you checked that countdown with a real counter, or something, not saying it's bad...

Edited by mistersquirrle

We ought not to misbehave, but we should look as though we could.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...