链接到 PDF 的 Flash 按钮
我正在尝试使用 Actionscript3 在 Flash CS4 中创建一个链接到 PDF 文件的按钮,但是当我发布该链接时,只会将我带到 www.example.com
我还有其他可用于外部网站的链接,只是这个 PDF 按钮没有不工作,任何想法将不胜感激。
这是我的代码。
var pdfURL:URLRequest = new URLRequest("http://www.arrowecs.co.uk/downloads/SecuringVirtualizedDatacenters_ebook.pdf");
//PDF Link
function pdfLink(event:MouseEvent):void {
navigateToURL(pdfURL,"_self");
}
download_btn.addEventListener(MouseEvent.CLICK, pdfLink);
谢谢贾尔斯
I'm trying to create a button in Flash CS4 with Actionscript3 that links to a PDF file but when I publish the link just takes me to www.example.com
I have other links that are working to external sites just this PDF button doesn't work, any ideas would most appreciated.
Here is my code.
var pdfURL:URLRequest = new URLRequest("http://www.arrowecs.co.uk/downloads/SecuringVirtualizedDatacenters_ebook.pdf");
//PDF Link
function pdfLink(event:MouseEvent):void {
navigateToURL(pdfURL,"_self");
}
download_btn.addEventListener(MouseEvent.CLICK, pdfLink);
Thanks
Giles
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论