2005-6-20 15:30
xueyue
在Flash中添加“设为首页”、“加为收藏”
[color=red]设为首页[/color]
on (release) {
getURL ("javascript:void(document.links.style.behavior='url(#default#homepage)');void document.links.setHomePage('http://www.visionunion.com');", "_self", "POST");
}
注意要将网页中的flash的ID号命名为"links"
[color=red]加入收藏[/color]
on (release) {
getURL("javascript:window.external.AddFavorite('http://www.visionunion.com','视觉同盟')");
}