/13/ local data storage (SharedObject)

player1Info_so = SharedObject.getLocal("player1");


player1Info_so.data.highScore = 1200;


var userProfile_so = SharedObject.getLocal("userProfile");
trace(userProfile_so.data.totalVisitTime);
var then = 0;

this.onEnterFrame = function () {
  var now = getTimer();
  var frameTime = now - then;
  userProfile_so.data.totalVisitTime += frameTime;
  this.then = now;
}