Object «script»
Last updated
Last updated
This article is automatically translated from Russian by Google Translator.
Represents methods of controlling script execution and accessing operating system functions.
Sets the end-of-run flag for an event-driven program. As soon as the current event handler completes, the script execution will end.
Returns a random number from the specified range.
The range boundaries must be specified as parameters.
Reads the entire contents of the specified file into a string array.
As a parameter, you must specify the name of the file with the extension.
Deletes the specified file.
As a parameter, you must specify the name of the file with the extension.
Sets the event-oriented program flag. When the script finishes, it is not unloaded from memory but continues to wait for events to occur until one of the handlers calls the "quit" method.
Executes the command transmitted.
As a parameter, you must specify the operating system console command.
Returns the time stamp - the number of milliseconds elapsed since the beginning of January 1, 1970 GMT.
Creates and returns a timer (class QTimer
) that sends a timeout
signal every n milliseconds.
n
is passed as a parameter.
Suspends script execution for the number of milliseconds passed.
The number of milliseconds is passed as a parameter.
Writes a string to a file.
The file name and the line to be written should be specified as parameters.
Method
Description
Sets the end-of-run flag for an event-driven program.
Returns a random number from the specified range.
Считывает всё содержимое указанного файла в массив строк.
Deletes the specified file.
Sets the event-oriented program flag.
Выполняет переданную в качестве параметра команду консоли операционной системы.
Returns the time stamp - the number of milliseconds elapsed since the beginning of January 1, 1970 GMT.
Creates and returns a timer.
Suspends script execution for the number of milliseconds passed.
Writes a string to a file.