Author
Lee Brimelow [www.gotoandlearn.com]Hasan Otuome [hasan.otuome.com]
Version
1.1Usage
import org.thesourcecode.utils.FlashCookie;
var cookie:FlashCookie = new FlashCookie("user",this);
import org.thesourcecode.utils.FlashCookie;
var cookie:FlashCookie = new FlashCookie("user",this);
cookie.bakeCookie({name:"Lee Brimelow",pass:"password"});
cookie.getChip(chip);
var chips:Object = cookie.getChips();
for(i in chips){
trace(chips[i]);
}
cookie.getCookieName();
var flds:Array = ["TextField1","TextField2","TextField3"];//etc,etc
cookie.checkCookie(chip,flds);
chip parameter. If it exists, the TextField
instances identified in the fields Array are
populated with the corresponding data.
var flds:Array = ["TextField1","TextField2","TextField3"];//etc,etc
cookie.addChips(flds);
cookie.eatCookie();