I tried it. But it's still not working, and now my audio won't play!
Man, I am making a mess of things.

Here is my code:
Code:
  

starter startup{
...

movie_handle = media_play( "myMovie.avi" , movie_map , 100 );
while( media_playing( movie_handle ) > 0 ){
wait( 1 );
}
if( media_playing( movie_handle ) == 0 ){
media_stop( movie_handle );
splash2.visible = off;
bmap_purge( movie_map );
}

...
}