无法看到“保存到磁盘”按钮

时间:2013-02-22 17:54:40

标签: javascript downloadify

我正在尝试在我的网页上包含downloadify javascript + flash插件,但不知何故,“保存到磁盘”按钮不可见。

工作演示:http://pixelgraphics.us/downloadify/test.html

我的页面:http://www.javaexperience.com/Feedback/index.html

有人可以指出我可能缺少的东西

1 个答案:

答案 0 :(得分:2)

我猜你通往swfimage资产的路径是错误的。

从github页面:

swf: ‘media/downloadify.swf’ Required 
Path to the SWF File. Can be relative from the page, or an absolute path.

downloadImage: ‘images/download.png’ Required 
Path to the Button Image. Can be relative from the page or an absolute path.

您的示例完全复制了这些路径的工作示例。

你的:

media/downloadify.swf
queue_name=downloadify_1361560979222&width=100&height=30&downloadImage=images/download.png

他们的:

media/downloadify.swf
queue_name=downloadify_1361561050132&width=100&height=30&downloadImage=images/download.png

我打赌这些资产不在您服务器的同一个位置。否则你的下载对象就在那里,应该正常工作。