User Guide
netTextResult() 415
break;
case "application/x-director":
goToNetMovie(theURL);
break;
case "text/html":
goToNetPage(theURL);
break;
default:
alert("Please choose a different item.");
}
} else {
_movie.go(_movie.frame);
}
}
See also
netDone(), netError(), getNetText(), postNetText, preloadNetThing()
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");
}
netTextResult()
Usage
netTextResult(netID)
netTextResult()
Description
Function; returns the text obtained by the specified network operation. If no net ID is specified,
netTextResult returns the result of the last network operation.