在flash中实现[设为首页]和[加入收藏]

设为首页:
on (release) {
getURL("JavaScript:document.body.style.behavior=\"url(#default#homepage)\";document.body.setHomePage(\"http://www.ee369.com\")", "_self");
}  

加入收藏:
on (release) {
getURL("JavaScript:void window.external.AddFavorite(\"http://www.ee369.com\",\"佛山人的生活网\")","_self");
}  


getURL()里面只是网页设计中最平常的代码, 关健就在\"......\"
在geturl()里面表达"要用\"的. 不然就识别不出来.导致不能完成指定的请求.
原文地址:https://www.cnblogs.com/MaxIE/p/473881.html