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
