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 \"men
if (root.name == "root1") //standalone
In the constructor of loaded swf:
if (stage && parent == stage) {/*I'm standalone*/}
Or maybe if (parent is Loader) will also work (vice versa logic)
if (parent is Loader)
if (root.parent && root.parent == stage) { // Standalone }