[Tools][Expand/Collapse All]Note that automatic extraction of ActionScript 3 is still pretty much unsupported by swfchan. AS1/AS2 works okay most of the time.Frame 28 (17 B)
gotoAndPlay (2);
Symbol 29 MovieClip Frame 1 (198 B)
function dateFix() {
dt = new Date();
return(Date.UTC(dt.getFullYear(), dt.getMonth(), dt.getDay(), dt.getHours(), dt.getMinutes(), dt.getSeconds(), dt.getMilliseconds()));
}
old = dateFix();
Symbol 29 MovieClip Frame 3 (111 B)
timepassed = dateFix() - old;
if (timepassed > 17650) {
gotoAndStop (4);
} else {
gotoAndPlay (2);
}
Instance of Symbol 28 MovieClip in Symbol 29 MovieClip Frame 4 (1.25 KiB) ●
onClipEvent (load) {
function StartUp() {
var _local1 = this;
do {
framen = random(_local1.anon.anon._totalframes) + 2;
} while ((framen > (oldframen - 4)) && (framen < (oldframen + 4)));
_local1.anon.anon.gotoAndStop(framen);
_local1._rotation = random(31) + 30;
_local1.anon._xscale = random(151) + 350;
_local1.anon._yscale = _local1.anon._xscale;
_local1.anon._x = random(31) * -1;
_local1.anon._y = random(31) * -1;
_local1._alpha = 0;
directionX = 0;
directionY = 0;
if (Math.random() < 0.5) {
directionX = ((Math.random() < 0.5) ? 0.225 : -0.225);
} else {
directionY = ((Math.random() < 0.5) ? 0.225 : -0.225);
}
if (Math.random() < 0.25) {
if (directionX == 0) {
directionX = ((Math.random() < 0.5) ? 0.125 : -0.125);
} else {
directionY = ((Math.random() < 0.5) ? 0.125 : -0.125);
}
}
oldframen = framen;
}
steg = 2;
oldframen = -10;
StartUp();
}
onClipEvent (enterFrame) {
this.anon._x = this.anon._x + directionX;
this.anon._y = this.anon._y + directionY;
if (steg == 1) {
StartUp();
} else if (steg <= 21) {
this._alpha = this._alpha + 3;
} else if (steg >= 160) {
this._alpha = this._alpha - 6;
if (steg == 169) {
steg = 0;
}
}
steg++;
}