I have two swf's. One "show" of some sort, and one "menu" that acts as a loader for "shows". The "show" swf can run in its own respect, or by being loaded via the "menu".
Is there a way to determine, if the "show" is run stand-alone or as loaded into the "menu"?
One solution is to have the "menu's" Loader
object set a variable on the loaded "show", like myLoader.content.thisIsFromMenu = true;
and then checking in the "show", if such a variable exists and is true. BUT I was wondering, if there is any more generic way, that would not require for the "show" to know anything about the "menu" to determine, if it is loaded into a swf or played by itself?