Share Pastebin
Guest
Public paste!

ta

By: a guest | Feb 9th, 2010 | Syntax: None | Size: 0.38 KB | Hits: 9 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. import flash.net.SharedObject;
  2. var so:SharedObject = SharedObject.getLocal("userData");
  3. so.data.physhealthone= "Physical Health One";
  4. so.data.physhealthtwo= "Physical Health Two";
  5. so.flush(); // writes changes to disk
  6.  
  7. var physhealthone:String = so.data.physhealthone.toString();
  8. var physhealthtwo:String = so.data.physhealthtwo.toString();
  9.  
  10. physhealthone.text= so.data.physhealthone