go_to_movie_end

Declaration

go_to_movie_end (frame, name: STRING)

Description

Finds movie name inside frame, stops it and fast forwards to the end.

See Also

go_to_movie_start
find_movie
multimedia functions

Example

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