Flex 팁
so:SharedObject
code2
2008. 11. 17. 19:19
static public var so:SharedObject = SharedObject.getLocal("BabyPrintList");
static public function get downLoadURL():String{
return so.data.url;
}
static public function set downLoadURL(value:String):void{
so.data.url = value;
so.flush();
}
플래시에서 쿠키처럼 사용할 수 있는 공간...
flush() 파일쓰기..