home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacFormat 2001 October
/
macformat-108.iso
/
Tutorials
/
Flash game tutorial
/
spot the difference final.swf
/
scripts
/
DefineButton2_17
/
BUTTONCONDACTION on(release, keyPress Enter).as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-08-01
|
415 b
|
27 lines
on(release, keyPress "<Enter>"){
if(password eq "level1")
{
gotoAndStop(6);
}
else if(password eq "level2")
{
gotoAndStop(7);
}
else if(password eq "level3")
{
gotoAndStop(8);
}
else if(password eq "level4")
{
gotoAndStop(9);
}
else if(password eq "")
{
gotoAndStop(6);
}
else
{
gotoAndStop(6);
}
}