[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.Symbol 39 Button (65 B)
on (release) {
getURL ("http://www.locklegion.org", "_blank");
}
Symbol 48 Button (31 B)
on (release) {
_root.play();
}
Symbol 50 MovieClip Frame 1 (186 B)
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndStop ("loaded");
}
Symbol 50 MovieClip Frame 2 (17 B)
gotoAndPlay (1);
Symbol 53 MovieClip Frame 1 (99 B)
totalstars = 200;
raio = 500;
i = 1;
centerx = parseInt(star._x);
centery = parseInt(star._y);
Symbol 53 MovieClip Frame 2 (409 B)
if (i < totalstars) {
duplicateMovieClip ("star", "star" + i, i);
xposi = (centerx - (raio / 2)) + random(raio);
setProperty("star" + i, _x , xposi);
yposi = (centery - (raio / 2)) + random(raio);
setProperty("star" + i, _y , yposi);
xp = xposi - centerx;
yp = yposi - centery;
angle = (180 * Math.atan2(yp, xp)) / 3.14;
setProperty("star" + i, _rotation , angle);
} else {
stop();
}
Symbol 53 MovieClip Frame 3 (23 B)
i++;
gotoAndPlay (2);
Symbol 155 MovieClip Frame 105 (8 B)
stop();