sleep

To force Ninox to wait for a given number of milliseconds before continue running the code

With this function, you can put Ninox on hold before continuing to execute your script. You can use this delay for example to show a note or a warning.

Using this function, please keep in mind that you stop the entire database for the requested time.

Syntax

sleep(number)

Return

void

Examples

sleep(2000)

Result: Ninox is on hold for 2 seconds.

Last updated