Frame 1
function rancheck() {
if (ranNum < 10) {
ranS = "00000" + ranNum;
} else if (ranNum < 100) {
ranS = "0000" + ranNum;
} else if (ranNum < 1000) {
ranS = "000" + ranNum;
} else if (ranNum < 10000) {
ranS = "00" + ranNum;
} else if (ranNum < 100000) {
ranS = "0" + ranNum;
} else {
ranS = "" + ranNum;
}
}
stop();
var today_date = new Date();
var monthNum = Number(today_date.getMonth() + 1);
var dayNum = Number(today_date.getDate());
var hourNum = Number(today_date.getHours());
var ranNum = Math.floor(Math.random() * 1000000);
var monthS = "";
var dayS = "";
var hourS = "";
var ranS = "";
var addS = "";
if (monthNum < 10) {
monthS = "0" + monthNum;
} else {
monthS = "" + monthNum;
}
if (dayNum < 10) {
dayS = "0" + dayNum;
} else {
dayS = "" + dayNum;
}
if (hourNum < 10) {
hourS = "0" + hourNum;
} else {
hourS = "" + hourNum;
}
if ((ranNum % 2) == 0) {
addS = "0";
} else {
addS = "1";
}
rancheck();
var numString = ((((((((((((("66" + monthS.charAt(0)) + ranS.charAt(0)) + monthS.charAt(1)) + ranS.charAt(1)) + dayS.charAt(0)) + ranS.charAt(2)) + dayS.charAt(1)) + ranS.charAt(3)) + hourS.charAt(0)) + ranS.charAt(4)) + hourS.charAt(1)) + ranS.charAt(5)) + addS);
Stage.showMenu = false;
fscommand ("allowscale", false);
msg_mc.removeMovieClip();
btn_start.onRelease = function () {
delete mc_barL.onEnterFrame;
this._parent.gotoAndStop("mission");
};
btn_exp.onRelease = function () {
delete mc_barL.onEnterFrame;
this._parent.gotoAndStop("exp");
};
result_mc.removeMovieClip();
ui.removeMovieClip();
_root.YBLMovie.removeMovieClip();
_root.container_mc.removeMovieClip();
_root.cloudLayer.removeMovieClip();
_root.moleLayer.removeMovieClip();
_root.starStage.removeMovieClip();
Frame 2
stop();
btn_mission.onRelease = function () {
this._parent.gotoAndStop("game");
};
Frame 3
stop();
btn_start.onRelease = function () {
this._parent.gotoAndStop("mission");
};
Frame 4
stop();
this.onEnterFrame = function () {
loading.text = (getBytesLoaded() + "/") + getBytesTotal();
if (getBytesLoaded() == getBytesTotal()) {
delete this.onEnterFrame;
gotoAndStop (5);
}
};
Frame 5
function gstop() {
gotoAndStop (6);
}
stop();
total_ea = 0;
g1 = random(3) + 1;
guest1.gotoAndStop(g1);
g2 = random(3) + 1;
guest2.gotoAndStop(g2);
g3 = random(3) + 1;
guest3.gotoAndStop(g3);
bread_order = random(3) + 1;
speech_mc.bread_mc.gotoAndStop(bread_order);
breadset = 0;
soupset = 0;
eggset = 0;
real_eggset = 0;
frie1set = 0;
frie2set = 0;
frie3set = 0;
plate_mc.egg.gotoAndStop(1);
my_x = this._x;
my_y = this._y;
scoop_x = scoop_mc._x;
scoop_y = scoop_mc._y;
bread1_x = bread1._x;
bread1_y = bread1._y;
bread2_x = bread2._x;
bread2_y = bread2._y;
bread3_x = bread3._x;
bread3_y = bread3._y;
frie1_x = frie1_mc._x;
frie1_y = frie1_mc._y;
frie2_x = frie2_mc._x;
frie2_y = frie2_mc._y;
frie3_x = frie3_mc._x;
frie3_y = frie3_mc._y;
egg_x = egg_mc._x;
egg_y = egg_mc._y;
plate_x = plate_mc._x;
plate_y = plate_mc._y;
bread1_click_area.onPress = function () {
if (breadset == 0) {
bread1._x = _xmouse;
bread1._y = _ymouse;
bread1.startDrag();
}
};
bread1_click_area.onRelease = function () {
if (plate_mc.area.hitTest(bread1) && (breadset == 0)) {
bread1.stopDrag();
breadset = 1;
checking();
bread1_click_area.gotoAndStop(2);
bread2_click_area.gotoAndStop(2);
bread3_click_area.gotoAndStop(2);
re_move(bread1, bread1._x, bread1._y, 169.05, 136.4);
sound_mc.gotoAndPlay(2);
} else {
bread1.stopDrag();
bread1._x = bread1_x;
bread1._y = bread1_y;
}
};
bread1_click_area.onReleaseOutside = function () {
if (plate_mc.area.hitTest(bread1) && (breadset == 0)) {
bread1.stopDrag();
breadset = 1;
checking();
bread1_click_area.gotoAndStop(2);
bread2_click_area.gotoAndStop(2);
bread3_click_area.gotoAndStop(2);
re_move(bread1, bread1._x, bread1._y, 169.05, 136.4);
sound_mc.gotoAndPlay(2);
} else {
bread1.stopDrag();
bread1._x = bread1_x;
bread1._y = bread1_y;
}
};
bread2_click_area.onPress = function () {
if (breadset == 0) {
bread2._x = _xmouse;
bread2._y = _ymouse;
bread2.startDrag();
}
};
bread2_click_area.onRelease = function () {
if (plate_mc.area.hitTest(bread2) && (breadset == 0)) {
bread2.stopDrag();
breadset = 2;
checking();
bread1_click_area.gotoAndStop(2);
bread2_click_area.gotoAndStop(2);
bread3_click_area.gotoAndStop(2);
re_move(bread2, bread2._x, bread2._y, 165.5, 115.6);
sound_mc.gotoAndPlay(2);
} else {
bread2.stopDrag();
bread2._x = bread2_x;
bread2._y = bread2_y;
}
};
bread2_click_area.onReleaseOutside = function () {
if (plate_mc.area.hitTest(bread2) && (breadset == 0)) {
bread2.stopDrag();
breadset = 2;
checking();
bread1_click_area.gotoAndStop(2);
bread2_click_area.gotoAndStop(2);
bread3_click_area.gotoAndStop(2);
re_move(bread2, bread2._x, bread2._y, 165.5, 115.6);
sound_mc.gotoAndPlay(2);
} else {
bread2.stopDrag();
bread2._x = bread2_x;
bread2._y = bread2_y;
}
};
bread3_click_area.onPress = function () {
if (breadset == 0) {
bread3._x = _xmouse;
bread3._y = _ymouse;
bread3.startDrag();
}
};
bread3_click_area.onRelease = function () {
if (plate_mc.area.hitTest(bread3) && (breadset == 0)) {
bread3.stopDrag();
breadset = 3;
checking();
bread1_click_area.gotoAndStop(2);
bread2_click_area.gotoAndStop(2);
bread3_click_area.gotoAndStop(2);
re_move(bread3, bread3._x, bread3._y, 170, 136.95);
sound_mc.gotoAndPlay(2);
} else {
bread3.stopDrag();
bread3._x = bread3_x;
bread3._y = bread3_y;
}
};
bread3_click_area.onReleaseOutside = function () {
if (plate_mc.area.hitTest(bread3) && (breadset == 0)) {
bread3.stopDrag();
breadset = 3;
checking();
bread1_click_area.gotoAndStop(2);
bread2_click_area.gotoAndStop(2);
bread3_click_area.gotoAndStop(2);
re_move(bread3, bread3._x, bread3._y, 170, 136.95);
sound_mc.gotoAndPlay(2);
} else {
bread3.stopDrag();
bread3._x = bread3_x;
bread3._y = bread3_y;
}
};
egg_area.onPress = function () {
if (eggset < 3) {
egg_mc._x = _xmouse;
egg_mc._y = _ymouse;
egg_mc.startDrag();
if (frie1set == 0) {
frie1_mc.gotoAndStop(2);
}
if (frie2set == 0) {
frie2_mc.gotoAndStop(2);
}
if (frie3set == 0) {
frie3_mc.gotoAndStop(2);
}
}
};
egg_area.onRelease = function () {
if (egg_mc.area.hitTest(frie1_mc.area) && (eggset < 3)) {
frie1_mc.gotoAndPlay(3);
frie1_mc.area.gotoAndStop(2);
egg_mc.stopDrag();
egg_mc.gotoAndPlay(2);
eggset = eggset + 1;
frie1set = 1;
egg_area.gotoAndStop(2);
} else if (egg_mc.area.hitTest(frie2_mc.area) && (eggset < 3)) {
frie2_mc.gotoAndPlay(3);
frie2_mc.area.gotoAndStop(2);
egg_mc.stopDrag();
egg_mc.gotoAndPlay(2);
eggset = eggset + 1;
frie2set = 1;
egg_area.gotoAndStop(2);
} else if (egg_mc.area.hitTest(frie3_mc.area) && (eggset < 3)) {
frie3_mc.gotoAndPlay(3);
frie3_mc.area.gotoAndStop(2);
egg_mc.stopDrag();
egg_mc.gotoAndPlay(2);
eggset = eggset + 1;
frie3set = 1;
egg_area.gotoAndStop(2);
} else {
egg_mc.stopDrag();
egg_mc.gotoAndStop(1);
egg_mc._x = egg_x;
egg_mc._y = egg_y;
}
if (frie1set == 0) {
frie1_mc.gotoAndStop(1);
}
if (frie2set == 0) {
frie2_mc.gotoAndStop(1);
}
if (frie3set == 0) {
frie3_mc.gotoAndStop(1);
}
};
egg_area.onReleaseOutside = function () {
if (egg_mc.area.hitTest(frie1_mc.area) && (eggset < 3)) {
frie1_mc.gotoAndPlay(3);
frie1_mc.area.gotoAndStop(2);
egg_mc.stopDrag();
egg_mc.gotoAndPlay(2);
eggset = eggset + 1;
frie1set = 1;
egg_area.gotoAndStop(2);
} else if (egg_mc.area.hitTest(frie2_mc.area) && (eggset < 3)) {
frie2_mc.gotoAndPlay(3);
frie2_mc.area.gotoAndStop(2);
egg_mc.stopDrag();
egg_mc.gotoAndPlay(2);
eggset = eggset + 1;
frie2set = 1;
egg_area.gotoAndStop(2);
} else if (egg_mc.area.hitTest(frie3_mc.area) && (eggset < 3)) {
frie3_mc.gotoAndPlay(3);
frie3_mc.area.gotoAndStop(2);
egg_mc.stopDrag();
egg_mc.gotoAndPlay(2);
eggset = eggset + 1;
frie3set = 1;
egg_area.gotoAndStop(2);
} else {
egg_mc.stopDrag();
egg_mc.gotoAndStop(1);
egg_mc._x = egg_x;
egg_mc._y = egg_y;
}
if (frie1set == 0) {
frie1_mc.gotoAndStop(1);
}
if (frie2set == 0) {
frie2_mc.gotoAndStop(1);
}
if (frie3set == 0) {
frie3_mc.gotoAndStop(1);
}
};
frie1_mc.click_area.onPress = function () {
frie1_mc.startDrag();
frie1_mc.gotoAndPlay(109);
};
frie1_mc.click_area.onRelease = function () {
if (frie1_mc.click_area.hitTest(plate_mc.area)) {
frie1_mc.stopDrag();
plate_mc.egg.gotoAndStop(2);
frie1_mc.gotoAndStop(1);
frie1_mc.area.gotoAndStop(1);
frie1_mc._x = frie1_x;
frie1_mc._y = frie1_y;
frie1set = 0;
eggset = eggset - 1;
real_eggset = 1;
checking();
} else {
frie1_mc.stopDrag();
frie1_mc.gotoAndStop(108);
frie1_mc.click_area.gotoAndStop(1);
frie1_mc._x = frie1_x;
frie1_mc._y = frie1_y;
}
};
frie2_mc.click_area.onPress = function () {
frie2_mc.startDrag();
frie2_mc.gotoAndPlay(109);
};
frie2_mc.click_area.onRelease = function () {
if (frie2_mc.click_area.hitTest(plate_mc.area)) {
frie2_mc.stopDrag();
plate_mc.egg.gotoAndStop(2);
frie2_mc.gotoAndStop(1);
frie2_mc.area.gotoAndStop(1);
frie2_mc._x = frie2_x;
frie2_mc._y = frie2_y;
frie2set = 0;
eggset = eggset - 1;
real_eggset = 1;
checking();
} else {
frie2_mc.stopDrag();
frie2_mc.gotoAndStop(108);
frie2_mc.click_area.gotoAndStop(1);
frie2_mc._x = frie2_x;
frie2_mc._y = frie2_y;
}
};
frie3_mc.click_area.onPress = function () {
frie3_mc.startDrag();
frie3_mc.gotoAndPlay(109);
};
frie3_mc.click_area.onRelease = function () {
if (frie3_mc.click_area.hitTest(plate_mc.area)) {
frie3_mc.stopDrag();
plate_mc.egg.gotoAndStop(2);
frie3_mc.gotoAndStop(1);
frie3_mc.area.gotoAndStop(1);
frie3_mc._x = frie3_x;
frie3_mc._y = frie3_y;
frie3set = 0;
eggset = eggset - 1;
real_eggset = 1;
checking();
} else {
frie3_mc.stopDrag();
frie3_mc.gotoAndStop(108);
frie3_mc.click_area.gotoAndStop(1);
frie3_mc._x = frie3_x;
frie3_mc._y = frie3_y;
}
};
scoop_area.onPress = function () {
if (soupset == 0) {
scoop_mc._x = _xmouse - 20;
scoop_mc._y = _ymouse - 20;
scoop_mc.startDrag();
scoop_mc.gotoAndPlay(2);
}
};
scoop_area.onRelease = function () {
if (plate_mc.vessel_mc.hitTest(scoop_mc.area) && (soupset == 0)) {
plate_mc.vessel_mc.gotoAndStop(2);
scoop_mc.stopDrag();
scoop_mc.gotoAndPlay(4);
soupset = 1;
checking();
scoop_area.gotoAndStop(2);
} else {
scoop_mc.stopDrag();
scoop_mc.gotoAndStop(1);
scoop_mc._x = scoop_x;
scoop_mc._y = scoop_y;
}
};
scoop_area.onReleaseOutside = function () {
if (plate_mc.vessel_mc.hitTest(scoop_mc.area) && (soupset == 0)) {
plate_mc.vessel_mc.gotoAndStop(2);
scoop_mc.stopDrag();
scoop_mc.gotoAndPlay(4);
soupset = 1;
checking();
scoop_area.gotoAndStop(2);
} else {
scoop_mc.stopDrag();
scoop_mc.gotoAndStop(1);
scoop_mc._x = scoop_x;
scoop_mc._y = scoop_y;
}
};
re_move = function (mc, old_x, old_y, go_x, go_y) {
new mx.transitions.Tween(mc, "_x", mx.transitions.easing.Strong.easeOut, old_x, go_x, 10, false);
new mx.transitions.Tween(mc, "_y", mx.transitions.easing.Bounce.easeOut, old_y, go_y, 10, false);
};
return_move = function (mc, old_x, old_y, go_x, go_y) {
new mx.transitions.Tween(mc, "_x", mx.transitions.easing.Strong.easeOut, old_x, go_x, 10, false);
new mx.transitions.Tween(mc, "_y", mx.transitions.easing.Bounce.easeOut, old_y, go_y, 10, false);
shape_tween = new mx.transitions.Tween(mc, "_alpha", mx.transitions.easing.Bounce.easeOut, 90, 0, 10, false);
shape_tween.onMotionFinished = function () {
mc._alpha = 100;
bread1_click_area.gotoAndStop(1);
bread2_click_area.gotoAndStop(1);
bread3_click_area.gotoAndStop(1);
};
};
return_move2 = function (mc, old_x, old_y, go_x, go_y) {
new mx.transitions.Tween(mc, "_x", mx.transitions.easing.Strong.easeOut, old_x, go_x, 10, false);
new mx.transitions.Tween(mc, "_y", mx.transitions.easing.Bounce.easeOut, old_y, go_y, 10, false);
shape_tween = new mx.transitions.Tween(mc, "_alpha", mx.transitions.easing.Bounce.easeOut, 90, 0, 10, false);
if (breadset == bread_order) {
total_ea++;
face_mc.gotoAndStop(2);
breadset = 0;
speech_mc.gotoAndStop(2);
speech_mc.goodbad.gotoAndStop(1);
} else {
face_mc.gotoAndStop(3);
breadset = 0;
speech_mc.gotoAndStop(2);
speech_mc.goodbad.gotoAndStop(2);
}
shape_tween.onMotionFinished = function () {
plate_mc._x = plate_x;
plate_mc._y = plate_y;
plate_mc._alpha = 100;
mc._alpha = 100;
bread1._x = bread1_x;
bread1._y = bread1_y;
bread2._x = bread2_x;
bread2._y = bread2_y;
bread3._x = bread3_x;
bread3._y = bread3_y;
};
};
checking = function () {
if (((breadset > 0) && (soupset > 0)) && (real_eggset > 0)) {
guest1.mc.gotoAndStop(2);
return_move(this["bread" + breadset], this["bread" + breadset]._x, this["bread" + breadset]._y, this["bread" + breadset]._x, this["bread" + breadset]._y - 50);
return_move2(plate_mc, plate_mc._x, plate_mc._y, plate_mc._x, plate_mc._y - 50);
soupset = 0;
real_eggset = 0;
bread_order = 0;
}
};
reset = function () {
face_mc.gotoAndStop(1);
plate_mc.egg.gotoAndStop(1);
plate_mc.vessel_mc.gotoAndStop(1);
bread1_click_area.gotoAndStop(1);
bread2_click_area.gotoAndStop(1);
bread3_click_area.gotoAndStop(1);
scoop_area.gotoAndStop(1);
bread1._x = bread1_x;
bread1._y = bread1_y;
bread2._x = bread2_x;
bread2._y = bread2_y;
bread3._x = bread3_x;
bread3._y = bread3_y;
g1 = g2;
guest1.gotoAndStop(g1);
g2 = g3;
guest2.gotoAndStop(g2);
g3 = random(3) + 1;
guest3.gotoAndStop(g3);
bread_order = random(3) + 1;
speech_mc.gotoAndStop(1);
speech_mc.bread_mc.gotoAndStop(bread_order);
};
Frame 6
function updatePoint(point) {
bake_type = _root.game.bake_type;
var _local3 = _root.game.bread[bake_type];
_local3.tot_num = _local3.tot_num + point;
_local3.fr3 = _local3.fr3 + point;
_parent.set_bread_info3(bake_type);
var _local4 = _parent.chk_s12(bake_type);
if (_local4 == 12) {
_parent.set_slot_num12();
} else if (_local4 == 13) {
_parent.set_slot_num13();
}
}
function isSuccess(myPoint) {
return(myPoint >= bonusLimit);
}
function endGame(myPoint) {
if (isSuccess(myPoint)) {
myPoint = _root.checkGoldBead(myPoint + 30);
timeover_mc.gotoAndStop(3);
updatePoint(myPoint);
timeover_mc.bt.onRelease = function () {
_root.mini_stop();
};
} else {
myPoint = _root.checkGoldBead(myPoint);
timeover_mc.gotoAndStop(2);
updatePoint(myPoint);
timeover_mc.bt.onRelease = function () {
_root.mini_stop();
};
}
}
stop();
var bonusLimit = 10;
endGame(total_ea);
Symbol 27 Button
on (release) {
getURL ("http://www.vvvic.com/Util/LinkProc.asp", "_blank");
}
Symbol 219 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 220 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 221 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 222 MovieClip [__Packages.mx.transitions.easing.Strong] Frame 0
class mx.transitions.easing.Strong
{
function Strong () {
}
static function easeIn(t, b, c, d) {
t = t / d;
return((((((c * t) * t) * t) * t) * t) + b);
}
static function easeOut(t, b, c, d) {
t = (t / d) - 1;
return((c * (((((t * t) * t) * t) * t) + 1)) + b);
}
static function easeInOut(t, b, c, d) {
t = t / (d / 2);
if (t < 1) {
return(((((((c / 2) * t) * t) * t) * t) * t) + b);
}
t = t - 2;
return(((c / 2) * (((((t * t) * t) * t) * t) + 2)) + b);
}
static var version = "1.1.0.52";
}
Symbol 223 MovieClip [__Packages.mx.transitions.easing.Bounce] Frame 0
class mx.transitions.easing.Bounce
{
function Bounce () {
}
static function easeOut(t, b, c, d) {
t = t / d;
if (t < 0.363636363636364) {
return((c * ((7.5625 * t) * t)) + b);
}
if (t < 0.727272727272727) {
t = t - 0.545454545454545;
return((c * (((7.5625 * t) * t) + 0.75)) + b);
}
if (t < 0.909090909090909) {
t = t - 0.818181818181818;
return((c * (((7.5625 * t) * t) + 0.9375)) + b);
}
t = t - 0.954545454545455;
return((c * (((7.5625 * t) * t) + 0.984375)) + b);
}
static function easeIn(t, b, c, d) {
return((c - easeOut(d - t, 0, c, d)) + b);
}
static function easeInOut(t, b, c, d) {
if (t < (d / 2)) {
return((easeIn(t * 2, 0, c, d) * 0.5) + b);
}
return(((easeOut((t * 2) - d, 0, c, d) * 0.5) + (c * 0.5)) + b);
}
static var version = "1.1.0.52";
}
Symbol 71 MovieClip Frame 1
stop();
Symbol 71 MovieClip Frame 2
stop();
Symbol 76 MovieClip Frame 1
stop();
Symbol 76 MovieClip Frame 2
stop();
Symbol 81 MovieClip Frame 1
stop();
Symbol 81 MovieClip Frame 2
stop();
Symbol 82 MovieClip Frame 1
stop();
Symbol 82 MovieClip Frame 2
stop();
Symbol 82 MovieClip Frame 3
stop();
Symbol 94 MovieClip Frame 1
stop();
Symbol 94 MovieClip Frame 2
stop();
Symbol 94 MovieClip Frame 3
stop();
Symbol 97 MovieClip Frame 11
stop();
_parent._parent._parent.reset();
Symbol 100 MovieClip Frame 11
stop();
_parent._parent._parent.reset();
Symbol 101 MovieClip Frame 1
stop();
Symbol 101 MovieClip Frame 2
stop();
Symbol 102 MovieClip Frame 1
stop();
Symbol 102 MovieClip Frame 2
stop();
Symbol 125 MovieClip Frame 1
stop();
Symbol 125 MovieClip Frame 2
stop();
Symbol 125 MovieClip Frame 3
stop();
Symbol 125 MovieClip Frame 4
stop();
Symbol 125 MovieClip Frame 5
stop();
Symbol 125 MovieClip Frame 6
stop();
Symbol 125 MovieClip Frame 7
stop();
Symbol 125 MovieClip Frame 8
stop();
Symbol 125 MovieClip Frame 9
stop();
Symbol 125 MovieClip Frame 10
stop();
Symbol 125 MovieClip Frame 11
stop();
Symbol 129 MovieClip Frame 1
stop();
graph_mc._xscale = 100;
starting = "yes";
now_sec = 90;
this.onEnterFrame = function () {
if (starting == "yes") {
now = new Date();
minus = now.getSeconds();
starting = "ok";
} else if (starting == "ok") {
now = new Date();
now.setSeconds(now.getSeconds() - minus);
if (now.getSeconds() > 0) {
now = new Date();
minus = now.getSeconds();
now_sec = now_sec - 1;
}
graph_mc._xscale = int(now_sec * 1.11);
if (now_sec == 0) {
starting = "stop";
delete this.onEnterFrame;
gotoAndStop (2);
}
}
myString = new String(_parent.total_ea);
len = myString.length;
i = 0;
while (i < len) {
this["score_img" + (i + 1)] = myString.substr(i, 1);
is = int(this["score_img" + (i + 1)]);
if (this["score_img" + (i + 1)].length > 0) {
this["len" + (i + (3 - len))].gotoAndStop(is + 2);
}
i++;
}
};
Symbol 129 MovieClip Frame 2
stop();
graph_mc._xscale = 0;
_parent.gstop();
Symbol 144 MovieClip Frame 1
stop();
Symbol 144 MovieClip Frame 2
stop();
Symbol 144 MovieClip Frame 3
stop();
Symbol 150 MovieClip Frame 1
stop();
Symbol 150 MovieClip Frame 2
stop();
Symbol 154 MovieClip Frame 1
stop();
Symbol 154 MovieClip Frame 2
stop();
Symbol 158 MovieClip Frame 1
stop();
Symbol 158 MovieClip Frame 2
stop();
Symbol 159 MovieClip Frame 1
stop();
Symbol 171 MovieClip Frame 1
stop();
click_area.gotoAndStop(2);
Symbol 171 MovieClip Frame 2
stop();
click_area.gotoAndStop(2);
Symbol 171 MovieClip Frame 100
click_area.gotoAndStop(1);
Symbol 171 MovieClip Frame 108
stop();
Symbol 171 MovieClip Frame 110
stop();
Symbol 171 MovieClip Frame 111
stop();
Symbol 178 MovieClip Frame 1
stop();
Symbol 189 MovieClip Frame 1
stop();
Symbol 189 MovieClip Frame 3
stop();
Symbol 189 MovieClip Frame 12
_parent.re_move(this, this._x, this._y, _parent.scoop_x, _parent.scoop_y);
Symbol 189 MovieClip Frame 16
stop();
gotoAndStop (1);
Symbol 197 MovieClip Frame 1
stop();
Symbol 197 MovieClip Frame 14
stop();
this._x = _parent.my_x + _parent.egg_x;
this._y = _parent.my_y + _parent.egg_y;
_parent.egg_area.gotoAndStop(1);
gotoAndStop (1);
Symbol 208 Button
on (release) {
_root.mc_type.removeMovieClip();
_root.gotoAndStop("load");
}
Symbol 213 Button
on (release) {
getURL ("http://www.vvvic.com/Util/LinkProc.asp", "_blank");
}
Symbol 218 MovieClip Frame 1
stop();
Symbol 218 MovieClip Frame 2
stop();
Symbol 218 MovieClip Frame 3
stop();