play_movie (frame, name: STRING)
Finds the movie name inside frame and plays it. This does not restart the movie, use go_to_movie_start first to go to the beginning.
find_movie
stop_movie
is_movie_playing
multimedia
functions
script restart_intro_movie is movie_frame := find_movie ('intro_logo') if is_movie (movie_frame, 'intro_logo') then -- in case the frame is empty stop_movie (movie_frame, 'intro_logo') go_to_movie_start (movie_frame, 'intro_logo') play_movie (movie_frame, 'intro_logo') end end