Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to specify a string value in the HTML containing my Flash created using Flex 3. This value is a URL that is used by the Flex code and I want another dev to be able to update it. How do I do this? I'm using Flex Builder 3.

share|improve this question

2 Answers

You could try javascript and ExternalInterface or just use flashVars

If you just have the one parameter you'd like to pass in, it's probably easier to use flashVars.

share|improve this answer

FlashVars would be the easiest solution for this.

Embed code for SWF:

<object width="300" height="250">
    <param name="flashvars" value="var1=hello&var2=world" />
    <embed src="file.swf?var1=hello&var2=world" width="300" height="250" />
</object>

Accessing vars from AS3:

var ext:Object = root.loaderInfo.parameters;

// ext.var1 -> hello
// ext.var2 -> world
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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