STF.getComputerName()

Availability

Flash MX 2004 or 8 swf w/ ScreenTimeScreenSaver component + ScreenTime 3.0 / 3.0

Usage

STF.getComputerName() : String

Parameters

None.

Returns

A string.; This value is returned as a parameter to the registered callback. See the example below or STF.registerCallBack() for more information on return variable handling.

Description

Method; Returns the computer name.

Example

The following example returns the computer name.

var computerName_str = "----";
function onGetComputerNameReturn(returnValue:Boolean) {
	computerName_str = returnValue;
}
STF.registerCallBack("getComputerName", onGetComputerName, this);
STF.getComputerName();