显示了 SWF 文件,但 xml 数据未加载到嵌入 aspx 页面的 swf 中

发布于 2024-08-08 01:39:56 字数 72 浏览 3 评论 0原文

Flash 地图调用包含数据的 xml 外部文件 该地图在 Firefox 中显示并且工作正常,但不会显示任何 xml 数据 帮助

the flash map calls the xml external file which contains data
the map shows in firefox and works a treat but wont show any of the xml data
Help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

懒猫 2024-08-15 01:39:56

它在 IE 中不显示的问题是由于嵌入代码所致,在您的 index.aspx 页面中,请确保嵌入代码匹配,目前它不匹配:

  <param name="movie" value="Index.aspx_files/FlashMap.swf">  

  <param name="quality" value="high">

   <param name="flashvars" value="file=/Controls/Home/menuworld.xml">  

   <embed src="Index.aspx_files/FlashMap.swf" quality="high" flashvars="file=/Controls/Home/menuworld.xml" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="835" height="235">  

路径“VALUE”需要匹配,FIREFOX在嵌入标记中使用src,IE使用param标记中的值,这就是它在IE中不起作用的原因

The problem with it not displaying in IE is due to the embed code, in your index.aspx page, make sure that the embed code matches, currently it doesn't:

  <param name="movie" value="Index.aspx_files/FlashMap.swf">  

  <param name="quality" value="high">

   <param name="flashvars" value="file=/Controls/Home/menuworld.xml">  

   <embed src="Index.aspx_files/FlashMap.swf" quality="high" flashvars="file=/Controls/Home/menuworld.xml" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="835" height="235">  

The paths "VALUE" need to match, FIREFOX used the src in the embed tag, IE uses the value in the param tag, that’s why it didnt work in IE

隱形的亼 2024-08-15 01:39:56

您很可能需要对 xml 数据使用代理。如果由于“沙箱安全违规”而来自外部域,则不会显示。

Most likely you need to use a proxy for your xml data. It will not display if it comes from an outside domain due to a "sandbox security violation".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文