在Flash中实现“设为首页”和“加为收藏”功能是使用Get URL结合javascript来实现的。
设为首页代码:
以下是引用片段:
on (release) {
getURL("javascript:void(document.links[0].style.behavior='url(#default#homepage)');void document.links[0].setHomePage('http://homepage.yeskyk.com/');", "_self", "POST");
}
加为收藏代码:
以下是引用片段:
on (release) {
getURL("javascript:window.external.AddFavorite('http://homepage.yesky.com/','网页陶吧')");
}