Frame 1 (5.05 KiB) ● ●
function KeybrdCtrl(obj) {
if (Key.isDown(84)) {
piano.db.hit = 1;
}
if (Key.isDown(71)) {
piano.c.hit = 1;
}
if (Key.isDown(72)) {
piano.d.hit = 1;
}
if (Key.isDown(85)) {
piano.eb.hit = 1;
}
if (Key.isDown(74)) {
piano.e.hit = 1;
}
if (Key.isDown(75)) {
piano.f.hit = 1;
}
if (Key.isDown(79)) {
piano.gb.hit = 1;
}
if (Key.isDown(76)) {
piano.g.hit = 1;
}
if (Key.isDown(80)) {
piano.ab.hit = 1;
}
if (Key.isDown(186)) {
piano.a.hit = 1;
}
if (Key.isDown(219)) {
piano.bb.hit = 1;
}
if (Key.isDown(222)) {
piano.b.hit = 1;
}
}
function pianoMusic(obj) {
fps = 25;
limit = 120;
if (pianoTimer == null) {
c4 = new Array();
d4b = new Array();
d4 = new Array();
e4b = new Array();
e4 = new Array();
f4 = new Array();
g4b = new Array();
g4 = new Array();
a4b = new Array();
a4 = new Array();
b4b = new Array();
b4 = new Array();
}
if (Key.isDown(69)) {
if (e_input == null) {
reload = 1;
action1 = "REPLAY";
delete action2;
delete replay;
delete record;
playTimer = 1;
e_input = 1;
}
} else {
delete e_input;
}
if (Key.isDown(82)) {
if (r_input == null) {
pianoTimer = replay;
action2 = "RECORD";
delete action1;
delete reload;
delete replay;
if (record == null) {
record++;
}
r_input = 1;
}
} else {
delete r_input;
}
if (mouse_stop == 1) {
} else {
if (pianoTimer >= (fps * limit)) {
reload = 1;
} else {
if (record == 2) {
delete reload;
}
if (record == 1) {
pianoTimer++;
c4[pianoTimer] = piano.c.hit;
d4b[pianoTimer] = piano.db.hit;
d4[pianoTimer] = piano.d.hit;
e4b[pianoTimer] = piano.eb.hit;
e4[pianoTimer] = piano.e.hit;
f4[pianoTimer] = piano.f.hit;
g4b[pianoTimer] = piano.gb.hit;
g4[pianoTimer] = piano.g.hit;
a4b[pianoTimer] = piano.ab.hit;
a4[pianoTimer] = piano.a.hit;
b4b[pianoTimer] = piano.bb.hit;
b4[pianoTimer] = piano.b.hit;
}
}
if (reload == 1) {
if (clrvrb == null) {
delete _root.segnum;
clrvrb = 1;
}
if (replay >= (fps * limit)) {
delete replay;
delete obj._input;
delete clrvrb;
} else {
replay++;
piano.c.hit = c4[replay];
piano.db.hit = d4b[replay];
piano.d.hit = d4[replay];
piano.eb.hit = e4b[replay];
piano.e.hit = e4[replay];
piano.f.hit = f4[replay];
piano.gb.hit = g4b[replay];
piano.g.hit = g4[replay];
piano.ab.hit = a4b[replay];
piano.a.hit = a4[replay];
piano.bb.hit = b4b[replay];
piano.b.hit = b4[replay];
}
}
}
}
while (lordTunes < 3001) {
c4[lordTunes] = 1;
d4b[lordTunes] = 0;
d4[lordTunes] = 0;
e4b[lordTunes] = 0;
e4[lordTunes] = 0;
f4[lordTunes] = 0;
g4b[lordTunes] = 0;
g4[lordTunes] = 0;
a4b[lordTunes] = 0;
a4[lordTunes] = 0;
b4b[lordTunes] = 0;
b4[lordTunes] = 0;
lordTunes++;
}
function pianoNote(obj) {
if (obj.hit == 1) {
objhist2 = obj._name;
trace(obj._name + "+2");
if (objhist1 == objhist2) {
} else {
delete obj._input;
}
if (obj._input == null) {
x = new Sound();
if (obj._name.length >= 2) {
x.attachSound(obj._name.slice(0, 1).toString() + "4b");
} else {
x.attachSound(obj._name.toString() + "4");
}
objhist1 = obj._name;
trace(obj._name + "+1");
x.start();
if (objhist1 == null) {
}
obj._input = 1;
}
} else {
delete obj._input;
}
}
function pianoPress(obj) {
if (obj.hit == 1) {
obj._alpha = 25;
} else {
obj._alpha = 100;
}
if (replay == null) {
if (Key.isDown(39)) {
if (p_input == null) {
p_input = 1;
}
} else {
delete p_input;
}
if ((mouse_input == 1) && (obj.hitTest(_root._xmouse, _root._ymouse, false))) {
delete obj.hit;
}
if ((mouse_input == 1) && (obj.hitTest(_root._xmouse, _root._ymouse, true))) {
_root.record = 1;
c4[pianoTimer] = piano.c.hit;
d4b[pianoTimer] = piano.db.hit;
d4[pianoTimer] = piano.d.hit;
e4b[pianoTimer] = piano.eb.hit;
e4[pianoTimer] = piano.e.hit;
f4[pianoTimer] = piano.f.hit;
g4b[pianoTimer] = piano.gb.hit;
g4[pianoTimer] = piano.g.hit;
a4b[pianoTimer] = piano.ab.hit;
a4[pianoTimer] = piano.a.hit;
b4b[pianoTimer] = piano.bb.hit;
b4[pianoTimer] = piano.b.hit;
obj.hit = 1;
} else {
delete obj.hit;
}
}
}
_root.onLoad = function () {
pianoArray = new Array();
pianoArray = [piano.c, piano.db, piano.d, piano.eb, piano.e, piano.f, piano.gb, piano.g, piano.ab, piano.a, piano.bb, piano.b];
};
_root.onEnterFrame = function () {
KeybrdCtrl();
var pianoScan = 0;
while (pianoScan < pianoArray.length) {
pianoPress(pianoArray[pianoScan]);
pianoNote(pianoArray[pianoScan]);
pianoMusic(pianoArray[pianoScan]);
pianoScan++;
}
};
_root.onMouseDown = function () {
mouse_input = 1;
};
_root.onMouseUp = function () {
delete mouse_input;
delete obj_input;
if (Key.isDown(82)) {
} else {
delete _root.record;
}
};
Instance of Symbol 50 MovieClip "scrub" in Frame 1 (2.02 KiB) ●
onClipEvent (mouseUp) {
delete this.mouse_input;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.mouse_input = 1;
}
}
onClipEvent (enterFrame) {
if (this.mouse_input == 1) {
_root.pianoTimer = Math.ceil((this._x * (_root.fps * _root.limit)) / 540);
this._x = _root._xmouse;
} else {
this._x = (_root.pianoTimer * 540) / (_root.fps * _root.limit);
}
if ((_root.record == null) && (_root.reload == null)) {
} else if (_root.record == 1) {
if (_root.replay == null) {
if (this.mouse_input == 1) {
_root.pianoTimer = Math.ceil((this._x * (_root.fps * _root.limit)) / 540);
this._x = _root._xmouse;
} else if (this.mouse_input == null) {
if (_root.replay == null) {
this._x = (_root.pianoTimer * 540) / (_root.fps * _root.limit);
} else {
this._x = (_root.replay * 540) / (_root.fps * _root.limit);
}
}
} else if (this.mouse_input == 1) {
_root.replay = Math.ceil((this._x * (_root.fps * _root.limit)) / 540);
this._x = _root._xmouse;
} else if (this.mouse_input == null) {
if (_root.replay == null) {
this._x = (_root.pianoTimer * 540) / (_root.fps * _root.limit);
} else {
this._x = (_root.replay * 540) / (_root.fps * _root.limit);
}
}
} else if (_root.reload == 1) {
if (_root.replay == null) {
if (this.mouse_input == 1) {
_root.pianoTimer = Math.ceil((this._x * (_root.fps * _root.limit)) / 540);
this._x = _root._xmouse;
} else if (this.mouse_input == null) {
if (_root.replay == null) {
this._x = (_root.pianoTimer * 540) / (_root.fps * _root.limit);
} else {
this._x = (_root.replay * 540) / (_root.fps * _root.limit);
}
}
} else if (this.mouse_input == 1) {
_root.replay = Math.ceil((this._x * (_root.fps * _root.limit)) / 540);
this._x = _root._xmouse;
} else if (this.mouse_input == null) {
if (_root.replay == null) {
this._x = (_root.pianoTimer * 540) / (_root.fps * _root.limit);
} else {
this._x = (_root.replay * 540) / (_root.fps * _root.limit);
}
}
}
}
Instance of Symbol 69 MovieClip "x" in Frame 1 (475 B)
onClipEvent (enterFrame) {
seg = 1 + _root.segnum;
}
onClipEvent (enterFrame) {
if (_root.replay == null) {
if (_root.pianoTimer > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
_root.segnum = _root.segnum - 4;
}
} else if (_root.replay > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
} else if (_root.replay < (25 * (seg + _root.segnum))) {
_root.segnum = _root.segnum - 4;
this.gotoAndStop(1);
}
}
Instance of Symbol 69 MovieClip in Frame 1 (353 B)
onClipEvent (enterFrame) {
seg = 2 + _root.segnum;
}
onClipEvent (enterFrame) {
if (_root.replay == null) {
if (_root.pianoTimer > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else if (_root.replay > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 69 MovieClip in Frame 1 (353 B)
onClipEvent (enterFrame) {
seg = 3 + _root.segnum;
}
onClipEvent (enterFrame) {
if (_root.replay == null) {
if (_root.pianoTimer > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else if (_root.replay > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 69 MovieClip in Frame 1 (424 B)
onClipEvent (enterFrame) {
seg = 9 + _root.segnum;
}
onClipEvent (enterFrame) {
if (_root.replay == null) {
if (_root.pianoTimer > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
_root.segnum = _root.segnum + 6;
} else {
this.gotoAndStop(1);
}
} else if (_root.replay > (25 * (seg + _root.segnum))) {
_root.segnum = _root.segnum + 6;
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 69 MovieClip in Frame 1 (353 B)
onClipEvent (enterFrame) {
seg = 4 + _root.segnum;
}
onClipEvent (enterFrame) {
if (_root.replay == null) {
if (_root.pianoTimer > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else if (_root.replay > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 69 MovieClip in Frame 1 (353 B)
onClipEvent (enterFrame) {
seg = 5 + _root.segnum;
}
onClipEvent (enterFrame) {
if (_root.replay == null) {
if (_root.pianoTimer > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else if (_root.replay > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 69 MovieClip in Frame 1 (353 B)
onClipEvent (enterFrame) {
seg = 6 + _root.segnum;
}
onClipEvent (enterFrame) {
if (_root.replay == null) {
if (_root.pianoTimer > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else if (_root.replay > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 69 MovieClip in Frame 1 (353 B)
onClipEvent (enterFrame) {
seg = 7 + _root.segnum;
}
onClipEvent (enterFrame) {
if (_root.replay == null) {
if (_root.pianoTimer > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else if (_root.replay > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 69 MovieClip in Frame 1 (353 B)
onClipEvent (enterFrame) {
seg = 8 + _root.segnum;
}
onClipEvent (enterFrame) {
if (_root.replay == null) {
if (_root.pianoTimer > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else if (_root.replay > (25 * (seg + _root.segnum))) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Symbol 17 MovieClip Frame 1 (8 B)
stop();
Symbol 17 MovieClip Frame 2 (8 B)
stop();
Symbol 20 MovieClip Frame 1 (8 B)
stop();
Symbol 20 MovieClip Frame 2 (8 B)
stop();
Symbol 23 MovieClip Frame 1 (8 B)
stop();
Symbol 23 MovieClip Frame 2 (8 B)
stop();
Symbol 25 MovieClip Frame 1 (8 B)
stop();
Symbol 25 MovieClip Frame 2 (8 B)
stop();
Symbol 28 MovieClip Frame 1 (8 B)
stop();
Symbol 28 MovieClip Frame 2 (8 B)
stop();
Symbol 31 MovieClip Frame 1 (8 B)
stop();
Symbol 31 MovieClip Frame 2 (8 B)
stop();
Symbol 33 MovieClip Frame 1 (8 B)
stop();
Symbol 33 MovieClip Frame 2 (8 B)
stop();
Symbol 36 MovieClip Frame 1 (8 B)
stop();
Symbol 36 MovieClip Frame 2 (8 B)
stop();
Symbol 39 MovieClip Frame 1 (8 B)
stop();
Symbol 39 MovieClip Frame 2 (8 B)
stop();
Symbol 42 MovieClip Frame 1 (8 B)
stop();
Symbol 42 MovieClip Frame 2 (8 B)
stop();
Symbol 44 MovieClip Frame 1 (8 B)
stop();
Symbol 44 MovieClip Frame 2 (8 B)
stop();
Symbol 46 MovieClip Frame 1 (8 B)
stop();
Symbol 46 MovieClip Frame 2 (8 B)
stop();
Symbol 68 MovieClip Frame 1 (8 B)
stop();
Symbol 68 MovieClip Frame 2 (8 B)
stop();
Symbol 68 MovieClip Frame 3 (8 B)
stop();
Symbol 68 MovieClip Frame 4 (8 B)
stop();
Symbol 68 MovieClip Frame 5 (8 B)
stop();
Symbol 68 MovieClip Frame 6 (8 B)
stop();
Symbol 68 MovieClip Frame 7 (8 B)
stop();
Symbol 68 MovieClip Frame 8 (8 B)
stop();
Symbol 68 MovieClip Frame 9 (8 B)
stop();
Symbol 68 MovieClip Frame 10 (8 B)
stop();
Symbol 68 MovieClip Frame 11 (8 B)
stop();
Symbol 68 MovieClip Frame 12 (8 B)
stop();
Symbol 68 MovieClip Frame 13 (8 B)
stop();
Symbol 69 MovieClip Frame 1 (8 B)
stop();
Symbol 69 MovieClip Frame 2 (8 B)
stop();
Instance of Symbol 68 MovieClip in Symbol 69 MovieClip Frame 2 (215 B)
onClipEvent (load) {
var draw_p = 0;
while (draw_p < _root.pianoArray.length) {
trace(_root.pianoArray[0].hit);
if (_root.pianoArray[draw_p].hit == 1) {
this.gotoAndStop(draw_p + 2);
}
draw_p++;
}
}