home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
600 Games
/
600games.iso
/
Nave
/
AitchuTheAbduction.swf
/
scripts
/
frame_7
/
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
|
2005-11-10
|
263 b
|
15 lines
Vague = function()
{
this.vitesse = 0;
};
Vague.prototype = new MovieClip();
Object.registerClass("VagueClip",Vague);
Vague.prototype.onEnterFrame = function()
{
this._x -= this.vitesse;
if(this._x < -300)
{
this._x = 850;
}
};