快速业务通道

在Flash MX中实现设为首页和加入收藏夹

作者 佚名技术 来源 服务器技术 浏览 发布时间 2012-07-11


现在很多的网站不管是大型的网站还是小的个人主页都有设为首页和加入收藏夹的功能,尽管实用性值得探讨但还是为网页增加了效果。那么在Flash动画中能不能也增加这样的功能呢?又应该如何实现这两个功能呢?下面来学习如何实现这两个效果。
在Flash中我们是通过ActionScript脚本来实现这两个效果,即将页面设为首页和加入收藏夹这里有两种方法。 第一种方法是通过按钮的getURL实现,只要在按钮上加入相应的ActionScript脚本即可。脚本如下:
设为首页
on (release) { getURL("JavaScript :void(document.links[0].style.behavior=''''''''''''''''url(#default#homepage)'''''''''''''''');void document.links[0].setHomePage(''''''''''''''''http://您的网站地址/'''''''''''''''');", "_self", "POST"); } 加入收藏夹
on (release) { getURL("Javascript :void window.external.AddFavorite(''''''''''''''''http://您的网站地址'''''''''''''''',''''''''''''''''网站名称'''''''''''''''');", "_self", "POST"); } 第二种方法是通过用fscommand的方法,比上面一个要复杂一些。首先在Flash的按钮上添加ActionScript脚本代码
设为首页
on (release) { fscommand("setHomePage", "http://您的网站地址"); }加入收藏夹
on (release) { fscommand("addFavorite", "http://网站地址|网站名称"); }
在发布Flash动画时选上HTML,在Template下拉菜单中选择Flash with fscommand,发布出html页面接着要对发布出来的HTML页面进行修改,在HTML代码中找到这么一段
// Handle all the the FSCommand messages in a Flash movie function sethomepage_DoFSCommand(command, args) { }
这一段修改成// Handle all the the FSCommand messages in a Flash movie function sethomepage_DoFSCommand(command, args) { var sethomepageObj = InternetExplorer ? sethomepage : document.sethomepage; if (command == "setHomePage") { document.links[0].style.behavior = "url(#default#homepage)"; document.links[0].setHomePage(args); } else if (command == "addFavorite") { args = args.split("|"); window.external.AddFavorite(args[0], args[1]);
源文件:
点击浏览该文件 关键词:

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号