Originally Posted By: Lukas
Well, I guess while you are playing your video, you have a loop like this:

while(media_playing(yourhandle)) wait(1);

If you use media_stop, it should also cancel your loop.
how does that exactly skip or stop anything using spacebar?

try something like
Code:
void game_start(){
   
}

void game_intro(){
  
  var hnd_intro = media_play("intro.wmv",NULL,100);
  while(media_playing(hnd_intro) && (!key_space)){
    wait(1);
  }
  game_start();
}

void main(){
  //...blah
  wait(1);
  game_intro();
}

hope this helps

*untested*