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
Wrap
Text File
|
2004-02-15
|
611b
|
26 lines
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();
};