在Flash中添加“设为首页”、“加为收藏”的方法
发布时间:2016-12-28 来源:查字典编辑
摘要:如何?在Flash中实现“设为首页”和“加为收藏”功能是使用GetURL结合JavaScript来实现的。设为首页代码:on(release...
如何?在Flash中实现“设为首页”和“加为收藏”功能是使用GetURL结合JavaScript来实现的。
设为首页代码:
on(release){
getURL("javascript:void(document.links[0].style.behavior='url(#default#homepage)');voiddocument.links[0].setHomePage('http://www.showhs.com/');","_self","POST");
}
加为收藏代码:
on(release){
getURL("javascript:window.external.AddFavorite('http://www.jb51.net/','查字典教程网')");
}
其实很简单,就上面这么两段代码。。[Stage.showmenu=false]