Hi,

I had this before, it's simple really, I had a var on the exe file, example,

var internal:String = "execute";

and in the external swf files i looked for the var.

on frame 1 of each external swf

stop();
if (_root.internal == "execute")
{
goto next frame
}
else
{
fscommand("quit");
or goto and stop end frame if fscommand unable to work in browser mode;
}


I'm sure you can figure it out