home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 48
/
cdrom_image.iso
/
Games
/
alex_trax.swf
/
scripts
/
DefineSprite_329
/
frame_1
/
DoAction.as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2007-10-01
|
253 b
|
13 lines
if(!inited)
{
inited = true;
xOff = _X;
yOff = _Y;
v = (Math.random() + 1) * 0.003;
dx = (Math.random() + 1) * 10;
this.onEnterFrame = function()
{
this._x = this.xOff + Math.sin(getTimer() * this.v) * dx;
};
}