flashvars not working on Android Browser

488 views Asked by At

I have a flex app that I need to pass FlashVars into. It works great on desktop browsers(chrome, firefox, ie) but for some reason the flashvar is always undefined when i load it on my Android browser(webkit on a droid incredible).

Has anyone successfully passed flashvars into a swf on an Android Device?

2

There are 2 answers

1
momo On BEST ANSWER

try using a querystring instead - they're passed in identically to FlashVars (loaderInfo.parameters)

your-app.swf?var1=bob&var2=true

0
parawizard On
<param name="FlashVars" value="name=a"

Seems your missing /> in your code on the git. I am not sure if this was the only issue or not but it could be.