home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 June / Chip_2004-06_cd1.bin / program / flash / images / pamatovak.swf / scripts / frame_1 / DoAction.as
Text File  |  2004-02-15  |  611b  |  26 lines

  1. var mojeuloziste = SharedObject.getLocal("Cookie");
  2. if(mojeuloziste.data.Jmeno != null)
  3. {
  4.    Jmeno.text = mojeuloziste.data.Jmeno;
  5.    Bydliste.text = mojeuloziste.data.Bydliste;
  6. }
  7. else
  8. {
  9.    Jmeno.text = "zadejte";
  10.    Bydliste.text = "zadejte";
  11. }
  12. btnSmazat.onPress = function()
  13. {
  14.    mojeuloziste.data.Jmeno = null;
  15.    mojeuloziste.data.Bydliste = null;
  16.    mojeuloziste.flush();
  17.    Jmeno.text = "zadejte";
  18.    Bydliste.text = "zadejte";
  19. };
  20. btnZapsat.onPress = function()
  21. {
  22.    mojeuloziste.data.Jmeno = Jmeno.text;
  23.    mojeuloziste.data.Bydliste = Bydliste.text;
  24.    mojeuloziste.flush();
  25. };
  26.