home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
600 Games
/
600games.iso
/
Aventura
/
freaky-fun.swf
/
scripts
/
DefineSprite_304
/
frame_1
/
DoAction.as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-06-07
|
221 b
|
16 lines
n = 1;
this.onEnterFrame = function()
{
moving._x += n;
count++;
if(count == 150)
{
count = 0;
n = - n;
}
if(moving.hitTest(_root.hero))
{
_root.hero._x += n;
}
};