Video.IsFullScreen

boolean Video.IsFullScreen ( 

string ObjectName )

Example 1

full_screen = Video.IsFullScreen("Intro Video");

Stores true in a variable named "full_screen" if the "Intro Video" video object is running in full screen mode, and false if it isn't.

Example 2

bVideo2FullScreen = Video.IsFullScreen("Video2");

Checks whether the "Video2" video object is in full screen mode, and sets the "bVideo2FullScreen" variable to either true or false accordingly.

Tip: Starting a variable name with "b" is a technique that programmers use to help themselves remember that a variable contains a boolean value.

See also:  Related Actions