[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 1 (1.42 KiB) ●
function otherOnEnterFrame() {
q = (q + 1) % 360;
loop = 100 / size;
loop = int((loop * loop) / 8) + 1;
x = 0;
while (x < loop) {
rx = random(481 - size);
ry = random(481 - size);
cv = pic.getPixel(int(rx + int(size / 2)), int(ry + int(size / 2)));
rect(0, rx, ry, size, size, cv + 4278190080);
x++;
}
reps--;
if (reps == 0) {
reps = replimit;
size = size + dir;
sizemax = Math.max(sizemax - 1, sizemin + 4);
if ((size == sizemin) && (dir == -1)) {
dir = 1;
}
if ((size == sizemax) && (dir == 1)) {
dir = -1;
}
}
}
function rect(l, x, y, w, h, c) {
bmp[l].fillRect(new flash.geom.Rectangle(x, y, w, h), c);
}
stop();
fullscreen = new flash.geom.Rectangle(0, 0, 480, 480);
origin = new flash.geom.Point(0, 0);
focusRect = false;
tabEnabled = false;
_root.createEmptyMovieClip("bh", 10);
bmp = new Array();
x = 0;
while (x < 4) {
bmp[x] = new flash.display.BitmapData(480, 480, true, 0);
bh.attachBitmap(bmp[x], x);
x++;
}
bh._xscale = (bh._yscale = 200);
var song = new Sound();
song.attachSound("everytime.wav");
song.start(0, 999);
rect(0, 0, 0, 480, 480, 4278190080);
var pic = flash.display.BitmapData.loadBitmap("iwata.gif");
q = 0;
dir = -1;
size = 100;
sizemax = 100;
sizemin = 4;
reps = 40;
replimit = 40;
this.desiredFrameRate = 60;
this.callFunctionInt = setInterval(this, "otherOnEnterFrame", 1000 / this.desiredFrameRate);