Description
SWFKit triggers the event while it's about to load the main movie.
Syntax
Application.onGetMovie = function (movie)
Parameters
Remarks
Generally, SWFKit loads the first movie in the movie list. But if this event handler returns true and "movie.value" is assigned with a movie name, SWFKit will load it instead.
Example
Tells SWFKit to load the "test.swf" in attachment list as the main movie
Application.onGetMovie = function (movie)
{
movie.value = getAdditionalFile("test.swf");
return true;
}