■ ローカルにデータを保存するには

//メインタイムラインのフレームアクション
my_so = SharedObject.getLocal("visitor");
if (my_so.data.counter == undefined) my_so.data.counter = 1;
else my_so.data.counter++;
msg_txt.text = my_so.data.counter + "回目の訪問です";