flashvars 不适用于 Android 浏览器
我有一个 Flex 应用程序,需要将 FlashVars 传递到其中。 它在桌面浏览器(chrome、firefox、ie)上工作得很好,但由于某种原因,当我将它加载到我的 Android 浏览器(令人难以置信的 droid 上的 webkit)上时,flashvar 总是未定义。
有人在 Android 设备上成功将 flashvars 传递到 swf 中吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用查询字符串 - 它们以相同的方式传递给 FlashVars (loaderInfo.parameters)
your-app.swf?var1=bob&var2=true
try using a querystring instead - they're passed in identically to FlashVars (loaderInfo.parameters)
your-app.swf?var1=bob&var2=true
看来你失踪了>>在 git 上的代码中。我不确定这是否是唯一的问题,但可能是。
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.