Frame 1
function deadClick() {
}
Stage.scaleMode = "noScale";
focusRect = false;
tabEnabled = false;
var my_cm = new ContextMenu();
my_cm.hideBuiltInItems();
var nop = new ContextMenuItem("Anonymous D", deadClick);
nop.separatorBefore = true;
my_cm.customItems.push(nop);
var nop = new ContextMenuItem("Loop-D-Loop", deadClick);
nop.separatorBefore = false;
my_cm.customItems.push(nop);
_root.menu = my_cm;
Frame 11
stop();
tbs = new Array(4);
x = 0;
while (x < 4) {
tbs[x] = attachMovie("tb", "tb" + x, x + 5);
tbs[x]._x = 2;
tbs[x]._y = (x * 36) + (int(x / 2) * 328);
x++;
}
tbn = 0;
tbc = 1;
tbs[0].onEnterFrame = function () {
tbs[tbn].readout.text = tbs[tbn].readout.text + (substring(tbs[tbn].supposed, tbc, 1));
tbc++;
if (tbc == 31) {
tbn++;
tbc = 1;
}
if (tbn == 4) {
delete this.onEnterFrame;
}
};
tbs[0].readout.text = "";
tbs[1].readout.text = "";
tbs[2].readout.text = "";
tbs[3].readout.text = "";
tbs[0].supposed = "ANONYMOUS D PRESENTS";
tbs[1].supposed = "LOOP-D-LOOP 002";
tbs[2].supposed = "AIR - ";
tbs[3].supposed = "CHERRY BLOSSOM GIRL";
music = new Sound();
music.attachSound("music");
music.start(0, 9999);
fps_mc._visible = false;
keyListener = new Object();
keyListener.onKeyDown = function () {
var _local1 = Key.getCode();
if (_local1 == 70) {
fps_mc._visible = !fps_mc._visible;
}
};
Key.addListener(keyListener);
rbs = new Array(6);
x = 0;
while (x < 6) {
rbs[x] = inmask.attachMovie("rb", "rb" + x, x + 5);
rbs[x]._x = ((x * 375) % 200) - 100;
rbs[x]._y = ((x * 175) % 400) - 200;
rbs[x]._rotation = x * 60;
rbs[x].xv = 1;
rbs[x].yv = 1;
rbs[x].gotoAndPlay(1 + (x * 20));
rbs[x].onEnterFrame = function () {
rv = (random(3) - 1) / 100;
if (this._x < 0) {
this.xv = Math.min((this.xv + 0.02) + rv, 2.5);
}
if (this._x > 0) {
this.xv = Math.max((this.xv - 0.02) + rv, -2.5);
}
if (this._y < 0) {
this.yv = Math.min((this.yv + 0.02) + rv, 2.5);
}
if (this._y > 0) {
this.yv = Math.max((this.yv - 0.02) + rv, -2.5);
}
this._x = this._x + this.xv;
this._y = this._y + this.yv;
this._rotation = this._rotation + 0.2;
};
x++;
}
Instance of Symbol 30 MovieClip "fps_mc" in Frame 11
onClipEvent (enterFrame) {
with (_root) {
now = getTimer();
diff = now - then;
fps.text = int(1000 / diff);
then = now;
}
}
Symbol 6 MovieClip Frame 1
this.onEnterFrame = function () {
_root.stop();
preloadbar._xscale = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (_root.getBytesLoaded() == _root.getBytesTotal()) {
_root.gotoAndPlay(10);
}
};