I'd like to know how to access a variable from within an external swf that has
been passed in the URL upon calling the external swf itself.
For example, I could pass a variable to a external.swf as follows:
this.createEmptyMovieClip(?mExternalSWF?,this.getNextHighestDepth());
var mlSWFLoader:MovieClipLoader = new MovieClipLoader();
mlSWFLoader.loadClip(?external.swf?varToExt=20?, mExternalSWF);
How do I load varToExt from within external.swf?
Thanks!
Andrew