[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.Combined Code (23.02 KiB) ● ● ●
movieClip 2 bullet {
}
frame 1 {
stop();
}
frame 1 {
stop();
}
frame 1 {
score.text = 0;
health.text = 100;
musictoggle._x = 457.6;
musictoggle._y = 65.8;
}
movieClip 4 {
}
movieClip 6 {
}
movieClip 9 {
}
movieClip 11 {
}
movieClip 15 {
}
movieClip 18 {
}
movieClip 21 {
}
movieClip 22 {
frame 1 {
stop();
}
instance of movieClip 15 {
onClipEvent (enterFrame) {
if (_root.score == 16) {
this.gotoAndStop('testdoor3');
}
}
}
frame 2 {
stop();
}
instance of movieClip 18 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
dead = true;
_root.nextFrame();
}
}
}
frame 3 {
stop();
}
}
instance of movieClip 22 {
onClipEvent (enterFrame) {
if (_root.score.text == 16) {
gotoAndStop(2);
}
}
}
movieClip 25 {
}
movieClip 30 {
}
movieClip 31 {
}
movieClip 34 {
}
movieClip 38 {
}
movieClip 41 {
}
movieClip 43 {
}
movieClip 46 {
}
movieClip 47 {
}
movieClip 49 {
frame 1 {
}
frame 6 {
stop();
}
}
movieClip 52 {
}
movieClip 55 {
}
movieClip 58 {
}
movieClip 59 {
}
movieClip 60 {
}
movieClip 63 {
}
movieClip 64 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
instance attackpoint of movieClip 52 {
onClipEvent (load) {
_alpha = 0;
}
}
frame 5 {
stop();
}
frame 6 {
stop();
}
}
instance char of movieClip 64 {
onClipEvent (load) {
jumping = false;
speed = 0;
healthX = _root.health._x;
scoreX = _root.score._x;
musictoggleX = _root.musictoggle._x;
Xpos = this._x;
Ypos = this._y;
maxmove = 15;
_root.maxshoottime = 100;
}
onClipEvent (enterFrame) {
_x = Xpos - _root._x;
_root.score._x = scoreX - _root._x;
_root.health._x = healthX - _root._x;
_root.musictoggle._x = musictoggleX - _root._x;
if (!_root.ground2.hitTest(this._x, this._y, true) && !jumping) {
this._y += 6;
}
if (!_root.shooting) {
_root.timer = 0;
_root.mvsp = _xscale / 20;
}
if (_root.dead) {
this.gotoAndStop('dead');
} else {
speed *= 0.85;
if (dir == 'right' && !_root.leftblock2.hitTest(this._x + 20, this._y, true)) {
_root.health._x += speed;
_root.score._x += speed;
_root.musictoggle._x += speed;
this._x += speed;
_root._x -= speed;
}
if (speed > 0) {
dir = 'right';
} else {
if (speed < 0) {
dir = 'left';
}
}
if (dir == 'left' && !_root.rightblock2.hitTest(this._x - 20, this._y, true)) {
_root.health._x += speed;
_root.score._x += speed;
_root.musictoggle._x += speed;
this._x += speed;
_root._x -= speed;
}
if (Key.isDown(37)) {
if (speed > -maxmove) {
--speed;
speed = -10;
}
this.gotoAndStop('run');
this._xscale = -100;
} else {
if (Key.isDown(39)) {
if (speed < maxmove) {
++speed;
speed = 10;
}
this._xscale = 100;
this.gotoAndStop('run');
} else {
if (Key.isDown(32)) {
this.gotoAndPlay('attack');
attacking = true;
speed = 0;
} else {
if (Key.isDown(17)) {
if (_root.gotgun == true && !_root.shooting) {
_root.attachMovie('bullet', 'bulleter', 1, {'_x': _root.char._x, '_y': _root.char._y - 25});
_root.shooting = true;
with (_root.bulleter) {
onEnterFrame = function () {
var v1 = _root;
if (v1.timer > v1.maxshoottime) {
v1.shooting = false;
unloadMovie(this);
}
++v1.timer;
_x += v1.mvsp;
};
}
attacking = true;
speed = 0;
this.gotoAndStop('shoot');
}
} else {
if (speed < 1 && speed > -1 && !attacking) {
speed = 0;
this.gotoAndStop('idle');
}
}
}
}
}
if (Key.isDown(38) && !jumping) {
jumping = true;
}
if (jumping) {
this.gotoAndStop('jump');
this._y -= jump;
jump -= 0.5;
if (jump < 0) {
falling = true;
}
if (jump < -15) {
jump = -15;
}
}
if (_root.ground2.hitTest(this._x, this._y, true) && falling) {
jump = 12;
jumping = false;
falling = false;
}
}
}
onClipEvent (keyUp) {
if (Key.getCode() == 32) {
attacking = false;
}
}
}
movieClip 68 {
}
instance of movieClip 68 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
++_root.score.text;
++_root.score.text;
++_root.score.text;
loadMovie('', this);
rdfull.gotoAndStop('licked');
}
}
}
button 70 {
on (release) {
gotoAndPlay(2);
}
}
button 73 {
on (release) {
gotoAndPlay(1);
}
}
movieClip 74 {
frame 1 {
stop();
}
frame 2 {
stop();
stopAllSounds();
}
}
instance musictoggle of movieClip 74 {
onClipEvent (load) {
Xpos = this._x;
Ypos = this._y;
}
}
movieClip 79 {
}
movieClip 84 {
frame 3 {
stop();
}
}
movieClip 85 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
instance rdfull of movieClip 85 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
dead = true;
this.gotoAndStop('licked');
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
movieClip 88 {
}
movieClip 93 {
}
frame 2 {
stop();
}
frame 2 {
stop();
}
frame 2 {
stop();
score.text = 16;
health.text = 100;
musictoggle._x = 457.6;
musictoggle._y = 65.8;
}
movieClip 96 {
}
movieClip 99 {
}
movieClip 101 {
}
movieClip 103 {
}
movieClip 106 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 108 {
}
movieClip 111 {
}
movieClip 112 {
frame 1 {
stop();
}
frame 2 {
stop();
}
instance of movieClip 111 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
dead = true;
_root.gotoAndStop('L2p2');
}
}
}
}
instance signposttop of movieClip 112 {
onClipEvent (enterFrame) {
if (_root.score.text == 18) {
gotoAndStop(2);
}
}
}
instance char of movieClip 64 {
onClipEvent (load) {
jumping = false;
speed = 0;
healthX = _root.health._x;
scoreX = _root.score._x;
musictoggleX = _root.musictoggle._x;
Xpos = this._x;
Ypos = this._y;
maxmove = 15;
_root.maxshoottime = 100;
}
onClipEvent (enterFrame) {
_x = Xpos - _root._x;
_root.score._x = scoreX - _root._x;
_root.health._x = healthX - _root._x;
_root.musictoggle._x = musictoggleX - _root._x;
if (!_root.testbkg1.ground3.hitTest(this._x, this._y, true) && !jumping) {
this._y += 6;
}
if (!_root.shooting) {
_root.timer = 0;
_root.mvsp = _xscale / 20;
}
if (_root.dead) {
this.gotoAndStop('dead');
} else {
speed *= 0.85;
if (dir == 'right' && !_root.leftblock2.hitTest(this._x + 20, this._y, true)) {
_root.health._x += speed;
_root.score._x += speed;
_root.musictoggle._x += speed;
this._x += speed;
_root._x -= speed;
}
if (speed > 0) {
dir = 'right';
} else {
if (speed < 0) {
dir = 'left';
}
}
if (dir == 'left' && !_root.rightblock2.hitTest(this._x - 20, this._y, true)) {
_root.health._x += speed;
_root.score._x += speed;
_root.musictoggle._x += speed;
this._x += speed;
_root._x -= speed;
}
if (Key.isDown(37)) {
if (speed > -maxmove) {
--speed;
speed = -10;
}
this.gotoAndStop('run');
this._xscale = -100;
} else {
if (Key.isDown(39)) {
if (speed < maxmove) {
++speed;
speed = 10;
}
this._xscale = 100;
this.gotoAndStop('run');
} else {
if (Key.isDown(32)) {
this.gotoAndPlay('attack');
attacking = true;
speed = 0;
} else {
if (Key.isDown(17)) {
if (_root.gotgun == true && !_root.shooting) {
_root.attachMovie('bullet', 'bulleter', 1, {'_x': _root.char._x, '_y': _root.char._y - 25});
_root.shooting = true;
with (_root.bulleter) {
onEnterFrame = function () {
var v1 = _root;
if (v1.timer > v1.maxshoottime) {
v1.shooting = false;
unloadMovie(this);
}
++v1.timer;
_x += v1.mvsp;
};
}
attacking = true;
speed = 0;
this.gotoAndStop('shoot');
}
} else {
if (speed < 1 && speed > -1 && !attacking) {
speed = 0;
this.gotoAndStop('idle');
}
}
}
}
}
if (Key.isDown(38) && !jumping) {
jumping = true;
}
if (jumping) {
this.gotoAndStop('jump');
this._y -= jump;
jump -= 0.5;
if (jump < 0) {
falling = true;
}
if (jump < -15) {
jump = -15;
}
}
if (_root.testbkg1.ground3.hitTest(this._x, this._y, true) && falling) {
jump = 12;
jumping = false;
falling = false;
}
}
}
onClipEvent (keyUp) {
if (Key.getCode() == 32) {
attacking = false;
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
movieClip 121 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
frame 3 {
stop();
}
frame 3 {
stop();
score.text = 18;
health.text = 100;
musictoggle._x = 457.6;
musictoggle._y = 65.8;
}
movieClip 124 {
}
movieClip 126 {
}
movieClip 128 {
}
movieClip 133 {
}
movieClip 135 {
}
movieClip 136 {
}
movieClip 138 {
}
movieClip 141 {
}
movieClip 142 {
frame 1 {
stop();
}
frame 2 {
stop();
}
instance of movieClip 141 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
dead = true;
_root.gotoAndStop('level3');
}
}
}
}
instance of movieClip 142 {
onClipEvent (enterFrame) {
if (_root.score.text == 25) {
gotoAndStop(2);
}
}
}
instance char of movieClip 64 {
onClipEvent (load) {
jumping = false;
speed = 0;
healthX = _root.health._x;
scoreX = _root.score._x;
musictoggleX = _root.musictoggle._x;
Xpos = this._x;
Ypos = this._y;
maxmove = 15;
_root.maxshoottime = 100;
}
onClipEvent (enterFrame) {
_x = Xpos - _root._x;
_root.score._x = scoreX - _root._x;
_root.health._x = healthX - _root._x;
_root.musictoggle._x = musictoggleX - _root._x;
if (!_root.L2p2a.L2p2ground.hitTest(this._x, this._y, true) && !jumping) {
this._y += 6;
}
if (!_root.shooting) {
_root.timer = 0;
_root.mvsp = _xscale / 20;
}
if (_root.dead) {
this.gotoAndStop('dead');
} else {
speed *= 0.85;
if (dir == 'right' && !_root.leftblock2.hitTest(this._x + 20, this._y, true)) {
_root.health._x += speed;
_root.score._x += speed;
_root.musictoggle._x += speed;
this._x += speed;
_root._x -= speed;
}
if (speed > 0) {
dir = 'right';
} else {
if (speed < 0) {
dir = 'left';
}
}
if (dir == 'left' && !_root.rightblock2.hitTest(this._x - 20, this._y, true)) {
_root.health._x += speed;
_root.score._x += speed;
_root.musictoggle._x += speed;
this._x += speed;
_root._x -= speed;
}
if (Key.isDown(37)) {
if (speed > -maxmove) {
--speed;
speed = -10;
}
this.gotoAndStop('run');
this._xscale = -100;
} else {
if (Key.isDown(39)) {
if (speed < maxmove) {
++speed;
speed = 10;
}
this._xscale = 100;
this.gotoAndStop('run');
} else {
if (Key.isDown(32)) {
this.gotoAndPlay('attack');
attacking = true;
speed = 0;
} else {
if (Key.isDown(17)) {
if (_root.gotgun == true && !_root.shooting) {
_root.attachMovie('bullet', 'bulleter', 1, {'_x': _root.char._x, '_y': _root.char._y - 25});
_root.shooting = true;
with (_root.bulleter) {
onEnterFrame = function () {
var v1 = _root;
if (v1.timer > v1.maxshoottime) {
v1.shooting = false;
unloadMovie(this);
}
++v1.timer;
_x += v1.mvsp;
};
}
attacking = true;
speed = 0;
this.gotoAndStop('shoot');
}
} else {
if (speed < 1 && speed > -1 && !attacking) {
speed = 0;
this.gotoAndStop('idle');
}
}
}
}
}
if (Key.isDown(38) && !jumping) {
jumping = true;
}
if (jumping) {
this.gotoAndStop('jump');
this._y -= jump;
jump -= 0.5;
if (jump < 0) {
falling = true;
}
if (jump < -15) {
jump = -15;
}
}
if (_root.L2p2a.L2p2ground.hitTest(this._x, this._y, true) && falling) {
jump = 12;
jumping = false;
falling = false;
}
}
}
onClipEvent (keyUp) {
if (Key.getCode() == 32) {
attacking = false;
}
}
}
movieClip 146 {
}
instance of movieClip 146 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
++_root.score.text;
++_root.score.text;
++_root.score.text;
loadMovie('', this);
rdfull.gotoAndStop('licked');
}
}
}
instance p3 of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance p2 of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
movieClip 150 {
}
movieClip 155 {
frame 3 {
stop();
}
}
movieClip 156 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
instance of movieClip 156 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
dead = true;
this.gotoAndStop('licked');
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
frame 4 {
stop();
}
frame 4 {
stop();
score.text = 25;
health.text = 100;
musictoggle._x = 457.6;
musictoggle._y = 65.8;
}
movieClip 162 {
}
movieClip 165 {
}
movieClip 168 {
}
movieClip 171 {
}
movieClip 172 {
frame 1 {
stop();
}
frame 2 {
stop();
}
instance of movieClip 171 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
dead = true;
_root.nextFrame();
}
}
}
}
instance of movieClip 172 {
onClipEvent (enterFrame) {
if (_root.score.text == 40) {
gotoAndStop(2);
}
}
}
movieClip 174 {
}
instance of movieClip 174 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
++_root.score.text;
++_root.score.text;
++_root.score.text;
loadMovie('', this);
applejackfull.gotoAndStop('licked');
}
}
}
movieClip 180 {
}
movieClip 185 {
frame 2 {
stop();
}
}
movieClip 186 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
instance applejackfull of movieClip 186 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
dead = true;
this.gotoAndStop('licked');
}
}
}
instance char of movieClip 64 {
onClipEvent (load) {
jumping = false;
speed = 0;
healthX = _root.health._x;
scoreX = _root.score._x;
musictoggleX = _root.musictoggle._x;
Xpos = this._x;
Ypos = this._y;
maxmove = 15;
_root.maxshoottime = 100;
}
onClipEvent (enterFrame) {
_x = Xpos - _root._x;
_root.score._x = scoreX - _root._x;
_root.health._x = healthX - _root._x;
_root.musictoggle._x = musictoggleX - _root._x;
if (!_root.L3p3cground.hitTest(this._x, this._y, true) && !jumping) {
this._y += 6;
}
if (!_root.shooting) {
_root.timer = 0;
_root.mvsp = _xscale / 20;
}
if (_root.dead) {
this.gotoAndStop('dead');
} else {
speed *= 0.85;
if (dir == 'right' && !_root.leftblock2.hitTest(this._x + 20, this._y, true)) {
_root.health._x += speed;
_root.score._x += speed;
_root.musictoggle._x += speed;
this._x += speed;
_root._x -= speed;
}
if (speed > 0) {
dir = 'right';
} else {
if (speed < 0) {
dir = 'left';
}
}
if (dir == 'left' && !_root.rightblock2.hitTest(this._x - 20, this._y, true)) {
_root.health._x += speed;
_root.score._x += speed;
_root.musictoggle._x += speed;
this._x += speed;
_root._x -= speed;
}
if (Key.isDown(37)) {
if (speed > -maxmove) {
--speed;
speed = -10;
}
this.gotoAndStop('run');
this._xscale = -100;
} else {
if (Key.isDown(39)) {
if (speed < maxmove) {
++speed;
speed = 10;
}
this._xscale = 100;
this.gotoAndStop('run');
} else {
if (Key.isDown(32)) {
this.gotoAndPlay('attack');
attacking = true;
speed = 0;
} else {
if (Key.isDown(17)) {
if (_root.gotgun == true && !_root.shooting) {
_root.attachMovie('bullet', 'bulleter', 1, {'_x': _root.char._x, '_y': _root.char._y - 25});
_root.shooting = true;
with (_root.bulleter) {
onEnterFrame = function () {
var v1 = _root;
if (v1.timer > v1.maxshoottime) {
v1.shooting = false;
unloadMovie(this);
}
++v1.timer;
_x += v1.mvsp;
};
}
attacking = true;
speed = 0;
this.gotoAndStop('shoot');
}
} else {
if (speed < 1 && speed > -1 && !attacking) {
speed = 0;
this.gotoAndStop('idle');
}
}
}
}
}
if (Key.isDown(38) && !jumping) {
jumping = true;
}
if (jumping) {
this.gotoAndStop('jump');
this._y -= jump;
jump -= 0.5;
if (jump < 0) {
falling = true;
}
if (jump < -15) {
jump = -15;
}
}
if (_root.L3p3cground.hitTest(this._x, this._y, true) && falling) {
jump = 12;
jumping = false;
falling = false;
}
}
}
onClipEvent (keyUp) {
if (Key.getCode() == 32) {
attacking = false;
}
}
}
movieClip 190 {
}
instance of movieClip 190 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
++_root.score.text;
++_root.score.text;
++_root.score.text;
loadMovie('', this);
twilightsparkle.gotoAndStop('licked');
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
movieClip 196 {
}
movieClip 201 {
frame 2 {
stop();
}
}
movieClip 202 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
instance twilightsparkle of movieClip 202 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
dead = true;
this.gotoAndStop('licked');
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
instance of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
++_root.score.text;
loadMovie('', this);
}
}
}
movieClip 205 {
}
instance of movieClip 205 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
++_root.score.text;
++_root.score.text;
++_root.score.text;
loadMovie('', this);
rarityfull.gotoAndStop('licked');
}
}
}
movieClip 208 {
}
movieClip 215 {
frame 2 {
stop();
}
}
movieClip 216 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
instance rarityfull of movieClip 216 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
dead = true;
this.gotoAndStop('licked');
}
}
}
movieClip 225 {
}
frame 5 {
stop();
Xpos = 180;
Ypos = 250;
_x = 0;
_y = 0;
}
movieClip 230 {
}
instance win of movieClip 230 {
onClipEvent (load) {
Xpos = this._x;
Ypos = this._y;
}
}
frame 7 {
stop();
}
instance win of movieClip 230 {
onClipEvent (load) {
Xpos = this._x;
Ypos = this._y;
}
}