Monday, February 16, 2009

getURL in as3

As we all know, there's no more getURL in as3. Below is the replacement of getURL,

navigateToURL(new URLRequest("http://google.com"), "_blank");

cheers!

How to set cookies in flash - as3 (Flash SharedObject)

the codes:

var sharedObj:SharedObject = SharedObject.getLocal("anyname");
sharedObj.data.object1 = "whateverYouWantToStore";
sharedObj.data.object2 = "whateverYouWantToStore";
sharedObj.flush();
sharedObj.close();