Jump to content

Simple Question: slowing down loop time


 Share

Recommended Posts

Hey guys,

i was wondering if i can slow down the check time of a certain loop (Do ... Until).

I can't find it on the forums nor Help file.

If you still don't know what i mean: I'm searching for a command (probably an Opt command) that can change the check time from the Do... Until loop

(it is now on: check every ~ 1 millisecond or so)

Thanks for watching and helping !

Immensee

Link to comment
Share on other sites

No, that doesn't work on my script :)

I've tried that already ofcourse!

A sleep will hold the loop for X seconds, but the commands will still be executed after that.

I want the loop repeating (so no sleep) on a certain heartbeat. every 1000 ms or so.

immensee

Link to comment
Share on other sites

  • Developers

Maybe you want to use AdlibEnable() to have a separate Func ran at a certain interval ?

lastig hé om een probleem goed uit te leggen in het engels. :)

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • Moderators

Immensee,

How about adding something like this into your main loop:

While 1

If TimerDiff($iTimer) > 1000 Then
    ; Your function
    $iTimer = TimerInit()
EndIf

; Other code

WEnd

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

No, none of the above has helped :think:, oh well, i think it's impossible then...

but thanks for the help !! :)

Maybe you want to use AdlibEnable() to have a separate Func ran at a certain interval ?

lastig hé om een probleem goed uit te leggen in het engels. :lmao:

Jos

Ja moeilijk XD

Immensee

Link to comment
Share on other sites

  • Moderators

Immensee,

Do not give up so easily. Post some code and then we can perhaps make different suggestions. I for one cannot see why the TimerInit/TimerDiff method does not work for you - it does for me in several scripts. So a look at your script might well give us a clue!

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

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