[导入]flash中的"cookie"

 
最简化的代码
ActionScript代码


//创建对象
var myFlashCookie : SharedObject = SharedObject.getLocal("flashCookie1");
//加载数据
if(myFlashCookie.data.tmpTxt)
{
testText.text = myFlashCookie.data.tmpTxt;
}
//保存数据
btnSave.onRelease = function()
{
myFlashCookie.data.tmpTxt = testText.text;
}
//清除数据
btnClear.onRelease = function()
{
...
文章来源:http://www.sadbus.com/Blog/HTML/2008_12/20081212170921.htm

posted on 2008-12-13 01:09  伤心巴士  阅读(89)  评论(0)    收藏  举报