SElib.version()
syntax: |
SElib.version() |
return: |
object - an object with properties that provide information about the version and operating system of the currently executing ScriptEase interpreter. The object returned as the following properties:
.os - string, identifying operating system .se.engineVersion - number, major minor version .se.versionString - string, sub minor version .buildTime - string, date/time of build .bindable - boolean, can bind to executable .security - boolean, uses security features |
description: |
This method provides a variety of useful information about the version of the currently executing ScriptEase interpreter.
The .os string will be something like:
DOS DOS32 MAC NWNLM OS2 WINDOWS WIN32.NTCON WIN32.NTWIN WIN32.95CON WIN32.95WIN UNIX |
see: |
getSEver(), getSEversion(), predefined constants and values VERSION_MAJOR, VERSION_MINOR, VERSION_STRING
|
example: |
var ver; ver = SElib.version(); Screen.writeln(ver.os); Screen.writeln(ver.se.engineVersion); Screen.writeln(ver.se.versionString); Screen.writeln(ver.buildTime); // Displays something like: // WIN32.95CON // 440 // B // Apr 26 2001 16:06:49 |