0

我有一个使用 Adob​​e Flex 创建的 SWF 文件,但似乎无法将其正确嵌入 HTML 页面中。如果我使用另一个 SWF 文件并使用它,它会一直有效。我的 SWF 文件很大 (1 MB),而另一个文件很小 (25 KB)。但是,我可以等待 5-10 分钟,服务器连接速度非常快,但它仍然永远不会加载。

我需要对 SWF 做些什么才能使其正常启动吗?我的 SWF 几乎从不运行。

想法?

4

1 回答 1

2

I see two posible problems here:

  • Browser is not able to download your SWF file
    • You can check it if you add SWF file name directly into browser URL. For example http://your_domain/page/test.swf. If you will get "Not Found" error then your file was uploaded incorrectly
  • You did something wrong when embeding SWF file into HTML
    • If you have a working file then you can try to overwrite it with new one (leave original file name). Problem can be in sigle symbol in new file name, even letter case should match.
    • Or you can try using swfobject library for embeding flash into html
于 2009-10-16T18:33:01.893 回答