Jump to content

[Solved] Time Management


 Share

Recommended Posts

I need to do a checksum, till the screen changes, but if the screen does not change in 10 minutes, i need it to call Func2.

Can some1 show me how to code the time management into this, or atleast point me to the correct references in the help file?

Func _Func1()
    Do
        $checksum = PixelChecksum(512, 593, 771, 619)
        ;if $checksum = 4028339022 has not been met in 10 minutes Then
            _Fun2()
    Until $checksum = $number
EndFunc

Func _Func2()
    $do_something_else
    _Func1
EndFunc

Thanks for any help.

Edited by Realm

My Contributions: Unix Timestamp: Calculate Unix time, or seconds since Epoch, accounting for your local timezone and daylight savings time. RegEdit Jumper: A Small & Simple interface based on Yashied's Reg Jumper Function, for searching Hives in your registry. 

Link to comment
Share on other sites

You'll want these two:

Local $timer = TimerInit() ;Starts timer
TimerDiff($timer); checks how many milliseconds since the timer started

Edited by Fulano

#fgpkerw4kcmnq2mns1ax7ilndopen (Q, $0); while ($l = <Q>){if ($l =~ m/^#.*/){$l =~ tr/a-z1-9#/Huh, Junketeer's Alternate Pro Ace /; print $l;}}close (Q);[code] tag ninja!

Link to comment
Share on other sites

You'll want these two:

Local $timer = TimerInit() ;Starts timer
TimerDiff($timer); checks how many milliseconds since the timer started

Perfect, Thank you once again Fulano!

My Contributions: Unix Timestamp: Calculate Unix time, or seconds since Epoch, accounting for your local timezone and daylight savings time. RegEdit Jumper: A Small & Simple interface based on Yashied's Reg Jumper Function, for searching Hives in your registry. 

Link to comment
Share on other sites

  • Moderators

Hi guys,

Sorry to be pedantic, but TimerInit does not "start a timer". It gets the timestamp for that instant and TimerDiff works out the difference between the time it is called and the timestamp. :idea:

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

sorry to ask, I cant really test it at the moment, part of a much larger unfinished script, but does this look right?

Func _Func1()
    $time = TimerInit()
    Do
        IF TimerDiff($time) >= 600000 Then
            _Func2()
        Else
            $checksum = PixelChecksum(512, 593, 771, 619)
    Endif
    Until $checksum = $number
EndFunc

Func _Func2()
    $do_something_else
    _Func1
EndFunc

My Contributions: Unix Timestamp: Calculate Unix time, or seconds since Epoch, accounting for your local timezone and daylight savings time. RegEdit Jumper: A Small & Simple interface based on Yashied's Reg Jumper Function, for searching Hives in your registry. 

Link to comment
Share on other sites

Hi guys,

Sorry to be pedantic, but TimerInit does not "start a timer". It gets the timestamp for that instant and TimerDiff works out the difference between the time it is called and the timestamp. :idea:

M23

Quite so, sorry about that.

#fgpkerw4kcmnq2mns1ax7ilndopen (Q, $0); while ($l = <Q>){if ($l =~ m/^#.*/){$l =~ tr/a-z1-9#/Huh, Junketeer's Alternate Pro Ace /; print $l;}}close (Q);[code] tag ninja!

Link to comment
Share on other sites

Nope that was not right, but this is.

Func _Func1()
    Local $time = TimerInit()
    Do
        $delay = TimerDiff($time)
        IF $delay >= 600000 Then
            _Func2()
        Else
            $checksum = PixelChecksum(512, 593, 771, 619)
    Endif
    Until $delay >= 60000
    Exit
EndFunc

Func _Func2()
    $do_something_else
    _Func1
EndFunc

@Fulano, Thanks for pointing me in the right direction

@Melba23, Thanks for correcting how the statements actually work, I was able to figure out where i went wrong!

My Contributions: Unix Timestamp: Calculate Unix time, or seconds since Epoch, accounting for your local timezone and daylight savings time. RegEdit Jumper: A Small & Simple interface based on Yashied's Reg Jumper Function, for searching Hives in your registry. 

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...