vote up 0 vote down star

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

flag

1 Answer

vote up 0 vote down

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;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.