F1

Nell'esempio seguente viene salvato l'ultimo fotogramma immesso dall'utente nel cookie di oggetto condiviso locale kookie:
codice:
// Get the kookie
var my_so:SharedObject = SharedObject.getLocal("kookie");

// Get the user of the kookie and go to the frame number saved for this user.
if (my_so.data.user != undefined) {
     this.user = my_so.data.user;
     this.gotoAndStop(my_so.data.frame);
}