netStatusmsgString
Command; displays the specified string in the status area of the browser window.
The netStatus command doesn't work in projectors.
msgString Required. Specifies the string to display.
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");
}