Flash中设为首页与加入收藏的方法

发布时间:2019-11-17编辑:脚本学堂
本文介绍下,在flash中添加设为首页与加为收藏的方法,有需要的朋友参考下。

在Flash中实现“设为首页”和“加为收藏”,可以使用Get URL结合JavaScript来实现。

1,设为首页:

on (release) { 
getURL("javascript:void(document.links[0].style.behavior='url(#default#homepage)');
void document.links[0].setHomePage('http://www.jb200.com/');", "_self", "POST"); 
} 

2,加为收藏:

on (release) { 
getURL("javascript:window.external.AddFavorite('http://www.jb200.com/','脚本学堂')"); 
}