Frame 1
stop();
Frame 9
var myTween = (new mx.transitions.Tween(text, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 6, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(textend, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 6, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(credits, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 6, true));
myTween.onMotionFinished = function () {
this.stop();
};
Symbol 9 Button
on (release) {
_parent.gotoAndStop(2);
}
Symbol 10 MovieClip Frame 1
_parent.stop();
this.onEnterFrame = function () {
if (_parent.getBytesTotal() > 1) {
percent = int((_parent.getBytesLoaded() / _parent.getBytesTotal()) * 100);
text_info.text = percent + "%";
bar_mask._xscale = percent;
if (percent >= 100) {
gotoAndStop (2);
}
}
};
Symbol 89 MovieClip [__Packages.mx.transitions.OnEnterFrameBeacon] Frame 0
class mx.transitions.OnEnterFrameBeacon
{
function OnEnterFrameBeacon () {
}
static function init() {
var _local4 = _global.MovieClip;
if (!_root.__OnEnterFrameBeacon) {
mx.transitions.BroadcasterMX.initialize(_local4);
var _local3 = _root.createEmptyMovieClip("__OnEnterFrameBeacon", 9876);
_local3.onEnterFrame = function () {
_global.MovieClip.broadcastMessage("onEnterFrame");
};
}
}
static var version = "1.1.0.52";
}
Symbol 90 MovieClip [__Packages.mx.transitions.BroadcasterMX] Frame 0
class mx.transitions.BroadcasterMX
{
var _listeners;
function BroadcasterMX () {
}
static function initialize(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();
}
}
function addListener(o) {
removeListener(o);
if (broadcastMessage == undefined) {
broadcastMessage = mx.transitions.BroadcasterMX.prototype.broadcastMessage;
}
return(_listeners.push(o));
}
function removeListener(o) {
var _local2 = _listeners;
var _local3 = _local2.length;
while (_local3--) {
if (_local2[_local3] == o) {
_local2.splice(_local3, 1);
if (!_local2.length) {
broadcastMessage = undefined;
}
return(true);
}
}
return(false);
}
function broadcastMessage() {
var _local5 = String(arguments.shift());
var _local4 = _listeners.concat();
var _local6 = _local4.length;
var _local3 = 0;
while (_local3 < _local6) {
_local4[_local3][_local5].apply(_local4[_local3], arguments);
_local3++;
}
}
static var version = "1.1.0.52";
}
Symbol 91 MovieClip [__Packages.mx.transitions.Tween] Frame 0
class mx.transitions.Tween
{
var obj, prop, begin, useSeconds, _listeners, addListener, prevTime, _time, looping, _duration, broadcastMessage, isPlaying, _fps, prevPos, _pos, change, _intervalID, _startTime;
function Tween (obj, prop, func, begin, finish, duration, useSeconds) {
mx.transitions.OnEnterFrameBeacon.init();
if (!arguments.length) {
return;
}
this.obj = obj;
this.prop = prop;
this.begin = begin;
position = (begin);
this.duration = (duration);
this.useSeconds = useSeconds;
if (func) {
this.func = func;
}
this.finish = (finish);
_listeners = [];
addListener(this);
start();
}
function set time(t) {
prevTime = _time;
if (t > duration) {
if (looping) {
rewind(t - _duration);
update();
broadcastMessage("onMotionLooped", this);
} else {
if (useSeconds) {
_time = _duration;
update();
}
stop();
broadcastMessage("onMotionFinished", this);
}
} else if (t < 0) {
rewind();
update();
} else {
_time = t;
update();
}
//return(time);
}
function get time() {
return(_time);
}
function set duration(d) {
_duration = (((d == null) || (d <= 0)) ? (_global.Infinity) : (d));
//return(duration);
}
function get duration() {
return(_duration);
}
function set FPS(fps) {
var _local2 = isPlaying;
stopEnterFrame();
_fps = fps;
if (_local2) {
startEnterFrame();
}
//return(FPS);
}
function get FPS() {
return(_fps);
}
function set position(p) {
setPosition(p);
//return(position);
}
function setPosition(p) {
prevPos = _pos;
obj[prop] = (_pos = p);
broadcastMessage("onMotionChanged", this, _pos);
updateAfterEvent();
}
function get position() {
return(getPosition());
}
function getPosition(t) {
if (t == undefined) {
t = _time;
}
return(func(t, begin, change, _duration));
}
function set finish(f) {
change = f - begin;
//return(finish);
}
function get finish() {
return(begin + change);
}
function continueTo(finish, duration) {
begin = position;
this.finish = (finish);
if (duration != undefined) {
this.duration = (duration);
}
start();
}
function yoyo() {
continueTo(begin, time);
}
function startEnterFrame() {
if (_fps == undefined) {
_global.MovieClip.addListener(this);
} else {
_intervalID = setInterval(this, "onEnterFrame", 1000 / _fps);
}
isPlaying = true;
}
function stopEnterFrame() {
if (_fps == undefined) {
_global.MovieClip.removeListener(this);
} else {
clearInterval(_intervalID);
}
isPlaying = false;
}
function start() {
rewind();
startEnterFrame();
broadcastMessage("onMotionStarted", this);
}
function stop() {
stopEnterFrame();
broadcastMessage("onMotionStopped", this);
}
function resume() {
fixTime();
startEnterFrame();
broadcastMessage("onMotionResumed", this);
}
function rewind(t) {
_time = ((t == undefined) ? 0 : (t));
fixTime();
update();
}
function fforward() {
time = (_duration);
fixTime();
}
function nextFrame() {
if (useSeconds) {
time = ((getTimer() - _startTime) / 1000);
} else {
time = (_time + 1);
}
}
function onEnterFrame() {
nextFrame();
}
function prevFrame() {
if (!useSeconds) {
time = (_time - 1);
}
}
function toString() {
return("[Tween]");
}
function fixTime() {
if (useSeconds) {
_startTime = getTimer() - (_time * 1000);
}
}
function update() {
position = (getPosition(_time));
}
static var version = "1.1.0.52";
static var __initBeacon = mx.transitions.OnEnterFrameBeacon.init();
static var __initBroadcaster = mx.transitions.BroadcasterMX.initialize(mx.transitions.Tween.prototype, true);
function func(t, b, c, d) {
return(((c * t) / d) + b);
}
}
Symbol 92 MovieClip [__Packages.mx.transitions.easing.Regular] Frame 0
class mx.transitions.easing.Regular
{
function Regular () {
}
static function easeIn(t, b, c, d) {
t = t / d;
return(((c * t) * t) + b);
}
static function easeOut(t, b, c, d) {
t = t / d;
return((((-c) * t) * (t - 2)) + b);
}
static function easeInOut(t, b, c, d) {
t = t / (d / 2);
if (t < 1) {
return((((c / 2) * t) * t) + b);
}
t--;
return((((-c) / 2) * ((t * (t - 2)) - 1)) + b);
}
static var version = "1.1.0.52";
}
Symbol 16 MovieClip Frame 20
var myTween = (new mx.transitions.Tween(raven, "_y", mx.transitions.easing.Regular.easeOut, 500, -10, 4, true));
myTween.onMotionFinished = function () {
this.stop();
};
Symbol 16 MovieClip Frame 405
_parent.gotoAndStop(3);
Symbol 30 MovieClip Frame 1
var myTween = (new mx.transitions.Tween(sky, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 3, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(clouds, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 5, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(ground, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 5, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(mes, "_y", mx.transitions.easing.Regular.easeOut, 500, 10, 4, true));
myTween.onMotionFinished = function () {
this.stop();
};
Instance of Symbol 23 MovieClip "clouds" in Symbol 30 MovieClip Frame 1
onClipEvent (enterFrame) {
this.cacheAsBitmap;
}
Instance of Symbol 25 MovieClip in Symbol 30 MovieClip Frame 1
onClipEvent (enterFrame) {
this.cacheAsBitmap;
}
Instance of Symbol 27 MovieClip "mes" in Symbol 30 MovieClip Frame 1
onClipEvent (enterFrame) {
this.cacheAsBitmap;
}
Symbol 30 MovieClip Frame 330
_parent.gotoAndStop(4);
var myTween = (new mx.transitions.Tween(mes, "_y", mx.transitions.easing.Regular.easeOut, 500, 10, 4, true));
myTween.onMotionFinished = function () {
this.stop();
};
Symbol 41 MovieClip Frame 1
var myTween = (new mx.transitions.Tween(mes, "_y", mx.transitions.easing.Regular.easeOut, 500, 21.5, 4, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(gro, "_y", mx.transitions.easing.Regular.easeOut, 500, -79.1, 4, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(sky, "_y", mx.transitions.easing.Regular.easeOut, -500, -178.5, 4, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(clouds, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 4, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(ground, "_y", mx.transitions.easing.Regular.easeOut, 200, 40.4, 5, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(text, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 5, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(rolo, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 6.5, true));
myTween.onMotionFinished = function () {
_parent.gotoAndStop(5);
};
Symbol 49 MovieClip Frame 1
var myTween = (new mx.transitions.Tween(rolo, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 6, true));
myTween.onMotionFinished = function () {
_parent.gotoAndStop(6);
};
var myTween = (new mx.transitions.Tween(ground, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 4, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(rouge1, "_x", mx.transitions.easing.Regular.easeOut, 200, -27.3, 3, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(rouge2, "_x", mx.transitions.easing.Regular.easeOut, -200, -75.8, 3, true));
myTween.onMotionFinished = function () {
this.stop();
};
Symbol 65 MovieClip Frame 1
var myTween = (new mx.transitions.Tween(rolo, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 6, true));
myTween.onMotionFinished = function () {
_parent.gotoAndStop(7);
};
var myTween = (new mx.transitions.Tween(ground, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 2, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(rouge1, "_x", mx.transitions.easing.Regular.easeOut, 200, 55.1, 2, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(rouge2, "_x", mx.transitions.easing.Regular.easeOut, 200, 166.8, 2, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(rouge3, "_x", mx.transitions.easing.Regular.easeOut, 200, 144.2, 2, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(rouge4, "_x", mx.transitions.easing.Regular.easeOut, -200, -100.8, 2, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(rouge5, "_x", mx.transitions.easing.Regular.easeOut, 200, 160.7, 2, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(mes, "_x", mx.transitions.easing.Regular.easeOut, -250, -104.3, 2, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(ground, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 4, true));
myTween.onMotionFinished = function () {
this.stop();
};
Symbol 73 MovieClip Frame 1
var myTween = (new mx.transitions.Tween(mes, "_x", mx.transitions.easing.Regular.easeOut, 250, 45.5, 2, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(bandits, "_x", mx.transitions.easing.Regular.easeOut, -250, -99.5, 2, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(sky, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 4, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(clouds, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 2, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(rolo, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 6, true));
myTween.onMotionFinished = function () {
_parent.gotoAndStop(8);
};
Symbol 79 MovieClip Frame 1
stop();
var myTween = (new mx.transitions.Tween(rolo, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 7, true));
myTween.onMotionFinished = function () {
gotoAndStop (2);
};
var myTween = (new mx.transitions.Tween(clouds, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 2, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(sky, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 2, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(ground, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 3, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(text, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 2, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(pal, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 2, true));
myTween.onMotionFinished = function () {
this.stop();
};
Symbol 79 MovieClip Frame 2
var myTween = (new mx.transitions.Tween(back, "_y", mx.transitions.easing.Regular.easeInOut, back._y, 100, 4, true));
myTween.onMotionFinished = function () {
this.stop();
};
var myTween = (new mx.transitions.Tween(blacker, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 3, true));
myTween.onMotionFinished = function () {
_parent.gotoAndStop(9);
};
Symbol 82 Button
on (release) {
gotoAndStop (2);
}
Instance of Symbol 87 MovieClip in Symbol 88 MovieClip Frame 1
on (release) {
getURL ("http://android-music.newgrounds.com/", "_blank");
}
Instance of Symbol 87 MovieClip in Symbol 88 MovieClip Frame 1
on (release) {
getURL ("http://android-music.ucoz.com/WSR.htm", "_blank");
}