show_movie

Declaration

show_movie (frame, name: STRING)

Description

Finds movie name inside frame and shows it.

See Also

find_movie
is_movie_visible
hide_movie
set_movie_visible
multimedia functions

Example

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