vote up 1 vote down star

hi im trying to using flashVars however for some reason there not getting sent to my flex app.

Im embedding my object in a velocity file and here is the object embed code;

<object width="$!WIDTH" height="$!HEIGHT">
	<param name="flashVars" value="maximizeUrl=http://maximizeUrl"/>       
    <param name="movie" value="$!SRC"/>
    <embed src="$!SRC" width="$!WIDTH" height="$!HEIGHT"/>
</object>

any ideas why this is not happening for me?

flag

3 Answers

vote up 2 vote down check

I assume you're having problems with Firefox, which ignores the object tag, and uses the embed tag instead. You need to add the flashvars parameter as an attribute there as well:

<object width="$!WIDTH" height="$!HEIGHT">
        <param name="flashVars" value="maximizeUrl=http://maximizeUrl"/>       
    <param name="movie" value="$!SRC"/>
    <embed src="$!SRC" width="$!WIDTH" height="$!HEIGHT" flashVars="maximizeUrl=http://maximizeUrl"/>
</object>

Alternatively, you could use SWFObject to dynamically generate the embedding code.

link|flag
vote up 0 vote down

I agree with the answer from David, use SWFObject or prefreably use the code that comes with flexbuilder. check out my answer for this question http://stackoverflow.com/questions/452402/how-to-make-javascript-talk-to-flash-ac3-embedded-with-swfobject-2-0#461727

link|flag
vote up 0 vote down

thanks, did the trick adding the flashvars to the embed

link|flag

Your Answer

Get an OpenID
or

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