Video.IsVisible

boolean Video.IsVisible ( 

string ObjectName )

Example 1

tour_visible = Video.IsVisible("Video Tour");

Checks whether the video object called "Video Tour" is visible and stores true or false in a variable called "tour_visible."

Example 2

bVideo5isVisible = Video.IsVisible("Video5");

Stores true in "bVideo5isVisible" if the "Video5" video object is visible.

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