Combined Code
frame 1 {
fscommand('allowscale', 'false');
FrameLoad = int((100 / getBytesTotal()) * getBytesLoaded());
lf = getBytesLoaded();
tf = getBytesTotal();
porc = FrameLoad + '%';
loadbar._xscale = FrameLoad;
}
movieClip 11 {
}
movieClip 146 __Packages.mx.transitions.OnEnterFrameBeacon {
#initclip
if (!_global.mx) {
_global.mx = new Object();
}
if (!_global.mx.transitions) {
_global.mx.transitions = new Object();
}
if (!_global.mx.transitions.OnEnterFrameBeacon) {
var v1 = function () {};
mx.transitions.OnEnterFrameBeacon = v1;
var v2 = v1.prototype;
v1.init = function () {
var v4 = _global.MovieClip;
if (!_root.__OnEnterFrameBeacon) {
mx.transitions.BroadcasterMX.initialize(v4);
var v3 = _root.createEmptyMovieClip('__OnEnterFrameBeacon', 9876);
v3.onEnterFrame = function () {
_global.MovieClip.broadcastMessage('onEnterFrame');
};
}
};
v1.version = '1.1.0.52';
ASSetPropFlags(mx.transitions.OnEnterFrameBeacon.prototype, null, 1);
}
#endinitclip
}
movieClip 147 __Packages.mx.transitions.BroadcasterMX {
#initclip
if (!_global.mx) {
_global.mx = new Object();
}
if (!_global.mx.transitions) {
_global.mx.transitions = new Object();
}
if (!_global.mx.transitions.BroadcasterMX) {
var v1 = function () {};
mx.transitions.BroadcasterMX = v1;
var v2 = v1.prototype;
v1.initialize = function (o, dontCreateArray) {
if (o.broadcastMessage != undefined) {
delete o.broadcastMessage;
}
o.addListener = mx.transitions.BroadcasterMX.prototype.addListener;
o.removeListener = mx.transitions.BroadcasterMX.prototype.removeListener;
if (!dontCreateArray) {
o._listeners = new Array();
}
};
v2.addListener = function (o) {
this.removeListener(o);
if (this.broadcastMessage == undefined) {
this.broadcastMessage = mx.transitions.BroadcasterMX.prototype.broadcastMessage;
}
return this._listeners.push(o);
};
v2.removeListener = function (o) {
var v2 = this._listeners;
var v3 = v2.length;
while (v3--) {
if (v2[v3] == o) {
v2.splice(v3, 1);
if (!v2.length) {
this.broadcastMessage = undefined;
}
return true;
}
}
return false;
};
v2.broadcastMessage = function () {
var v5 = String(arguments.shift());
var v4 = this._listeners.concat();
var v6 = v4.length;
var v3 = 0;
while (v3 < v6) {
v4[v3][v5].apply(v4[v3], arguments);
++v3;
}
};
v1.version = '1.1.0.52';
ASSetPropFlags(mx.transitions.BroadcasterMX.prototype, null, 1);
}
#endinitclip
}
movieClip 148 __Packages.mx.transitions.Tween {
#initclip
if (!_global.mx) {
_global.mx = new Object();
}
if (!_global.mx.transitions) {
_global.mx.transitions = new Object();
}
if (!_global.mx.transitions.Tween) {
var v1 = function (obj, prop, func, begin, finish, duration, useSeconds) {
mx.transitions.OnEnterFrameBeacon.init();
if (!arguments.length) {
return undefined;
}
this.obj = obj;
this.prop = prop;
this.begin = begin;
this.__set__position(begin);
this.__set__duration(duration);
this.useSeconds = useSeconds;
if (func) {
this.func = func;
}
this.__set__finish(finish);
this._listeners = [];
this.addListener(this);
this.start();
};
mx.transitions.Tween = v1;
var v2 = v1.prototype;
v2.__set__time = function (t) {
this.prevTime = this._time;
if (t > this.__get__duration()) {
if (this.looping) {
this.rewind(t - this._duration);
this.update();
this.broadcastMessage('onMotionLooped', this);
} else {
if (this.useSeconds) {
this._time = this._duration;
this.update();
}
this.stop();
this.broadcastMessage('onMotionFinished', this);
}
} else {
if (t < 0) {
this.rewind();
this.update();
} else {
this._time = t;
this.update();
}
}
return this.__get__time();
};
v2.__get__time = function () {
return this._time;
};
v2.__set__duration = function (d) {
this._duration = (d == null || d <= 0) ? _global.Infinity : d;
return this.__get__duration();
};
v2.__get__duration = function () {
return this._duration;
};
v2.__set__FPS = function (fps) {
var v2 = this.isPlaying;
this.stopEnterFrame();
this._fps = fps;
if (v2) {
this.startEnterFrame();
}
return this.__get__FPS();
};
v2.__get__FPS = function () {
return this._fps;
};
v2.__set__position = function (p) {
this.setPosition(p);
return this.__get__position();
};
v2.setPosition = function (p) {
this.prevPos = this._pos;
this._pos = p;
this.obj[this.prop] = this._pos;
this.broadcastMessage('onMotionChanged', this, this._pos);
updateAfterEvent();
};
v2.__get__position = function () {
return this.getPosition();
};
v2.getPosition = function (t) {
if (t == undefined) {
t = this._time;
}
return this.func(t, this.begin, this.change, this._duration);
};
v2.__set__finish = function (f) {
this.change = f - this.begin;
return this.__get__finish();
};
v2.__get__finish = function () {
return this.begin + this.change;
};
v2.continueTo = function (finish, duration) {
this.begin = this.position;
this.__set__finish(finish);
if (duration != undefined) {
this.__set__duration(duration);
}
this.start();
};
v2.yoyo = function () {
this.continueTo(this.begin, this.__get__time());
};
v2.startEnterFrame = function () {
if (this._fps == undefined) {
_global.MovieClip.addListener(this);
} else {
this._intervalID = setInterval(this, 'onEnterFrame', 1000 / this._fps);
}
this.isPlaying = true;
};
v2.stopEnterFrame = function () {
if (this._fps == undefined) {
_global.MovieClip.removeListener(this);
} else {
clearInterval(this._intervalID);
}
this.isPlaying = false;
};
v2.start = function () {
this.rewind();
this.startEnterFrame();
this.broadcastMessage('onMotionStarted', this);
};
v2.stop = function () {
this.stopEnterFrame();
this.broadcastMessage('onMotionStopped', this);
};
v2.resume = function () {
this.fixTime();
this.startEnterFrame();
this.broadcastMessage('onMotionResumed', this);
};
v2.rewind = function (t) {
this._time = (t == undefined) ? 0 : t;
this.fixTime();
this.update();
};
v2.fforward = function () {
this.__set__time(this._duration);
this.fixTime();
};
v2.nextFrame = function () {
if (this.useSeconds) {
this.__set__time((getTimer() - this._startTime) / 1000);
} else {
this.__set__time(this._time + 1);
}
};
v2.onEnterFrame = function () {
this.nextFrame();
};
v2.prevFrame = function () {
if (!this.useSeconds) {
this.__set__time(this._time - 1);
}
};
v2.toString = function () {
return '[Tween]';
};
v2.fixTime = function () {
if (this.useSeconds) {
this._startTime = getTimer() - this._time * 1000;
}
};
v2.update = function () {
this.__set__position(this.getPosition(this._time));
};
v1.version = '1.1.0.52';
v1.__initBeacon = mx.transitions.OnEnterFrameBeacon.init();
v1.__initBroadcaster = mx.transitions.BroadcasterMX.initialize(mx.transitions.Tween.prototype, true);
v2.func = function (t, b, c, d) {
return c * t / d + b;
};
v2.addProperty('FPS', v2.__get__FPS, v2.__set__FPS);
v2.addProperty('duration', v2.__get__duration, v2.__set__duration);
v2.addProperty('finish', v2.__get__finish, v2.__set__finish);
v2.addProperty('position', v2.__get__position, v2.__set__position);
v2.addProperty('time', v2.__get__time, v2.__set__time);
ASSetPropFlags(mx.transitions.Tween.prototype, null, 1);
}
#endinitclip
}
movieClip 149 __Packages.mx.transitions.easing.Regular {
#initclip
if (!_global.mx) {
_global.mx = new Object();
}
if (!_global.mx.transitions) {
_global.mx.transitions = new Object();
}
if (!_global.mx.transitions.easing) {
_global.mx.transitions.easing = new Object();
}
if (!_global.mx.transitions.easing.Regular) {
var v1 = function () {};
mx.transitions.easing.Regular = v1;
var v2 = v1.prototype;
v1.easeIn = function (t, b, c, d) {
t /= d;
return c * t * t + b;
};
v1.easeOut = function (t, b, c, d) {
t /= d;
return -c * t * (t - 2) + b;
};
v1.easeInOut = function (t, b, c, d) {
t /= d / 2;
if (t < 1) {
return (c / 2) * t * t + b;
}
return (-c / 2) * (--t * (t - 2) - 1) + b;
};
v1.version = '1.1.0.52';
ASSetPropFlags(mx.transitions.easing.Regular.prototype, null, 1);
}
#endinitclip
}
frame 2 {
if (Number(lf) >= Number(tf)) {
gotoAndPlay(3);
} else {
gotoAndPlay(1);
}
}
frame 3 {
stop();
jogar.onRelease = function () {
play();
};
}
movieClip 21 {
}
instance of movieClip 21 {
onClipEvent (enterFrame) {
if (this._x >= -180) {
this._x -= 0.5;
} else {
this._x = 780;
this._y = random(150) + 60;
}
}
}
instance of movieClip 21 {
onClipEvent (enterFrame) {
if (this._x >= -180) {
this._x -= 0.3;
} else {
this._x = 780;
this._y = random(150) + 60;
}
}
}
instance of movieClip 21 {
onClipEvent (enterFrame) {
if (this._x >= -180) {
this._x -= 0.3;
} else {
this._x = 780;
this._y = random(150) + 60;
}
}
}
instance of movieClip 21 {
onClipEvent (enterFrame) {
if (this._x >= -180) {
this._x -= 0.5;
} else {
this._x = 780;
this._y = random(150) + 60;
}
}
}
movieClip 23 {
}
// unknown tag 88 length 110
movieClip 29 {
}
movieClip 36 {
}
frame 4 {
sombate = new Sound(this);
sombate.attachSound('bate');
bonus = new Sound(this);
bonus.attachSound('bonus');
cai2 = new Sound(this);
cai2.attachSound('cai2');
fall = new Sound(this);
fall.attachSound('fall');
cobrasom = new Sound(this);
cobrasom.attachSound('cobra2');
torcida = new Sound(this);
torcida.attachSound('torcida');
torcida.setVolume(70);
}
frame 4 {
function cai() {
if (caivr == false) {
asacai._x = asa._x;
asacai._y = asa._y;
asacai.gotoAndPlay(2);
asacai._visible = 1;
asa._visible = 0;
caivr = true;
vida -= 1;
vidas.nextFrame();
}
}
function voltaasa() {
if (vida <= 0) {
gotoAndStop('fim');
}
asa.gotoAndPlay(2);
asa._x = 200;
asa._y = 150;
asacai._visible = 0;
caivr = false;
asa._visible = 1;
}
function sobe() {
if (asa._y >= 70) {
asa._y -= 5;
}
if (asa._rotation >= -40) {
asa._rotation -= 2;
}
}
function desce() {
if (asa._y <= 440) {
asa._y += 5;
}
if (asa._rotation <= 30) {
asa._rotation += 2;
}
}
function direita() {
if (asa._x <= 700) {
asa._x += 5;
}
}
function esquerda() {
if (asa._x >= 140) {
asa._x -= 5;
}
}
function gravidade() {
if (asa._y <= 440) {
asa._y += 1;
}
if (asa._rotation < 0) {
asa._rotation += 1;
} else {
if (asa._rotation > 0) {
asa._rotation -= 1;
}
}
}
stop();
velo = 1;
asacai._visible = 0;
caivr = false;
vida = 6;
pontos = 0;
this.onEnterFrame = function () {
if (Key.isDown(38)) {
sobe();
} else {
if (Key.isDown(40)) {
desce();
} else {
gravidade();
}
}
if (Key.isDown(37)) {
esquerda();
} else {
if (Key.isDown(39)) {
direita();
}
}
if (asa._y > 400) {
cai();
}
};
}
instance of movieClip 21 {
onClipEvent (enterFrame) {
if (this._x >= -180) {
this._x -= 0.5;
} else {
this._x = 780;
this._y = random(150) + 60;
}
}
}
instance of movieClip 21 {
onClipEvent (enterFrame) {
if (this._x >= -180) {
this._x -= 0.3;
} else {
this._x = 780;
this._y = random(150) + 60;
}
}
}
instance of movieClip 21 {
onClipEvent (enterFrame) {
if (this._x >= -180) {
this._x -= 0.3;
} else {
this._x = 780;
this._y = random(150) + 60;
}
}
}
instance of movieClip 21 {
onClipEvent (enterFrame) {
if (this._x >= -180) {
this._x -= 0.5;
} else {
this._x = 780;
this._y = random(150) + 60;
}
}
}
movieClip 40 {
}
movieClip 42 {
}
movieClip 45 {
}
movieClip 47 {
}
movieClip 48 {
instance of movieClip 47 {
onClipEvent (enterFrame) {
if (this._x > -100) {
this._x -= this.velo;
} else {
this._x = 800;
this._y = random(180) + 100;
}
if (this.bola.hitTest(_root.asa.hit)) {
_root.cai();
}
}
}
}
instance cn1 of movieClip 48 {
onClipEvent (enterFrame) {
if (this._x == -2230 or this._x == -2430) {
_root.torcida.start(1);
}
if (this._x > -2750) {
this._x -= _root.velo;
} else {
_root.gotoAndStop('fase2');
}
}
}
movieClip 49 {
}
movieClip 51 {
}
movieClip 54 {
}
movieClip 55 {
frame 1 {
stop();
}
}
movieClip 58 {
}
movieClip 64 {
}
movieClip 65 {
}
movieClip 66 {
frame 1 {
gotoAndStop(random(5) + 1);
velo = random(5) + 3;
}
frame 8 {
_root.bonus.start();
}
frame 21 {
stop();
}
}
instance of movieClip 66 {
onClipEvent (enterFrame) {
if (this._x > -100) {
this._x -= this.velo;
} else {
this._x = 800;
this._y = random(180) + 100;
this.gotoAndStop(1);
}
if (this.hit.hitTest(_root.asa.hit)) {
this.gotoAndPlay('bonus');
_root.pontos += 10;
}
}
}
movieClip 69 {
}
movieClip 70 {
frame 1 {
velo = random(5) + 3;
}
}
instance of movieClip 70 {
onClipEvent (enterFrame) {
if (this._x > -100) {
this._x -= this.velo;
} else {
this._x = 800;
this._y = random(180) + 100;
}
if (this.hit.hitTest(_root.asa.hit)) {
_root.cai();
}
}
}
movieClip 71 {
frame 1 {
stop();
}
frame 3 {
_root.fall.start();
}
frame 28 {
_root.voltaasa();
}
}
instance of movieClip 70 {
onClipEvent (enterFrame) {
if (this._x > -100) {
this._x -= this.velo;
} else {
this._x = 800;
this._y = random(180) + 100;
}
if (this.hit.hitTest(_root.asa.hit)) {
_root.cai();
}
}
}
instance of movieClip 66 {
onClipEvent (enterFrame) {
if (this._x > -100) {
this._x -= this.velo;
} else {
this._x = 800;
this._y = random(180) + 100;
this.gotoAndStop(1);
}
if (this.hit.hitTest(_root.asa.hit)) {
this.gotoAndPlay('bonus');
_root.pontos += 10;
}
}
}
instance of movieClip 66 {
onClipEvent (enterFrame) {
if (this._x > -100) {
this._x -= this.velo;
} else {
this._x = 800;
this._y = random(180) + 100;
this.gotoAndStop(1);
}
if (this.hit.hitTest(_root.asa.hit)) {
this.gotoAndPlay('bonus');
_root.pontos += 10;
}
}
}
instance of movieClip 66 {
onClipEvent (enterFrame) {
if (this._x > -100) {
this._x -= this.velo;
} else {
this._x = 800;
this._y = random(180) + 100;
this.gotoAndStop(1);
}
if (this.hit.hitTest(_root.asa.hit)) {
this.gotoAndPlay('bonus');
_root.pontos += 10;
}
}
}
movieClip 73 {
}
movieClip 74 {
}
movieClip 75 {
frame 1 {
stop();
}
frame 12 {
stop();
}
}
instance of movieClip 75 {
onClipEvent (enterFrame) {
if (this._x > -1500) {
this._x -= 8;
} else {
this._x = 2500;
this._y = random(180) + 100;
if (_root.vida < 6) {
this._visible = 1;
this._alpha = 100;
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
this._alpha = 40;
this._visible = 0;
}
}
if (this.hit.hitTest(_root.asa.hit)) {
this.gotoAndPlay(2);
_root.vida += 1;
_root.vidas.prevFrame();
_root.bonus.start();
}
}
}
// unknown tag 88 length 115
movieClip 81 {
frame 1 {
stop();
}
}
button 87 {
on (release) {
play();
}
}
movieClip 90 {
frame 1 {
stop();
}
frame 2 {
stopAllSounds();
stop();
}
}
frame 11 {
jogar.onRelease = function () {
gotoAndStop('jogo2');
};
}
frame 18 {
function cai() {
if (caivr == false) {
asacai._x = asa._x;
asacai._y = asa._y;
asacai.gotoAndPlay(2);
asacai._visible = 1;
asa._visible = 0;
caivr = true;
vida -= 1;
vidas.nextFrame();
}
}
function voltaasa() {
if (vida <= 0) {
gotoAndStop('fim');
}
asa.gotoAndPlay(2);
asa._x = 200;
asa._y = 150;
asacai._visible = 0;
caivr = false;
asa._visible = 1;
}
function sobe() {
if (asa._y >= 70) {
asa._y -= 5;
}
if (asa._rotation >= -40) {
asa._rotation -= 2;
}
}
function desce() {
if (asa._y <= 440) {
asa._y += 5;
}
if (asa._rotation <= 30) {
asa._rotation += 2;
}
}
function direita() {
if (asa._x <= 700) {
asa._x += 5;
}
}
function esquerda() {
if (asa._x >= 140) {
asa._x -= 5;
}
}
function gravidade() {
if (asa._y <= 440) {
asa._y += 1;
}
if (asa._rotation < 0) {
asa._rotation += 1;
} else {
if (asa._rotation > 0) {
asa._rotation -= 1;
}
}
}
stop();
velo = 1;
asacai._visible = 0;
caivr = false;
vida = 6;
vidas.gotoAndStop(1);
this.onEnterFrame = function () {
if (Key.isDown(38)) {
sobe();
} else {
if (Key.isDown(40)) {
desce();
} else {
gravidade();
}
}
if (Key.isDown(37)) {
esquerda();
} else {
if (Key.isDown(39)) {
direita();
}
}
if (asa._y > 370) {
cai();
}
};
}
instance of movieClip 21 {
onClipEvent (enterFrame) {
if (this._x >= -180) {
this._x -= 0.5;
} else {
this._x = 780;
this._y = random(150) + 60;
}
}
}
instance of movieClip 21 {
onClipEvent (enterFrame) {
if (this._x >= -180) {
this._x -= 0.3;
} else {
this._x = 780;
this._y = random(150) + 60;
}
}
}
instance of movieClip 21 {
onClipEvent (enterFrame) {
if (this._x >= -180) {
this._x -= 0.3;
} else {
this._x = 780;
this._y = random(150) + 60;
}
}
}
instance of movieClip 21 {
onClipEvent (enterFrame) {
if (this._x >= -180) {
this._x -= 0.5;
} else {
this._x = 780;
this._y = random(150) + 60;
}
}
}
movieClip 102 {
}
movieClip 104 {
}
movieClip 110 {
}
movieClip 112 {
}
movieClip 113 {
}
movieClip 114 {
}
movieClip 115 {
}
movieClip 116 {
}
movieClip 117 {
}
movieClip 118 {
}
movieClip 120 {
}
movieClip 121 {
instance of movieClip 114 {
onClipEvent (enterFrame) {
if (this.pp.hit.hitTest(_root.asa.hit)) {
_root.cai();
}
}
}
instance of movieClip 115 {
onClipEvent (enterFrame) {
if (this.pp.hit.hitTest(_root.asa.hit)) {
_root.cai();
}
}
}
instance of movieClip 116 {
onClipEvent (enterFrame) {
if (this.pp.hit.hitTest(_root.asa.hit)) {
_root.cai();
}
}
}
instance of movieClip 117 {
onClipEvent (enterFrame) {
if (this.pp.hit.hitTest(_root.asa.hit)) {
_root.cai();
}
}
}
instance of movieClip 118 {
onClipEvent (enterFrame) {
if (this.pp.hit.hitTest(_root.asa.hit)) {
_root.cai();
}
}
}
instance of movieClip 116 {
onClipEvent (enterFrame) {
if (this.pp.hit.hitTest(_root.asa.hit)) {
_root.cai();
}
}
}
instance of movieClip 115 {
onClipEvent (enterFrame) {
if (this.pp.hit.hitTest(_root.asa.hit)) {
_root.cai();
}
}
}
instance of movieClip 114 {
onClipEvent (enterFrame) {
if (this.pp.hit.hitTest(_root.asa.hit)) {
_root.cai();
}
}
}
instance of movieClip 120 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.asa.hit)) {
_root.cai();
}
}
}
}
instance of movieClip 121 {
onClipEvent (enterFrame) {
if (this._x > -3000) {
this._x -= _root.velo;
} else {
_root.gotoAndStop('ganha');
}
}
}
movieClip 123 {
}
movieClip 128 {
frame 1 {
gotoAndStop(random(5) + 1);
velo = random(5) + 3;
}
frame 8 {
_root.bonus.start();
}
frame 21 {
stop();
}
}
instance of movieClip 128 {
onClipEvent (enterFrame) {
if (this._x > -100) {
this._x -= this.velo;
} else {
this._x = 800;
this._y = random(180) + 100;
this.gotoAndStop(1);
}
if (this.hit.hitTest(_root.asa.hit)) {
this.gotoAndPlay('bonus');
_root.pontos += 10;
}
}
}
movieClip 131 {
}
movieClip 132 {
frame 1 {
velo = random(5) + 3;
}
}
instance of movieClip 132 {
onClipEvent (enterFrame) {
if (this._x > -100) {
this._x -= this.velo;
} else {
this._x = 800;
this._y = random(170) + 100;
}
if (this.hit.hitTest(_root.asa.hit)) {
_root.cai();
}
}
}
instance of movieClip 132 {
onClipEvent (enterFrame) {
if (this._x > -100) {
this._x -= this.velo;
} else {
this._x = 800;
this._y = random(170) + 100;
}
if (this.hit.hitTest(_root.asa.hit)) {
_root.cai();
}
}
}
instance of movieClip 128 {
onClipEvent (enterFrame) {
if (this._x > -100) {
this._x -= this.velo;
} else {
this._x = 800;
this._y = random(180) + 100;
this.gotoAndStop(1);
}
if (this.hit.hitTest(_root.asa.hit)) {
this.gotoAndPlay('bonus');
_root.pontos += 10;
}
}
}
instance of movieClip 128 {
onClipEvent (enterFrame) {
if (this._x > -100) {
this._x -= this.velo;
} else {
this._x = 800;
this._y = random(180) + 100;
this.gotoAndStop(1);
}
if (this.hit.hitTest(_root.asa.hit)) {
this.gotoAndPlay('bonus');
_root.pontos += 10;
}
}
}
instance of movieClip 128 {
onClipEvent (enterFrame) {
if (this._x > -100) {
this._x -= this.velo;
} else {
this._x = 800;
this._y = random(180) + 100;
this.gotoAndStop(1);
}
if (this.hit.hitTest(_root.asa.hit)) {
this.gotoAndPlay('bonus');
_root.pontos += 10;
}
}
}
instance of movieClip 75 {
onClipEvent (enterFrame) {
if (this._x > -1500) {
this._x -= 8;
} else {
this._x = 2500;
this._y = random(180) + 100;
if (_root.vida < 6) {
this._visible = 1;
this._alpha = 100;
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
this._alpha = 40;
this._visible = 0;
}
}
if (this.hit.hitTest(_root.asa.hit)) {
this.gotoAndPlay(2);
_root.vida += 1;
_root.vidas.prevFrame();
_root.bonus.start();
}
}
}
frame 25 {
stop();
}
frame 25 {
jogar.onRelease = function () {
gotoAndStop('intro');
};
}
movieClip 142 {
frame 80 {
stop();
_root.nextFrame();
}
}
frame 33 {
stop();
stopAllSounds();
var fn = new mx.transitions.Tween(finalcar, '_x', mx.transitions.easing.Regular.easeOut, 115, 328, 50, false);
instrucoes.onRelease = function () {
gotoAndStop('intro');
};
jogar.onRelease = function () {
gotoAndStop('jogo');
};
}
frame 33 {
jogar.onRelease = function () {
gotoAndStop('intro');
};
}