hide_movie

Declaration

hide_movie (frame, name: STRING)

Description

Finds movie name inside frame and hides it.

See Also

find_movie
is_movie_visible
show_movie
set_movie_visible
multimedia functions

Example

script hide_intro_movie is
  movie_frame   :=   find_movie ('intro_logo')
  if is_movie (movie_frame, 'intro_logo') then
      -- in case the frame is empty
    hide_movie (movie_frame, 'intro_logo')
  end
end