on_click_movie

Description

This event is fired every time a movie is clicked. For any movie, a named event is also fired. For example, 'movie1' fires the events 'on_click_movie', then 'on_click_movie1_movie'. The name of the movie is NOT the file name, but the name you assigned as a property when you made the movie tag in the page.

See also

on_stop_movie

Example

-- respond to both of these events to create
-- a title page that automatically continues 
-- then the intro movie is done and also continues
-- when the user clicks the movie.

script on_click_intro_movie is
  load_item_in_frame ('title_page', 'main_window_frame')
end

script on_stop_intro_movie is
  load_item_in_frame ('title_page', 'main_window_frame')
end