Page 1 of 1

exe it!

PostPosted: Thu Oct 28, 2004 10:58 pm
by hobgoblin
is there a code for GE that you can execute other files? or may be close?

and would anyone know a code for flash that the movie closes when it ends? :shock:

PostPosted: Fri Oct 29, 2004 9:24 am
by ingsan
Hi :)

To execute files in Game editor :
On any actor > Event MouseDown > Script editor :
LoadGame ( "anotherGame" ) ;

To exit game in Game editor :
On any actor > Event MouseDown > Script editor :
ExitGame ( "yourGame" ) ;

To exit game in Flash :
On any actor > Action Script :
on ( release )
{
fscommand ( "quit" ) ;
}


:!: works only in swf files. Not HTML :wink:

PostPosted: Fri Oct 29, 2004 9:55 pm
by hobgoblin
ty

PostPosted: Sat Oct 30, 2004 6:57 pm
by hobgoblin
edit:never mind :O

ps: 100 posts woohoo!

PostPosted: Sun Oct 31, 2004 10:07 am
by ingsan
:?: