• Downloading & Installing
• Running
• Examples
Cryptography
• hashSHA256
• hmacSHA256
• hashSHA512
• hmacSHA512
• hashMD5
• hmacMD5
File System
• fileExists
• fileRead
• fileWrite
• folderExists
• unzip
• zip
Networking
• curlExecute
• nsapiExecute
Operating System
• shellExecute
Text Encoding
• base64Decode
• base64Encode
Utilities
• abort / halt / quit
• info
• infoRefresh
• sleep
• stringIndent
• uuidGenerate
Pauses the application for a specified number of milliseconds.
Note that this is the same example used for the infoRefresh function.
writeln( "The time is: " + info.date.longTime ); writeln; // Pause for 5 seconds... sleep( 1000 * 5 ); infoRefresh(); writeln( "The time is now: " + info.date.longTime ); writeln;
Here's an example of the output.
The time is: 10:40:10 AM The time is now: 10:40:15 AM
© Copyright 2025 Tim Dietrich. | Legal Info