在Flash中添加“设为首页”、“加为收藏”的方法
作者:
在Flash中添加“设为首页”、“加为收藏”的方法
如何?在Flash中实现“设为首页”和“加为收藏”功能是使用Get URL结合JavaScript来实现的。
设为首页代码:
on (release) {
getURL("javascript:void(document.links[0].style.behavior='url(#default#homepage)');void document.links[0].setHomePage('http://www.showhs.com/');", "_self", "POST");
}
加为收藏代码:
on (release) {
getURL("javascript:window.external.AddFavorite('https://www.jb51.net/','脚本之家')");
}
其实很简单,就上面这么两段代码。。[Stage.showmenu=false]
设为首页代码:
on (release) {
getURL("javascript:void(document.links[0].style.behavior='url(#default#homepage)');void document.links[0].setHomePage('http://www.showhs.com/');", "_self", "POST");
}
加为收藏代码:
on (release) {
getURL("javascript:window.external.AddFavorite('https://www.jb51.net/','脚本之家')");
}
其实很简单,就上面这么两段代码。。[Stage.showmenu=false]
您可能感兴趣的文章:
- 设为首页与加入收藏的JS代码(多浏览器支持)
- javascript 设为首页与加入收藏兼容多浏览器代码
- javascript 加入收藏、设为首页(IE,firefox兼容脚本之家版)
- 在Flash 设为首页 加为收藏实现代码
- JS 强制设为首页的代码
- javascript在firefox下设为首页的代码
- Flash 中"设为首页"代码
- 设为首页 加入收藏的js代码
- 强制设为首页代码
- js Firefox 加入收藏夹功能代码 兼容Firefox 和 IE
- 一个可以兼容IE FF的加为首页与加入收藏实现代码
- javascript addBookmark 加入收藏 多浏览器兼容
- 通用的加入收藏夹代码支持IE Firefox等浏览器
- 设为首页加入收藏兼容360/火狐/谷歌/IE等主流浏览器的代码