共享物件俗稱「超級
cookie
」,同乙個域中不同
swf 檔案之間可以通過
flash.net.sharedobject
讀寫.sol
檔案資料,儲存在客戶端的
.sol
檔案是一種特殊的二進位制編碼檔案。
刪除共享物件中儲存的資料——
注意事項:在
as3 中我們刪除資料的一班方法是給資料賦值
null
或者undefined
,但是lso 卻不行,因為
lso 中
null
和undefined
都還是有效值。應該使用
delete
方法(delete example.data.somedata
)來刪除
somedata
屬性,或者使用
clear
來刪除整個共享物件(其實就是刪除
.sol
檔案example.clear()
)。特別需要注意的是清楚資料後,共享物件的引用仍然是有效的,還是可以重新新增資料進行儲存。
不同flash
之間共享乙個
.sol
檔案—— 設定
getlocal()
方法的第二個引數,把它設定成
」/」 或者其他的絕對路徑。這樣建立的共享物件可以被同乙個域中的其他
swf 訪問。
var count:sharedobject = sharedobject.getlocal("count","/");//
新增乙個
if(count.data.value==undefined)else
var tf:textfield = new textfield();
tf.autosize = textfieldautosize.left;
tf.text = "this is the "+count.data.value + " time" + count.size + count.tostring() + count.data.vari;
addchild(tf);
AS3處理物件
as3處理物件 2009年07月14日 屬性 屬性表示某個物件中繫結在一起的若干資料塊中的乙個。song 物件可能具有名為 artist 和 title 的屬性 movieclip 類具有 rotation x width 和 alpha 等屬性。您可以像使用單個變數那樣使用屬性 事實上,可以將屬性...
AS3學習筆記 1 6
首先 say hello 一下,在輸出面板 trace 出 hello world 複習一下as2的類 class net.eidiot.learnas3.helloas2 為了讓這段 工作,需要在flash ide裡場景的第一幀輸入 import net.eidiot.learnas3.hello...
as3 濾鏡學習筆記
1.colormatixfilter 這個類用來轉變每個畫素的顏色,具體轉變的演算法用乙個matrix來實現。比如var cmf colormatrixfilter new colormatrixfilter 0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,1,0,0,0,0...