3

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?

Josh
  • 123
  • 6

2 Answers2

0
<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.

0

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

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

momo
  • 3,885
  • 4
  • 33
  • 54
  • THanks for the response. I actually tried this as well and couldn't get it to work on this application. I have passed in vars using both methods countless times with no problems. At this point I have abandoned this little project :). – Josh Apr 18 '12 at 00:18