Reputation:
I have a Flash movie I'm trying to return in an App Engine handler, but I'd like to dynamically embed Flashvars before returning the .swf file.
Basically trying to get it so a request for:
http://app.appspot.com/someurixyz
returns the equivalent of:
http://app.appspot.com/xyz.swf?myvar=something
Upvotes: 0
Views: 171
Reputation:
Guess I should have thought about this a little more before posting..
Was able to accomplish this by reading in the url that the SWF file was loaded from:
In AS3:
url = this.root.loader.loaderInfo.url;
Upvotes: 1