home *** CD-ROM | disk | FTP | other *** search
- var mojeuloziste = SharedObject.getLocal("Cookie");
- if(mojeuloziste.data.Jmeno != null)
- {
- Jmeno.text = mojeuloziste.data.Jmeno;
- Bydliste.text = mojeuloziste.data.Bydliste;
- }
- else
- {
- Jmeno.text = "zadejte";
- Bydliste.text = "zadejte";
- }
- btnSmazat.onPress = function()
- {
- mojeuloziste.data.Jmeno = null;
- mojeuloziste.data.Bydliste = null;
- mojeuloziste.flush();
- Jmeno.text = "zadejte";
- Bydliste.text = "zadejte";
- };
- btnZapsat.onPress = function()
- {
- mojeuloziste.data.Jmeno = Jmeno.text;
- mojeuloziste.data.Bydliste = Bydliste.text;
- mojeuloziste.flush();
- };
-