netStatus

Usage

netStatus msgString

Description

Command; displays the specified string in the status area of the browser window.

The netStatus command doesn't work in projectors.

Parameters

msgString Required. Specifies the string to display.

Example

This statement would place the string "This is a test" in the status area of the browser the movie is running in:

-- Lingo syntax
on exitFrame
   netStatus "This is a test"
end

// JavaScript syntax
function exitFrame() {
   _movie.netStatus("This is a test");   
}