Frame 1
Stage.showMenu = eval (false)();
var MochiAd = {getVersion:function () {
return("1.5");
}, showPreloaderAd:function (options) {
var _local1 = this;
var DEFAULTS = {clip:_root, ad_timeout:3000, fadeout_time:250, regpt:"o", method:"showPreloaderAd", color:16747008, background:16777161, outline:13994812, ad_started:function () {
this.clip.stop();
}, ad_finished:function () {
this.clip.play();
}};
options = MochiAd._parseOptions(options, DEFAULTS);
var clip = options.clip;
var ad_msec = 11000;
var ad_timeout = options.ad_timeout;
delete options.ad_timeout;
var fadeout_time = options.fadeout_time;
delete options.fadeout_time;
if (!MochiAd.load(options)) {
options.ad_finished();
} else {
options.ad_started();
var mc = clip._mochiad;
mc.onUnload = function () {
options.ad_finished();
};
var wh = MochiAd._getRes(options);
var _local3 = wh[0];
var h = wh[1];
mc._x = _local3 * 0.5;
mc._y = h * 0.5;
var chk = mc.createEmptyMovieClip("_mochiad_wait", 3);
chk._x = _local3 * -0.5;
chk._y = h * -0.5;
var bar = chk.createEmptyMovieClip("_mochiad_bar", 4);
bar._x = 10;
bar._y = h - 20;
var bar_color = options.color;
delete options.color;
var bar_background = options.background;
delete options.background;
var bar_outline = options.outline;
delete options.outline;
var backing = bar.createEmptyMovieClip("_outline", 1);
backing.beginFill(bar_background);
backing.moveTo(0, 0);
backing.lineTo(_local3 - 20, 0);
backing.lineTo(_local3 - 20, 10);
backing.lineTo(0, 10);
backing.lineTo(0, 0);
backing.endFill();
var _local2 = bar.createEmptyMovieClip("_inside", 2);
_local2.beginFill(bar_color);
_local2.moveTo(0, 0);
_local2.lineTo(_local3 - 20, 0);
_local2.lineTo(_local3 - 20, 10);
_local2.lineTo(0, 10);
_local2.lineTo(0, 0);
_local2.endFill();
_local2._xscale = 0;
var outline = bar.createEmptyMovieClip("_outline", 3);
outline.lineStyle(0, bar_outline, 100);
outline.moveTo(0, 0);
outline.lineTo(_local3 - 20, 0);
outline.lineTo(_local3 - 20, 10);
outline.lineTo(0, 10);
outline.lineTo(0, 0);
chk.ad_msec = ad_msec;
chk.ad_timeout = ad_timeout;
chk.started = getTimer();
chk.showing = false;
chk.last_pcnt = 0;
chk.fadeout_time = fadeout_time;
chk.fadeFunction = function () {
var _local1 = this;
var _local2 = 100 * (1 - ((getTimer() - _local1.fadeout_start) / _local1.fadeout_time));
if (_local2 > 0) {
_local1._parent._alpha = _local2;
} else {
var _local3 = _local1._parent._parent;
MochiAd.unload(_local3);
delete _local1.onEnterFrame;
}
};
mc.lc.adLoaded = function (width, height) {
};
mc.lc.adjustProgress = function (msec) {
var _local1 = this.mc._mochiad_wait;
_local1.server_control = true;
_local1.started = getTimer();
_local1.ad_msec = msec;
};
chk.onEnterFrame = function () {
var _local1 = this;
var _clip = _local1._parent._parent;
var ad_clip = _local1._parent._mochiad_ctr;
var elapsed = (getTimer() - _local1.started);
var _local3 = false;
var clip_total = _clip.getBytesTotal();
var clip_loaded = _clip.getBytesLoaded();
var clip_pcnt = ((100 * clip_loaded) / clip_total);
var ad_pcnt = ((100 * elapsed) / chk.ad_msec);
var _inside = _local1._mochiad_bar._inside;
var _local2 = Math.min(100, Math.min(clip_pcnt || 0, ad_pcnt));
_local2 = Math.max(_local1.last_pcnt, _local2);
_local1.last_pcnt = _local2;
_inside._xscale = _local2;
if (!chk.showing) {
var total = ad_clip.getBytesTotal();
if ((total > 0) || (typeof(total) == "undefined")) {
chk.showing = true;
chk.started = getTimer();
} else if (elapsed > chk.ad_timeout) {
_local3 = true;
}
}
if (elapsed > chk.ad_msec) {
_local3 = true;
}
if (((clip_total > 0) && (clip_loaded >= clip_total)) && (_local3)) {
if (_local1.server_control) {
delete _local1.onEnterFrame;
} else {
_local1.fadeout_start = getTimer();
_local1.onEnterFrame = chk.fadeFunction;
}
}
};
}
}, showTimedAd:function (options) {
var _local1 = this;
var DEFAULTS = {clip:_root, ad_timeout:2000, fadeout_time:250, regpt:"o", method:"showTimedAd", ad_started:function () {
this.clip.stop();
}, ad_finished:function () {
this.clip.play();
}};
options = MochiAd._parseOptions(options, DEFAULTS);
var clip = options.clip;
var ad_msec = 11000;
var ad_timeout = options.ad_timeout;
delete options.ad_timeout;
var fadeout_time = options.fadeout_time;
delete options.fadeout_time;
if (!MochiAd.load(options)) {
options.ad_finished();
} else {
options.ad_started();
var _local2 = clip._mochiad;
_local2.onUnload = function () {
options.ad_finished();
};
var wh = MochiAd._getRes(options);
var w = wh[0];
var h = wh[1];
_local2._x = w * 0.5;
_local2._y = h * 0.5;
var chk = _local2.createEmptyMovieClip("_mochiad_wait", 3);
chk.ad_msec = ad_msec;
chk.ad_timeout = ad_timeout;
chk.started = getTimer();
chk.showing = false;
chk.fadeout_time = fadeout_time;
chk.fadeFunction = function () {
var _local1 = this;
var _local2 = 100 * (1 - ((getTimer() - _local1.fadeout_start) / _local1.fadeout_time));
if (_local2 > 0) {
_local1._parent._alpha = _local2;
} else {
var _local3 = _local1._parent._parent;
MochiAd.unload(_local3);
delete _local1.onEnterFrame;
}
};
_local2.lc.adjustProgress = function (msec) {
var _local1 = this.mc._mochiad_wait;
_local1.server_control = true;
_local1.started = getTimer();
_local1.ad_msec = msec - 250;
};
chk.onEnterFrame = function () {
var _local1 = this;
var ad_clip = _local1._parent._mochiad_ctr;
var elapsed = (getTimer() - _local1.started);
var _local2 = false;
if (!chk.showing) {
var _local3 = ad_clip.getBytesTotal();
if ((_local3 > 0) || (typeof(_local3) == "undefined")) {
chk.showing = true;
chk.started = getTimer();
} else if (elapsed > chk.ad_timeout) {
_local2 = true;
}
}
if (elapsed > chk.ad_msec) {
_local2 = true;
}
if (_local2) {
if (_local1.server_control) {
delete _local1.onEnterFrame;
} else {
_local1.fadeout_start = getTimer();
_local1.onEnterFrame = _local1.fadeFunction;
}
}
};
}
}, _allowDomains:function (server) {
var _local1 = server.split("/")[2].split(":")[0];
if (System.security) {
if (System.security.allowDomain) {
System.security.allowDomain("*");
System.security.allowDomain(_local1);
}
if (System.security.allowInsecureDomain) {
System.security.allowInsecureDomain("*");
System.security.allowInsecureDomain(_local1);
}
}
return(_local1);
}, _loadCommunicator:function (options) {
var _local2 = options;
var _local3 = arguments;
var DEFAULTS = {clip:_root, com_server:"http://x.mochiads.com/com/1/", method:"loadCommunicator", depth:10337, id:"_UNKNOWN_"};
_local2 = MochiAd._parseOptions(_local2, DEFAULTS);
_local2.swfv = _local2.clip.getSWFVersion() || 6;
_local2.mav = MochiAd.getVersion();
var clip = _local2.clip;
var clipname = ("_mochiad_com_" + _local2.id);
if (!MochiAd._isNetworkAvailable()) {
return(null);
}
if (clip[clipname]) {
return(clip[clipname].lc);
}
var server = (_local2.com_server + _local2.id);
MochiAd._allowDomains(server);
delete _local2.id;
delete _local2.com_server;
var depth = _local2.depth;
delete _local2.depth;
var mc = clip.createEmptyMovieClip(clipname, depth);
var lv = mc.createEmptyMovieClip("_mochiad_com", 1);
for (var k in _local2) {
lv[k] = _local2[k];
}
var lc = new LocalConnection();
var name = ["", Math.floor(new Date().getTime()), random(999999)].join("_");
lc.mc = mc;
lc.name = name;
lc.allowDomain = function (d) {
return(true);
};
lc.allowInsecureDomain = lc.allowDomain;
lc.connect(name);
mc.lc = lc;
lv.lc = name;
lc._id = 0;
lc._queue = [];
lc.rpcResult = function (cb) {
cb = parseInt(cb);
var _local2 = this._callbacks[cb];
if (!_local2) {
} else {
delete this._callbacks[cb];
var _local3 = [];
var _local1 = 2;
while (_local1 < _local2.length) {
_local3.push(_local2[_local1]);
_local1++;
}
_local1 = 1;
while (_local1 < arguments.length) {
_local3.push(arguments[_local1]);
_local1++;
}
var method = _local2[1];
var obj = _local2[0];
if (obj && (typeof(method) == "string")) {
method = obj[method];
}
if (method) {
method.apply(obj, _local3);
}
}
};
lc._didConnect = function (endpoint) {
this._endpoint = endpoint;
var _local3 = this._queue;
delete this._queue;
var ds = this.doSend;
var _local1 = 0;
while (_local1 < _local3.length) {
var _local2 = _local3[_local1];
ds.apply(this, _local2);
_local1++;
}
};
lc.doSend = function (args, cbobj, cbfn) {
var _local2 = arguments;
if (this._endpoint == null) {
var _local3 = [];
var _local1 = 0;
while (_local1 < _local2.length) {
_local3.push(_local2[_local1]);
_local1++;
}
this._queue.push(_local3);
} else {
this._id = this._id + 1;
var id = this._id;
if ((cbfn === undefined) || (cbfn === null)) {
cbfn = cbobj;
}
this._callbacks[id] = [cbobj, cbfn];
var slc = new LocalConnection();
var ss = slc.send(this._endpoint, "rpc", id, args);
}
};
lc._callbacks = {};
lc._callbacks[0] = [lc, "_didConnect"];
lv.st = getTimer();
lv.loadMovie(server + ".swf", "POST");
return(lc);
}, fetchHighScores:function (options, callbackObj, callbackMethod) {
var _local2 = options;
var _local1 = MochiAd._loadCommunicator({id:_local2.id});
if (!_local1) {
return(false);
}
var fncall = ["fetchHighScores", _local2];
_local1.doSend(["fetchHighScores", _local2], callbackObj, callbackMethod);
return(true);
}, sendHighScore:function (options, callbackObj, callbackMethod) {
var _local2 = options;
var _local1 = MochiAd._loadCommunicator({id:_local2.id});
if (!_local1) {
return(false);
}
var fncall = ["sendHighScore", _local2];
_local1.doSend(["sendHighScore", _local2], callbackObj, callbackMethod);
return(true);
}, load:function (options) {
var _local1 = options;
var DEFAULTS = {clip:_root, server:"http://x.mochiads.com/srv/1/", method:"load", depth:10333, id:"_UNKNOWN_"};
_local1 = MochiAd._parseOptions(_local1, DEFAULTS);
_local1.swfv = _local1.clip.getSWFVersion() || 6;
_local1.mav = MochiAd.getVersion();
var clip = _local1.clip;
if (!MochiAd._isNetworkAvailable()) {
return(null);
}
if (clip._mochiad_loaded) {
return(null);
}
var depth = _local1.depth;
delete _local1.depth;
var mc = clip.createEmptyMovieClip("_mochiad", depth);
var wh = MochiAd._getRes(_local1);
_local1.res = (wh[0] + "x") + wh[1];
_local1.server = _local1.server + _local1.id;
delete _local1.id;
clip._mochiad_loaded = true;
var _local2 = mc.createEmptyMovieClip("_mochiad_ctr", 1);
for (var k in _local1) {
_local2[k] = _local1[k];
}
if (clip._url.indexOf("http") != 0) {
_local1.no_page = true;
}
var server = _local2.server;
delete _local2.server;
var hostname = MochiAd._allowDomains(server);
mc.onEnterFrame = function () {
var _local1 = this;
if (_local1._mochiad_ctr._url != _local1._url) {
_local1.onEnterFrame = function () {
var _local1 = this;
if (!_local1._mochiad_ctr) {
delete _local1.onEnterFrame;
MochiAd.unload(_local1._parent);
}
};
}
};
var _local3 = new LocalConnection();
var name = ["", Math.floor(new Date().getTime()), random(999999)].join("_");
_local3.mc = mc;
_local3.name = name;
_local3.hostname = hostname;
_local3.allowDomain = function (d) {
return(true);
};
_local3.allowInsecureDomain = _local3.allowDomain;
_local3.connect(name);
mc.lc = _local3;
_local2.lc = name;
_local2.st = getTimer();
_local2.loadMovie(server + ".swf", "POST");
return(mc);
}, unload:function (clip) {
var _local1 = clip;
if (typeof(_local1) == "undefined") {
_local1 = _root;
}
if (_local1.clip && (_local1.clip._mochiad)) {
_local1 = _local1.clip;
}
if (!_local1._mochiad) {
return(false);
}
_local1._mochiad.removeMovieClip();
delete _local1._mochiad_loaded;
delete _local1._mochiad;
return(true);
}, _isNetworkAvailable:function () {
if (System.security) {
var _local1 = System.security;
if (_local1.sandboxType == "localWithFile") {
return(false);
}
}
return(true);
}, _getRes:function (options) {
var _local3 = options.clip.getBounds();
var _local2 = 0;
var _local1 = 0;
if (typeof(options.res) != "undefined") {
var xy = options.res.split("x");
_local2 = parseFloat(xy[0]);
_local1 = parseFloat(xy[1]);
} else {
_local2 = _local3.xMax - _local3.xMin;
_local1 = _local3.yMax - _local3.yMin;
}
if ((_local2 == 0) || (_local1 == 0)) {
_local2 = Stage.width;
_local1 = Stage.height;
}
return([_local2, _local1]);
}, _parseOptions:function (options, defaults) {
var _local3 = {};
for (var k in defaults) {
_local3[k] = defaults[k];
}
if (options) {
for (var k in options) {
_local3[k] = options[k];
}
}
if (_root.mochiad_options) {
var pairs = _root.mochiad_options.split("&");
var _local1 = 0;
while (_local1 < pairs.length) {
var _local2 = pairs[_local1].split("=");
_local3[unescape(_local2[0])] = unescape(_local2[1]);
_local1++;
}
}
return(_local3);
}, _:null};
MochiAd.showPreloaderAd({id:"9677c0a79b1b562a", res:"700x500"});
Frame 2
function __com_mochibot__(swfid, mc, lv, trk) {
var x;
var g;
var s;
var fv;
var sb;
var u;
var res;
var mb;
var mbc;
mb = "__mochibot__";
mbc = "mochibot.com";
g = (_global ? (_global) : (_level0._root));
if (g[mb + swfid]) {
return(g[mb + swfid]);
}
s = System.security;
x = mc._root.getSWFVersion;
fv = (x ? (mc.getSWFVersion()) : ((_global ? 6 : 5)));
if (!s) {
s = {};
}
sb = s.sandboxType;
if (sb == "localWithFile") {
return(null);
}
x = s.allowDomain;
if (x) {
s.allowDomain(mbc);
}
x = s.allowInsecureDomain;
if (x) {
s.allowInsecureDomain(mbc);
}
u = (((((((((((("http://" + mbc) + "/my/core.swf?mv=7&fv=") + fv) + "&v=") + escape(getVersion())) + "&swfid=") + escape(swfid)) + "&l=") + lv) + "&f=") + mc) + (sb ? ("&sb=" + sb) : "")) + (trk ? "&t=1" : "");
lv = ((fv > 6) ? (mc.getNextHighestDepth()) : ((g[mb + "level"] ? (g[mb + "level"] + 1) : (lv))));
g[mb + "level"] = lv;
if (fv == 5) {
res = "_level" + lv;
if (!eval (res)) {
loadMovieNum (u, lv);
}
} else {
res = mc.createEmptyMovieClip(mb + swfid, lv);
res.loadMovie(u);
}
return(res);
}
_root.kongregateServices.connect();
_root.b0on = 1;
_root.bpon = 1;
_root.holeinonespots1 = Array("35,306", "14,135", "431.95,322", "162,84", "132,277", "562.95,114", "297,310", "579.95,265", "64,193");
_root.holeinonespots2 = Array("201,290", "158,303", "253,46", "246,412.95", "246,246", "33,303", "411.95,253", "209,113", "182,171");
_root.holeinonespots3 = Array("606.95,138", "93,209", "452.95,111", "461.95,268", "406,227", "424.95,278", "618.95,332", "134,211", "385,233");
_root.holeinonespots4 = Array("192,12", "386,47", "566.95,297", "469.95,235", "301,52", "390,80", "286,223", "591.95,383", "534.95,459.95");
_root.holeinonespots5 = Array("612.95,284", "259,294", "578.95,230", "229.2,226.4", "59,252", "539.95,192", "570.95,169", "357,327", "579.95,133");
_root.holeinonespots6 = Array("686.95,344", "645.95,108", "485.95,195", "371,453.95", "523.95,495.95", "381,404.95", "615.95,400", "93,251", "234,71");
_root.holeinonespots7 = Array("246,111", "168,187", "399,203", "284,142", "339,419.95", "401,35", "396.9,78.05", "255,355", "237,165");
_root.holeinonespots8 = Array("533.95,460.95", "274,319", "287,426.95", "504.95,206", "88,106", "86,453.95", "379,470.95", "419.95,194", "303,219");
_root.holeinonespots9 = Array("383,267", "447.95,243", "428.95,23", "240,213", "403,58", "532.95,145", "166,239", "242,195", "304,78");
_root.holeinonespots10 = Array("320,250", "619.95,314", "257,393", "592.95,259", "482.95,181", "372,421.95", "536.95,257", "574.95,354", "518.95,477.95");
gravitee_local_data = SharedObject.getLocal("gravitee_data");
_root.savedatavisited = gravitee_local_data.data.planetsvisited;
_root.savedatavisitcount = gravitee_local_data.data.planetsvisitcount;
_root.savedatalongestputt = gravitee_local_data.data.longestputt;
_root.savedataholeinones = gravitee_local_data.data.holeinones;
_root.savedataunlockedbonuses = gravitee_local_data.data.unlockedbonuses;
_root.savedataunlocked = gravitee_local_data.data.unlocked;
_root.savedatatutorial = gravitee_local_data.data.tutorial;
_root.savedatasuntutorial = gravitee_local_data.data.suntutorial;
_root.savedataachievementcount = gravitee_local_data.data.achievementcount;
_root.savedataround1medal = gravitee_local_data.data.round1medal;
_root.savedataround2medal = gravitee_local_data.data.round2medal;
_root.savedataround3medal = gravitee_local_data.data.round3medal;
_root.savedataround4medal = gravitee_local_data.data.round4medal;
_root.savedataround5medal = gravitee_local_data.data.round5medal;
_root.savedataround6medal = gravitee_local_data.data.round6medal;
_root.savedataround7medal = gravitee_local_data.data.round7medal;
_root.savedataround8medal = gravitee_local_data.data.round8medal;
_root.savedataround9medal = gravitee_local_data.data.round9medal;
_root.savedataround10medal = gravitee_local_data.data.round10medal;
if (_root.savedataachievementcount > 0) {
_root.achievementcount = _root.savedataachievementcount;
} else {
_root.achievementcount = 0;
}
if (_root.savedatatutorial > 0) {
_root.donetutorial = 1;
} else {
_root.donetutorial = 0;
}
if (_root.savedatasuntutorial > 0) {
_root.donesuntutorial = 1;
} else {
_root.donesuntutorial = 0;
}
if (_root.savedatalongestputt > 0) {
_root.longestputt = _root.savedatalongestputt;
} else {
_root.longestputt = 0;
}
if (_root.savedataholeinones > 0) {
_root.holeinones = _root.savedataholeinones;
} else {
_root.holeinones = 0;
}
if (_root.savedataunlockedbonuses > 0) {
_root.unlockedbonuses = _root.savedataunlockedbonuses;
} else {
_root.unlockedbonuses = 0;
}
_root.achievementcount = _root.unlockedbonuses;
_root.oldachievementcount = _root.unlockedbonuses;
if (_root.savedataunlocked > 0) {
_root.unlocked = _root.savedataunlocked;
} else {
_root.unlocked = 1;
}
_root.soundmuted = 0;
_root.planetsvisited = 0;
if (_root.savedatavisited.length != 374) {
_root.visit011 = 0;
_root.visit012 = 0;
_root.visit013 = 0;
_root.visit021 = 0;
_root.visit022 = 0;
_root.visit023 = 0;
_root.visit031 = 0;
_root.visit032 = 0;
_root.visit033 = 0;
_root.visit041 = 0;
_root.visit042 = 0;
_root.visit043 = 0;
_root.visit051 = 0;
_root.visit052 = 0;
_root.visit053 = 0;
_root.visit061 = 0;
_root.visit062 = 0;
_root.visit063 = 0;
_root.visit071 = 0;
_root.visit072 = 0;
_root.visit073 = 0;
_root.visit081 = 0;
_root.visit082 = 0;
_root.visit083 = 0;
_root.visit091 = 0;
_root.visit092 = 0;
_root.visit093 = 0;
_root.visit111 = 0;
_root.visit112 = 0;
_root.visit121 = 0;
_root.visit122 = 0;
_root.visit123 = 0;
_root.visit131 = 0;
_root.visit132 = 0;
_root.visit133 = 0;
_root.visit141 = 0;
_root.visit142 = 0;
_root.visit143 = 0;
_root.visit144 = 0;
_root.visit151 = 0;
_root.visit152 = 0;
_root.visit153 = 0;
_root.visit154 = 0;
_root.visit161 = 0;
_root.visit162 = 0;
_root.visit163 = 0;
_root.visit164 = 0;
_root.visit171 = 0;
_root.visit172 = 0;
_root.visit173 = 0;
_root.visit174 = 0;
_root.visit175 = 0;
_root.visit181 = 0;
_root.visit182 = 0;
_root.visit183 = 0;
_root.visit184 = 0;
_root.visit191 = 0;
_root.visit192 = 0;
_root.visit193 = 0;
_root.visit194 = 0;
_root.visit211 = 0;
_root.visit212 = 0;
_root.visit213 = 0;
_root.visit214 = 0;
_root.visit221 = 0;
_root.visit222 = 0;
_root.visit223 = 0;
_root.visit224 = 0;
_root.visit231 = 0;
_root.visit232 = 0;
_root.visit233 = 0;
_root.visit234 = 0;
_root.visit241 = 0;
_root.visit242 = 0;
_root.visit243 = 0;
_root.visit244 = 0;
_root.visit251 = 0;
_root.visit252 = 0;
_root.visit253 = 0;
_root.visit254 = 0;
_root.visit261 = 0;
_root.visit262 = 0;
_root.visit263 = 0;
_root.visit264 = 0;
_root.visit271 = 0;
_root.visit272 = 0;
_root.visit273 = 0;
_root.visit274 = 0;
_root.visit281 = 0;
_root.visit282 = 0;
_root.visit283 = 0;
_root.visit284 = 0;
_root.visit291 = 0;
_root.visit292 = 0;
_root.visit293 = 0;
_root.visit294 = 0;
_root.visit311 = 0;
_root.visit312 = 0;
_root.visit313 = 0;
_root.visit321 = 0;
_root.visit322 = 0;
_root.visit323 = 0;
_root.visit324 = 0;
_root.visit331 = 0;
_root.visit332 = 0;
_root.visit333 = 0;
_root.visit341 = 0;
_root.visit342 = 0;
_root.visit343 = 0;
_root.visit344 = 0;
_root.visit351 = 0;
_root.visit352 = 0;
_root.visit353 = 0;
_root.visit354 = 0;
_root.visit361 = 0;
_root.visit362 = 0;
_root.visit363 = 0;
_root.visit371 = 0;
_root.visit372 = 0;
_root.visit373 = 0;
_root.visit374 = 0;
_root.visit375 = 0;
_root.visit381 = 0;
_root.visit382 = 0;
_root.visit383 = 0;
_root.visit391 = 0;
_root.visit392 = 0;
_root.visit393 = 0;
_root.visit394 = 0;
_root.visit411 = 0;
_root.visit412 = 0;
_root.visit413 = 0;
_root.visit414 = 0;
_root.visit421 = 0;
_root.visit422 = 0;
_root.visit423 = 0;
_root.visit424 = 0;
_root.visit431 = 0;
_root.visit432 = 0;
_root.visit433 = 0;
_root.visit441 = 0;
_root.visit442 = 0;
_root.visit443 = 0;
_root.visit451 = 0;
_root.visit452 = 0;
_root.visit453 = 0;
_root.visit461 = 0;
_root.visit462 = 0;
_root.visit463 = 0;
_root.visit471 = 0;
_root.visit472 = 0;
_root.visit473 = 0;
_root.visit474 = 0;
_root.visit481 = 0;
_root.visit482 = 0;
_root.visit483 = 0;
_root.visit484 = 0;
_root.visit485 = 0;
_root.visit491 = 0;
_root.visit492 = 0;
_root.visit493 = 0;
_root.visit494 = 0;
_root.visit495 = 0;
_root.visit511 = 0;
_root.visit512 = 0;
_root.visit513 = 0;
_root.visit514 = 0;
_root.visit515 = 0;
_root.visit521 = 0;
_root.visit522 = 0;
_root.visit523 = 0;
_root.visit524 = 0;
_root.visit525 = 0;
_root.visit531 = 0;
_root.visit532 = 0;
_root.visit533 = 0;
_root.visit534 = 0;
_root.visit535 = 0;
_root.visit541 = 0;
_root.visit542 = 0;
_root.visit543 = 0;
_root.visit544 = 0;
_root.visit545 = 0;
_root.visit551 = 0;
_root.visit552 = 0;
_root.visit553 = 0;
_root.visit554 = 0;
_root.visit555 = 0;
_root.visit561 = 0;
_root.visit562 = 0;
_root.visit563 = 0;
_root.visit564 = 0;
_root.visit565 = 0;
_root.visit571 = 0;
_root.visit572 = 0;
_root.visit573 = 0;
_root.visit574 = 0;
_root.visit575 = 0;
_root.visit581 = 0;
_root.visit582 = 0;
_root.visit583 = 0;
_root.visit584 = 0;
_root.visit585 = 0;
_root.visit591 = 0;
_root.visit592 = 0;
_root.visit593 = 0;
_root.visit594 = 0;
_root.visit595 = 0;
_root.visit611 = 0;
_root.visit612 = 0;
_root.visit613 = 0;
_root.visit614 = 0;
_root.visit621 = 0;
_root.visit622 = 0;
_root.visit623 = 0;
_root.visit624 = 0;
_root.visit631 = 0;
_root.visit632 = 0;
_root.visit633 = 0;
_root.visit634 = 0;
_root.visit635 = 0;
_root.visit641 = 0;
_root.visit642 = 0;
_root.visit643 = 0;
_root.visit644 = 0;
_root.visit651 = 0;
_root.visit652 = 0;
_root.visit653 = 0;
_root.visit654 = 0;
_root.visit655 = 0;
_root.visit661 = 0;
_root.visit662 = 0;
_root.visit663 = 0;
_root.visit664 = 0;
_root.visit671 = 0;
_root.visit672 = 0;
_root.visit673 = 0;
_root.visit674 = 0;
_root.visit675 = 0;
_root.visit681 = 0;
_root.visit682 = 0;
_root.visit683 = 0;
_root.visit691 = 0;
_root.visit692 = 0;
_root.visit693 = 0;
_root.visit694 = 0;
_root.visit695 = 0;
_root.visit711 = 0;
_root.visit712 = 0;
_root.visit713 = 0;
_root.visit714 = 0;
_root.visit721 = 0;
_root.visit722 = 0;
_root.visit723 = 0;
_root.visit724 = 0;
_root.visit725 = 0;
_root.visit731 = 0;
_root.visit732 = 0;
_root.visit733 = 0;
_root.visit734 = 0;
_root.visit735 = 0;
_root.visit741 = 0;
_root.visit742 = 0;
_root.visit743 = 0;
_root.visit744 = 0;
_root.visit751 = 0;
_root.visit752 = 0;
_root.visit753 = 0;
_root.visit754 = 0;
_root.visit761 = 0;
_root.visit762 = 0;
_root.visit763 = 0;
_root.visit764 = 0;
_root.visit765 = 0;
_root.visit771 = 0;
_root.visit772 = 0;
_root.visit773 = 0;
_root.visit774 = 0;
_root.visit775 = 0;
_root.visit776 = 0;
_root.visit781 = 0;
_root.visit782 = 0;
_root.visit783 = 0;
_root.visit784 = 0;
_root.visit791 = 0;
_root.visit792 = 0;
_root.visit793 = 0;
_root.visit811 = 0;
_root.visit812 = 0;
_root.visit813 = 0;
_root.visit814 = 0;
_root.visit821 = 0;
_root.visit822 = 0;
_root.visit823 = 0;
_root.visit824 = 0;
_root.visit825 = 0;
_root.visit831 = 0;
_root.visit832 = 0;
_root.visit833 = 0;
_root.visit834 = 0;
_root.visit835 = 0;
_root.visit841 = 0;
_root.visit842 = 0;
_root.visit843 = 0;
_root.visit844 = 0;
_root.visit845 = 0;
_root.visit851 = 0;
_root.visit852 = 0;
_root.visit853 = 0;
_root.visit854 = 0;
_root.visit855 = 0;
_root.visit861 = 0;
_root.visit862 = 0;
_root.visit863 = 0;
_root.visit864 = 0;
_root.visit871 = 0;
_root.visit872 = 0;
_root.visit873 = 0;
_root.visit874 = 0;
_root.visit875 = 0;
_root.visit881 = 0;
_root.visit882 = 0;
_root.visit883 = 0;
_root.visit884 = 0;
_root.visit891 = 0;
_root.visit892 = 0;
_root.visit893 = 0;
_root.visit894 = 0;
_root.visit911 = 0;
_root.visit912 = 0;
_root.visit913 = 0;
_root.visit914 = 0;
_root.visit915 = 0;
_root.visit921 = 0;
_root.visit922 = 0;
_root.visit923 = 0;
_root.visit924 = 0;
_root.visit931 = 0;
_root.visit932 = 0;
_root.visit933 = 0;
_root.visit934 = 0;
_root.visit935 = 0;
_root.visit936 = 0;
_root.visit941 = 0;
_root.visit942 = 0;
_root.visit943 = 0;
_root.visit944 = 0;
_root.visit945 = 0;
_root.visit951 = 0;
_root.visit952 = 0;
_root.visit953 = 0;
_root.visit954 = 0;
_root.visit955 = 0;
_root.visit956 = 0;
_root.visit957 = 0;
_root.visit961 = 0;
_root.visit962 = 0;
_root.visit963 = 0;
_root.visit964 = 0;
_root.visit965 = 0;
_root.visit971 = 0;
_root.visit972 = 0;
_root.visit973 = 0;
_root.visit974 = 0;
_root.visit975 = 0;
_root.visit981 = 0;
_root.visit982 = 0;
_root.visit983 = 0;
_root.visit984 = 0;
_root.visit985 = 0;
_root.visit991 = 0;
_root.visit992 = 0;
_root.visit993 = 0;
_root.visit994 = 0;
} else {
_root.visit011 = _root.savedatavisited.substr(0, 1);
_root.visit012 = _root.savedatavisited.substr(1, 1);
_root.visit013 = _root.savedatavisited.substr(2, 1);
_root.visit021 = _root.savedatavisited.substr(3, 1);
_root.visit022 = _root.savedatavisited.substr(4, 1);
_root.visit023 = _root.savedatavisited.substr(5, 1);
_root.visit031 = _root.savedatavisited.substr(6, 1);
_root.visit032 = _root.savedatavisited.substr(7, 1);
_root.visit033 = _root.savedatavisited.substr(8, 1);
_root.visit041 = _root.savedatavisited.substr(9, 1);
_root.visit042 = _root.savedatavisited.substr(10, 1);
_root.visit043 = _root.savedatavisited.substr(11, 1);
_root.visit051 = _root.savedatavisited.substr(12, 1);
_root.visit052 = _root.savedatavisited.substr(13, 1);
_root.visit053 = _root.savedatavisited.substr(14, 1);
_root.visit061 = _root.savedatavisited.substr(15, 1);
_root.visit062 = _root.savedatavisited.substr(16, 1);
_root.visit063 = _root.savedatavisited.substr(17, 1);
_root.visit071 = _root.savedatavisited.substr(18, 1);
_root.visit072 = _root.savedatavisited.substr(19, 1);
_root.visit073 = _root.savedatavisited.substr(20, 1);
_root.visit081 = _root.savedatavisited.substr(21, 1);
_root.visit082 = _root.savedatavisited.substr(22, 1);
_root.visit083 = _root.savedatavisited.substr(23, 1);
_root.visit091 = _root.savedatavisited.substr(24, 1);
_root.visit092 = _root.savedatavisited.substr(25, 1);
_root.visit093 = _root.savedatavisited.substr(26, 1);
_root.visit111 = _root.savedatavisited.substr(27, 1);
_root.visit112 = _root.savedatavisited.substr(28, 1);
_root.visit121 = _root.savedatavisited.substr(29, 1);
_root.visit122 = _root.savedatavisited.substr(30, 1);
_root.visit123 = _root.savedatavisited.substr(31, 1);
_root.visit131 = _root.savedatavisited.substr(32, 1);
_root.visit132 = _root.savedatavisited.substr(33, 1);
_root.visit133 = _root.savedatavisited.substr(34, 1);
_root.visit141 = _root.savedatavisited.substr(35, 1);
_root.visit142 = _root.savedatavisited.substr(36, 1);
_root.visit143 = _root.savedatavisited.substr(37, 1);
_root.visit144 = _root.savedatavisited.substr(38, 1);
_root.visit151 = _root.savedatavisited.substr(39, 1);
_root.visit152 = _root.savedatavisited.substr(40, 1);
_root.visit153 = _root.savedatavisited.substr(41, 1);
_root.visit154 = _root.savedatavisited.substr(42, 1);
_root.visit161 = _root.savedatavisited.substr(43, 1);
_root.visit162 = _root.savedatavisited.substr(44, 1);
_root.visit163 = _root.savedatavisited.substr(45, 1);
_root.visit164 = _root.savedatavisited.substr(46, 1);
_root.visit171 = _root.savedatavisited.substr(47, 1);
_root.visit172 = _root.savedatavisited.substr(48, 1);
_root.visit173 = _root.savedatavisited.substr(49, 1);
_root.visit174 = _root.savedatavisited.substr(50, 1);
_root.visit175 = _root.savedatavisited.substr(51, 1);
_root.visit181 = _root.savedatavisited.substr(52, 1);
_root.visit182 = _root.savedatavisited.substr(53, 1);
_root.visit183 = _root.savedatavisited.substr(54, 1);
_root.visit184 = _root.savedatavisited.substr(55, 1);
_root.visit191 = _root.savedatavisited.substr(56, 1);
_root.visit192 = _root.savedatavisited.substr(57, 1);
_root.visit193 = _root.savedatavisited.substr(58, 1);
_root.visit194 = _root.savedatavisited.substr(59, 1);
_root.visit211 = _root.savedatavisited.substr(60, 1);
_root.visit212 = _root.savedatavisited.substr(61, 1);
_root.visit213 = _root.savedatavisited.substr(62, 1);
_root.visit214 = _root.savedatavisited.substr(63, 1);
_root.visit221 = _root.savedatavisited.substr(64, 1);
_root.visit222 = _root.savedatavisited.substr(65, 1);
_root.visit223 = _root.savedatavisited.substr(66, 1);
_root.visit224 = _root.savedatavisited.substr(67, 1);
_root.visit231 = _root.savedatavisited.substr(68, 1);
_root.visit232 = _root.savedatavisited.substr(69, 1);
_root.visit233 = _root.savedatavisited.substr(70, 1);
_root.visit234 = _root.savedatavisited.substr(71, 1);
_root.visit241 = _root.savedatavisited.substr(72, 1);
_root.visit242 = _root.savedatavisited.substr(73, 1);
_root.visit243 = _root.savedatavisited.substr(74, 1);
_root.visit244 = _root.savedatavisited.substr(75, 1);
_root.visit251 = _root.savedatavisited.substr(76, 1);
_root.visit252 = _root.savedatavisited.substr(77, 1);
_root.visit253 = _root.savedatavisited.substr(78, 1);
_root.visit254 = _root.savedatavisited.substr(79, 1);
_root.visit261 = _root.savedatavisited.substr(80, 1);
_root.visit262 = _root.savedatavisited.substr(81, 1);
_root.visit263 = _root.savedatavisited.substr(82, 1);
_root.visit264 = _root.savedatavisited.substr(83, 1);
_root.visit271 = _root.savedatavisited.substr(84, 1);
_root.visit272 = _root.savedatavisited.substr(85, 1);
_root.visit273 = _root.savedatavisited.substr(86, 1);
_root.visit274 = _root.savedatavisited.substr(87, 1);
_root.visit281 = _root.savedatavisited.substr(88, 1);
_root.visit282 = _root.savedatavisited.substr(89, 1);
_root.visit283 = _root.savedatavisited.substr(90, 1);
_root.visit284 = _root.savedatavisited.substr(91, 1);
_root.visit291 = _root.savedatavisited.substr(92, 1);
_root.visit292 = _root.savedatavisited.substr(93, 1);
_root.visit293 = _root.savedatavisited.substr(94, 1);
_root.visit294 = _root.savedatavisited.substr(95, 1);
_root.visit311 = _root.savedatavisited.substr(96, 1);
_root.visit312 = _root.savedatavisited.substr(97, 1);
_root.visit313 = _root.savedatavisited.substr(98, 1);
_root.visit321 = _root.savedatavisited.substr(99, 1);
_root.visit322 = _root.savedatavisited.substr(100, 1);
_root.visit323 = _root.savedatavisited.substr(101, 1);
_root.visit324 = _root.savedatavisited.substr(102, 1);
_root.visit331 = _root.savedatavisited.substr(103, 1);
_root.visit332 = _root.savedatavisited.substr(104, 1);
_root.visit333 = _root.savedatavisited.substr(105, 1);
_root.visit341 = _root.savedatavisited.substr(106, 1);
_root.visit342 = _root.savedatavisited.substr(107, 1);
_root.visit343 = _root.savedatavisited.substr(108, 1);
_root.visit344 = _root.savedatavisited.substr(109, 1);
_root.visit351 = _root.savedatavisited.substr(110, 1);
_root.visit352 = _root.savedatavisited.substr(111, 1);
_root.visit353 = _root.savedatavisited.substr(112, 1);
_root.visit354 = _root.savedatavisited.substr(113, 1);
_root.visit361 = _root.savedatavisited.substr(114, 1);
_root.visit362 = _root.savedatavisited.substr(115, 1);
_root.visit363 = _root.savedatavisited.substr(116, 1);
_root.visit371 = _root.savedatavisited.substr(117, 1);
_root.visit372 = _root.savedatavisited.substr(118, 1);
_root.visit373 = _root.savedatavisited.substr(119, 1);
_root.visit374 = _root.savedatavisited.substr(120, 1);
_root.visit375 = _root.savedatavisited.substr(121, 1);
_root.visit381 = _root.savedatavisited.substr(122, 1);
_root.visit382 = _root.savedatavisited.substr(123, 1);
_root.visit383 = _root.savedatavisited.substr(124, 1);
_root.visit391 = _root.savedatavisited.substr(125, 1);
_root.visit392 = _root.savedatavisited.substr(126, 1);
_root.visit393 = _root.savedatavisited.substr(127, 1);
_root.visit394 = _root.savedatavisited.substr(128, 1);
_root.visit411 = _root.savedatavisited.substr(129, 1);
_root.visit412 = _root.savedatavisited.substr(130, 1);
_root.visit413 = _root.savedatavisited.substr(131, 1);
_root.visit414 = _root.savedatavisited.substr(132, 1);
_root.visit421 = _root.savedatavisited.substr(133, 1);
_root.visit422 = _root.savedatavisited.substr(134, 1);
_root.visit423 = _root.savedatavisited.substr(135, 1);
_root.visit424 = _root.savedatavisited.substr(136, 1);
_root.visit431 = _root.savedatavisited.substr(137, 1);
_root.visit432 = _root.savedatavisited.substr(138, 1);
_root.visit433 = _root.savedatavisited.substr(139, 1);
_root.visit441 = _root.savedatavisited.substr(140, 1);
_root.visit442 = _root.savedatavisited.substr(141, 1);
_root.visit443 = _root.savedatavisited.substr(142, 1);
_root.visit451 = _root.savedatavisited.substr(143, 1);
_root.visit452 = _root.savedatavisited.substr(144, 1);
_root.visit453 = _root.savedatavisited.substr(145, 1);
_root.visit461 = _root.savedatavisited.substr(146, 1);
_root.visit462 = _root.savedatavisited.substr(147, 1);
_root.visit463 = _root.savedatavisited.substr(148, 1);
_root.visit471 = _root.savedatavisited.substr(149, 1);
_root.visit472 = _root.savedatavisited.substr(150, 1);
_root.visit473 = _root.savedatavisited.substr(151, 1);
_root.visit474 = _root.savedatavisited.substr(152, 1);
_root.visit481 = _root.savedatavisited.substr(153, 1);
_root.visit482 = _root.savedatavisited.substr(154, 1);
_root.visit483 = _root.savedatavisited.substr(155, 1);
_root.visit484 = _root.savedatavisited.substr(156, 1);
_root.visit485 = _root.savedatavisited.substr(157, 1);
_root.visit491 = _root.savedatavisited.substr(158, 1);
_root.visit492 = _root.savedatavisited.substr(159, 1);
_root.visit493 = _root.savedatavisited.substr(160, 1);
_root.visit494 = _root.savedatavisited.substr(161, 1);
_root.visit495 = _root.savedatavisited.substr(162, 1);
_root.visit511 = _root.savedatavisited.substr(163, 1);
_root.visit512 = _root.savedatavisited.substr(164, 1);
_root.visit513 = _root.savedatavisited.substr(165, 1);
_root.visit514 = _root.savedatavisited.substr(166, 1);
_root.visit515 = _root.savedatavisited.substr(167, 1);
_root.visit521 = _root.savedatavisited.substr(168, 1);
_root.visit522 = _root.savedatavisited.substr(169, 1);
_root.visit523 = _root.savedatavisited.substr(170, 1);
_root.visit524 = _root.savedatavisited.substr(171, 1);
_root.visit525 = _root.savedatavisited.substr(172, 1);
_root.visit531 = _root.savedatavisited.substr(173, 1);
_root.visit532 = _root.savedatavisited.substr(174, 1);
_root.visit533 = _root.savedatavisited.substr(175, 1);
_root.visit534 = _root.savedatavisited.substr(176, 1);
_root.visit535 = _root.savedatavisited.substr(177, 1);
_root.visit541 = _root.savedatavisited.substr(178, 1);
_root.visit542 = _root.savedatavisited.substr(179, 1);
_root.visit543 = _root.savedatavisited.substr(180, 1);
_root.visit544 = _root.savedatavisited.substr(181, 1);
_root.visit545 = _root.savedatavisited.substr(182, 1);
_root.visit551 = _root.savedatavisited.substr(183, 1);
_root.visit552 = _root.savedatavisited.substr(184, 1);
_root.visit553 = _root.savedatavisited.substr(185, 1);
_root.visit554 = _root.savedatavisited.substr(186, 1);
_root.visit555 = _root.savedatavisited.substr(187, 1);
_root.visit561 = _root.savedatavisited.substr(188, 1);
_root.visit562 = _root.savedatavisited.substr(189, 1);
_root.visit563 = _root.savedatavisited.substr(190, 1);
_root.visit564 = _root.savedatavisited.substr(191, 1);
_root.visit565 = _root.savedatavisited.substr(192, 1);
_root.visit571 = _root.savedatavisited.substr(193, 1);
_root.visit572 = _root.savedatavisited.substr(194, 1);
_root.visit573 = _root.savedatavisited.substr(195, 1);
_root.visit574 = _root.savedatavisited.substr(196, 1);
_root.visit575 = _root.savedatavisited.substr(197, 1);
_root.visit581 = _root.savedatavisited.substr(198, 1);
_root.visit582 = _root.savedatavisited.substr(199, 1);
_root.visit583 = _root.savedatavisited.substr(200, 1);
_root.visit584 = _root.savedatavisited.substr(201, 1);
_root.visit585 = _root.savedatavisited.substr(202, 1);
_root.visit591 = _root.savedatavisited.substr(203, 1);
_root.visit592 = _root.savedatavisited.substr(204, 1);
_root.visit593 = _root.savedatavisited.substr(205, 1);
_root.visit594 = _root.savedatavisited.substr(206, 1);
_root.visit595 = _root.savedatavisited.substr(207, 1);
_root.visit611 = _root.savedatavisited.substr(208, 1);
_root.visit612 = _root.savedatavisited.substr(209, 1);
_root.visit613 = _root.savedatavisited.substr(210, 1);
_root.visit614 = _root.savedatavisited.substr(211, 1);
_root.visit621 = _root.savedatavisited.substr(212, 1);
_root.visit622 = _root.savedatavisited.substr(213, 1);
_root.visit623 = _root.savedatavisited.substr(214, 1);
_root.visit624 = _root.savedatavisited.substr(215, 1);
_root.visit631 = _root.savedatavisited.substr(216, 1);
_root.visit632 = _root.savedatavisited.substr(217, 1);
_root.visit633 = _root.savedatavisited.substr(218, 1);
_root.visit634 = _root.savedatavisited.substr(219, 1);
_root.visit635 = _root.savedatavisited.substr(220, 1);
_root.visit641 = _root.savedatavisited.substr(221, 1);
_root.visit642 = _root.savedatavisited.substr(222, 1);
_root.visit643 = _root.savedatavisited.substr(223, 1);
_root.visit644 = _root.savedatavisited.substr(224, 1);
_root.visit651 = _root.savedatavisited.substr(225, 1);
_root.visit652 = _root.savedatavisited.substr(226, 1);
_root.visit653 = _root.savedatavisited.substr(227, 1);
_root.visit654 = _root.savedatavisited.substr(228, 1);
_root.visit655 = _root.savedatavisited.substr(229, 1);
_root.visit661 = _root.savedatavisited.substr(230, 1);
_root.visit662 = _root.savedatavisited.substr(231, 1);
_root.visit663 = _root.savedatavisited.substr(232, 1);
_root.visit664 = _root.savedatavisited.substr(233, 1);
_root.visit671 = _root.savedatavisited.substr(234, 1);
_root.visit672 = _root.savedatavisited.substr(235, 1);
_root.visit673 = _root.savedatavisited.substr(236, 1);
_root.visit674 = _root.savedatavisited.substr(237, 1);
_root.visit675 = _root.savedatavisited.substr(238, 1);
_root.visit681 = _root.savedatavisited.substr(239, 1);
_root.visit682 = _root.savedatavisited.substr(240, 1);
_root.visit683 = _root.savedatavisited.substr(241, 1);
_root.visit691 = _root.savedatavisited.substr(242, 1);
_root.visit692 = _root.savedatavisited.substr(243, 1);
_root.visit693 = _root.savedatavisited.substr(244, 1);
_root.visit694 = _root.savedatavisited.substr(245, 1);
_root.visit695 = _root.savedatavisited.substr(246, 1);
_root.visit711 = _root.savedatavisited.substr(247, 1);
_root.visit712 = _root.savedatavisited.substr(248, 1);
_root.visit713 = _root.savedatavisited.substr(249, 1);
_root.visit714 = _root.savedatavisited.substr(250, 1);
_root.visit721 = _root.savedatavisited.substr(251, 1);
_root.visit722 = _root.savedatavisited.substr(252, 1);
_root.visit723 = _root.savedatavisited.substr(253, 1);
_root.visit724 = _root.savedatavisited.substr(254, 1);
_root.visit725 = _root.savedatavisited.substr(255, 1);
_root.visit731 = _root.savedatavisited.substr(256, 1);
_root.visit732 = _root.savedatavisited.substr(257, 1);
_root.visit733 = _root.savedatavisited.substr(258, 1);
_root.visit734 = _root.savedatavisited.substr(259, 1);
_root.visit735 = _root.savedatavisited.substr(260, 1);
_root.visit741 = _root.savedatavisited.substr(261, 1);
_root.visit742 = _root.savedatavisited.substr(262, 1);
_root.visit743 = _root.savedatavisited.substr(263, 1);
_root.visit744 = _root.savedatavisited.substr(264, 1);
_root.visit751 = _root.savedatavisited.substr(265, 1);
_root.visit752 = _root.savedatavisited.substr(266, 1);
_root.visit753 = _root.savedatavisited.substr(267, 1);
_root.visit754 = _root.savedatavisited.substr(268, 1);
_root.visit761 = _root.savedatavisited.substr(269, 1);
_root.visit762 = _root.savedatavisited.substr(270, 1);
_root.visit763 = _root.savedatavisited.substr(271, 1);
_root.visit764 = _root.savedatavisited.substr(272, 1);
_root.visit765 = _root.savedatavisited.substr(273, 1);
_root.visit771 = _root.savedatavisited.substr(274, 1);
_root.visit772 = _root.savedatavisited.substr(275, 1);
_root.visit773 = _root.savedatavisited.substr(276, 1);
_root.visit774 = _root.savedatavisited.substr(277, 1);
_root.visit775 = _root.savedatavisited.substr(278, 1);
_root.visit776 = _root.savedatavisited.substr(279, 1);
_root.visit781 = _root.savedatavisited.substr(280, 1);
_root.visit782 = _root.savedatavisited.substr(281, 1);
_root.visit783 = _root.savedatavisited.substr(282, 1);
_root.visit784 = _root.savedatavisited.substr(283, 1);
_root.visit791 = _root.savedatavisited.substr(284, 1);
_root.visit792 = _root.savedatavisited.substr(285, 1);
_root.visit793 = _root.savedatavisited.substr(286, 1);
_root.visit811 = _root.savedatavisited.substr(287, 1);
_root.visit812 = _root.savedatavisited.substr(288, 1);
_root.visit813 = _root.savedatavisited.substr(289, 1);
_root.visit814 = _root.savedatavisited.substr(290, 1);
_root.visit821 = _root.savedatavisited.substr(291, 1);
_root.visit822 = _root.savedatavisited.substr(292, 1);
_root.visit823 = _root.savedatavisited.substr(293, 1);
_root.visit824 = _root.savedatavisited.substr(294, 1);
_root.visit825 = _root.savedatavisited.substr(295, 1);
_root.visit831 = _root.savedatavisited.substr(296, 1);
_root.visit832 = _root.savedatavisited.substr(297, 1);
_root.visit833 = _root.savedatavisited.substr(298, 1);
_root.visit834 = _root.savedatavisited.substr(299, 1);
_root.visit835 = _root.savedatavisited.substr(300, 1);
_root.visit841 = _root.savedatavisited.substr(301, 1);
_root.visit842 = _root.savedatavisited.substr(302, 1);
_root.visit843 = _root.savedatavisited.substr(303, 1);
_root.visit844 = _root.savedatavisited.substr(304, 1);
_root.visit845 = _root.savedatavisited.substr(305, 1);
_root.visit851 = _root.savedatavisited.substr(306, 1);
_root.visit852 = _root.savedatavisited.substr(307, 1);
_root.visit853 = _root.savedatavisited.substr(308, 1);
_root.visit854 = _root.savedatavisited.substr(309, 1);
_root.visit855 = _root.savedatavisited.substr(310, 1);
_root.visit861 = _root.savedatavisited.substr(311, 1);
_root.visit862 = _root.savedatavisited.substr(312, 1);
_root.visit863 = _root.savedatavisited.substr(313, 1);
_root.visit864 = _root.savedatavisited.substr(314, 1);
_root.visit871 = _root.savedatavisited.substr(315, 1);
_root.visit872 = _root.savedatavisited.substr(316, 1);
_root.visit873 = _root.savedatavisited.substr(317, 1);
_root.visit874 = _root.savedatavisited.substr(318, 1);
_root.visit875 = _root.savedatavisited.substr(319, 1);
_root.visit881 = _root.savedatavisited.substr(320, 1);
_root.visit882 = _root.savedatavisited.substr(321, 1);
_root.visit883 = _root.savedatavisited.substr(322, 1);
_root.visit884 = _root.savedatavisited.substr(323, 1);
_root.visit891 = _root.savedatavisited.substr(324, 1);
_root.visit892 = _root.savedatavisited.substr(325, 1);
_root.visit893 = _root.savedatavisited.substr(326, 1);
_root.visit894 = _root.savedatavisited.substr(327, 1);
_root.visit911 = _root.savedatavisited.substr(328, 1);
_root.visit912 = _root.savedatavisited.substr(329, 1);
_root.visit913 = _root.savedatavisited.substr(330, 1);
_root.visit914 = _root.savedatavisited.substr(331, 1);
_root.visit915 = _root.savedatavisited.substr(332, 1);
_root.visit921 = _root.savedatavisited.substr(333, 1);
_root.visit922 = _root.savedatavisited.substr(334, 1);
_root.visit923 = _root.savedatavisited.substr(335, 1);
_root.visit924 = _root.savedatavisited.substr(336, 1);
_root.visit931 = _root.savedatavisited.substr(337, 1);
_root.visit932 = _root.savedatavisited.substr(338, 1);
_root.visit933 = _root.savedatavisited.substr(339, 1);
_root.visit934 = _root.savedatavisited.substr(340, 1);
_root.visit935 = _root.savedatavisited.substr(341, 1);
_root.visit936 = _root.savedatavisited.substr(342, 1);
_root.visit941 = _root.savedatavisited.substr(343, 1);
_root.visit942 = _root.savedatavisited.substr(344, 1);
_root.visit943 = _root.savedatavisited.substr(345, 1);
_root.visit944 = _root.savedatavisited.substr(346, 1);
_root.visit945 = _root.savedatavisited.substr(347, 1);
_root.visit951 = _root.savedatavisited.substr(348, 1);
_root.visit952 = _root.savedatavisited.substr(349, 1);
_root.visit953 = _root.savedatavisited.substr(350, 1);
_root.visit954 = _root.savedatavisited.substr(351, 1);
_root.visit955 = _root.savedatavisited.substr(352, 1);
_root.visit956 = _root.savedatavisited.substr(353, 1);
_root.visit957 = _root.savedatavisited.substr(354, 1);
_root.visit961 = _root.savedatavisited.substr(355, 1);
_root.visit962 = _root.savedatavisited.substr(356, 1);
_root.visit963 = _root.savedatavisited.substr(357, 1);
_root.visit964 = _root.savedatavisited.substr(358, 1);
_root.visit965 = _root.savedatavisited.substr(359, 1);
_root.visit971 = _root.savedatavisited.substr(360, 1);
_root.visit972 = _root.savedatavisited.substr(361, 1);
_root.visit973 = _root.savedatavisited.substr(362, 1);
_root.visit974 = _root.savedatavisited.substr(363, 1);
_root.visit975 = _root.savedatavisited.substr(364, 1);
_root.visit981 = _root.savedatavisited.substr(365, 1);
_root.visit982 = _root.savedatavisited.substr(366, 1);
_root.visit983 = _root.savedatavisited.substr(367, 1);
_root.visit984 = _root.savedatavisited.substr(368, 1);
_root.visit985 = _root.savedatavisited.substr(369, 1);
_root.visit991 = _root.savedatavisited.substr(370, 1);
_root.visit992 = _root.savedatavisited.substr(371, 1);
_root.visit993 = _root.savedatavisited.substr(372, 1);
_root.visit994 = _root.savedatavisited.substr(373, 1);
}
_root.b1on = 0;
_root.b2on = 0;
_root.b3on = 0;
_root.b4on = 0;
if ((((_root.savedataround1medal == "p") || (_root.savedataround1medal == "g")) || (_root.savedataround1medal == "s")) || (_root.savedataround1medal == "b")) {
_root.round1medal = _root.savedataround1medal;
} else {
_root.round1medal = "";
}
if ((((_root.savedataround2medal == "p") || (_root.savedataround2medal == "g")) || (_root.savedataround2medal == "s")) || (_root.savedataround2medal == "b")) {
_root.round2medal = _root.savedataround2medal;
} else {
_root.round2medal = "";
}
if ((((_root.savedataround3medal == "p") || (_root.savedataround3medal == "g")) || (_root.savedataround3medal == "s")) || (_root.savedataround3medal == "b")) {
_root.round3medal = _root.savedataround3medal;
} else {
_root.round3medal = "";
}
if ((((_root.savedataround4medal == "p") || (_root.savedataround4medal == "g")) || (_root.savedataround4medal == "s")) || (_root.savedataround4medal == "b")) {
_root.round4medal = _root.savedataround4medal;
} else {
_root.round4medal = "";
}
if ((((_root.savedataround5medal == "p") || (_root.savedataround5medal == "g")) || (_root.savedataround5medal == "s")) || (_root.savedataround5medal == "b")) {
_root.round5medal = _root.savedataround5medal;
} else {
_root.round5medal = "";
}
if ((((_root.savedataround6medal == "p") || (_root.savedataround6medal == "g")) || (_root.savedataround6medal == "s")) || (_root.savedataround6medal == "b")) {
_root.round6medal = _root.savedataround6medal;
} else {
_root.round6medal = "";
}
if ((((_root.savedataround7medal == "p") || (_root.savedataround7medal == "g")) || (_root.savedataround7medal == "s")) || (_root.savedataround7medal == "b")) {
_root.round7medal = _root.savedataround7medal;
} else {
_root.round7medal = "";
}
if ((((_root.savedataround8medal == "p") || (_root.savedataround8medal == "g")) || (_root.savedataround8medal == "s")) || (_root.savedataround8medal == "b")) {
_root.round8medal = _root.savedataround8medal;
} else {
_root.round8medal = "";
}
if ((((_root.savedataround9medal == "p") || (_root.savedataround9medal == "g")) || (_root.savedataround9medal == "s")) || (_root.savedataround9medal == "b")) {
_root.round9medal = _root.savedataround9medal;
} else {
_root.round9medal = "";
}
if ((((_root.savedataround10medal == "p") || (_root.savedataround10medal == "g")) || (_root.savedataround10medal == "s")) || (_root.savedataround10medal == "b")) {
_root.round10medal = _root.savedataround10medal;
} else {
_root.round10medal = "";
}
_root.goldcount = 0;
_root.platinumcount = 0;
i = 0;
while (i < 10) {
if ((_root[("round" + (i + 1)) + "medal"] == "g") || (_root[("round" + (i + 1)) + "medal"] == "p")) {
_root.goldcount++;
}
if (_root[("round" + (i + 1)) + "medal"] == "p") {
_root.platinumcount++;
}
i++;
}
_root.kongregateStats.submit("GoldMedals", _root.goldcount);
_root.kongregateStats.submit("PlatinumMedals", _root.platinumcount);
_root.visit333 = 0;
_root.visit432 = 0;
_root.visit471 = 0;
_root.visit521 = 0;
_root.visit562 = 0;
_root.visit591 = 0;
_root.visit631 = 0;
_root.visit654 = 0;
_root.visit664 = 0;
_root.visit671 = 0;
_root.visit712 = 0;
_root.visit722 = 0;
_root.visit733 = 0;
_root.visit752 = 0;
_root.visit772 = 0;
_root.visit792 = 0;
_root.visit812 = 0;
_root.visit821 = 0;
_root.visit831 = 0;
_root.visit851 = 0;
_root.visit862 = 0;
_root.visit872 = 0;
_root.visit881 = 0;
_root.visit892 = 0;
_root.visit915 = 0;
_root.visit921 = 0;
_root.visit934 = 0;
_root.visit933 = 0;
_root.visit942 = 0;
_root.visit952 = 0;
_root.visit961 = 0;
_root.visit972 = 0;
_root.visit983 = 0;
_root.visit993 = 0;
_root.unlockedbonuses = _root.achievementcount;
_root.planetsvisited = (((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((0 + Number(_root.visit011)) + Number(_root.visit012)) + Number(_root.visit013)) + Number(_root.visit021)) + Number(_root.visit022)) + Number(_root.visit023)) + Number(_root.visit031)) + Number(_root.visit032)) + Number(_root.visit033)) + Number(_root.visit041)) + Number(_root.visit042)) + Number(_root.visit043)) + Number(_root.visit051)) + Number(_root.visit052)) + Number(_root.visit053)) + Number(_root.visit061)) + Number(_root.visit062)) + Number(_root.visit063)) + Number(_root.visit071)) + Number(_root.visit072)) + Number(_root.visit073)) + Number(_root.visit081)) + Number(_root.visit082)) + Number(_root.visit083)) + Number(_root.visit091)) + Number(_root.visit092)) + Number(_root.visit093)) + Number(_root.visit111)) + Number(_root.visit112)) + Number(_root.visit121)) + Number(_root.visit122)) + Number(_root.visit123)) + Number(_root.visit131)) + Number(_root.visit132)) + Number(_root.visit133)) + Number(_root.visit141)) + Number(_root.visit142)) + Number(_root.visit143)) + Number(_root.visit144)) + Number(_root.visit151)) + Number(_root.visit152)) + Number(_root.visit153)) + Number(_root.visit154)) + Number(_root.visit161)) + Number(_root.visit162)) + Number(_root.visit163)) + Number(_root.visit164)) + Number(_root.visit171)) + Number(_root.visit172)) + Number(_root.visit173)) + Number(_root.visit174)) + Number(_root.visit175)) + Number(_root.visit181)) + Number(_root.visit182)) + Number(_root.visit183)) + Number(_root.visit184)) + Number(_root.visit191)) + Number(_root.visit192)) + Number(_root.visit193)) + Number(_root.visit194)) + Number(_root.visit211)) + Number(_root.visit212)) + Number(_root.visit213)) + Number(_root.visit214)) + Number(_root.visit221)) + Number(_root.visit222)) + Number(_root.visit223)) + Number(_root.visit224)) + Number(_root.visit231)) + Number(_root.visit232)) + Number(_root.visit233)) + Number(_root.visit234)) + Number(_root.visit241)) + Number(_root.visit242)) + Number(_root.visit243)) + Number(_root.visit244)) + Number(_root.visit251)) + Number(_root.visit252)) + Number(_root.visit253)) + Number(_root.visit254)) + Number(_root.visit261)) + Number(_root.visit262)) + Number(_root.visit263)) + Number(_root.visit264)) + Number(_root.visit271)) + Number(_root.visit272)) + Number(_root.visit273)) + Number(_root.visit274)) + Number(_root.visit281)) + Number(_root.visit282)) + Number(_root.visit283)) + Number(_root.visit284)) + Number(_root.visit291)) + Number(_root.visit292)) + Number(_root.visit293)) + Number(_root.visit294)) + Number(_root.visit311)) + Number(_root.visit312)) + Number(_root.visit313)) + Number(_root.visit321)) + Number(_root.visit322)) + Number(_root.visit323)) + Number(_root.visit324)) + Number(_root.visit331)) + Number(_root.visit332)) + Number(_root.visit333)) + Number(_root.visit341)) + Number(_root.visit342)) + Number(_root.visit343)) + Number(_root.visit344)) + Number(_root.visit351)) + Number(_root.visit352)) + Number(_root.visit353)) + Number(_root.visit354)) + Number(_root.visit361)) + Number(_root.visit362)) + Number(_root.visit363)) + Number(_root.visit371)) + Number(_root.visit372)) + Number(_root.visit373)) + Number(_root.visit374)) + Number(_root.visit375)) + Number(_root.visit381)) + Number(_root.visit382)) + Number(_root.visit383)) + Number(_root.visit391)) + Number(_root.visit392)) + Number(_root.visit393)) + Number(_root.visit394)) + Number(_root.visit411)) + Number(_root.visit412)) + Number(_root.visit413)) + Number(_root.visit414)) + Number(_root.visit421)) + Number(_root.visit422)) + Number(_root.visit423)) + Number(_root.visit424)) + Number(_root.visit431)) + Number(_root.visit432)) + Number(_root.visit433)) + Number(_root.visit441)) + Number(_root.visit442)) + Number(_root.visit443)) + Number(_root.visit451)) + Number(_root.visit452)) + Number(_root.visit453)) + Number(_root.visit461)) + Number(_root.visit462)) + Number(_root.visit463)) + Number(_root.visit471)) + Number(_root.visit472)) + Number(_root.visit473)) + Number(_root.visit474)) + Number(_root.visit481)) + Number(_root.visit482)) + Number(_root.visit483)) + Number(_root.visit484)) + Number(_root.visit485)) + Number(_root.visit491)) + Number(_root.visit492)) + Number(_root.visit493)) + Number(_root.visit494)) + Number(_root.visit495)) + Number(_root.visit511)) + Number(_root.visit512)) + Number(_root.visit513)) + Number(_root.visit514)) + Number(_root.visit515)) + Number(_root.visit521)) + Number(_root.visit522)) + Number(_root.visit523)) + Number(_root.visit524)) + Number(_root.visit525)) + Number(_root.visit531)) + Number(_root.visit532)) + Number(_root.visit533)) + Number(_root.visit534)) + Number(_root.visit535)) + Number(_root.visit541)) + Number(_root.visit542)) + Number(_root.visit543)) + Number(_root.visit544)) + Number(_root.visit545)) + Number(_root.visit551)) + Number(_root.visit552)) + Number(_root.visit553)) + Number(_root.visit554)) + Number(_root.visit555)) + Number(_root.visit561)) + Number(_root.visit562)) + Number(_root.visit563)) + Number(_root.visit564)) + Number(_root.visit565)) + Number(_root.visit571)) + Number(_root.visit572)) + Number(_root.visit573)) + Number(_root.visit574)) + Number(_root.visit575)) + Number(_root.visit581)) + Number(_root.visit582)) + Number(_root.visit583)) + Number(_root.visit584)) + Number(_root.visit585)) + Number(_root.visit591)) + Number(_root.visit592)) + Number(_root.visit593)) + Number(_root.visit594)) + Number(_root.visit595)) + Number(_root.visit611)) + Number(_root.visit612)) + Number(_root.visit613)) + Number(_root.visit614)) + Number(_root.visit621)) + Number(_root.visit622)) + Number(_root.visit623)) + Number(_root.visit624)) + Number(_root.visit631)) + Number(_root.visit632)) + Number(_root.visit633)) + Number(_root.visit634)) + Number(_root.visit635)) + Number(_root.visit641)) + Number(_root.visit642)) + Number(_root.visit643)) + Number(_root.visit644)) + Number(_root.visit651)) + Number(_root.visit652)) + Number(_root.visit653)) + Number(_root.visit654)) + Number(_root.visit655)) + Number(_root.visit661)) + Number(_root.visit662)) + Number(_root.visit663)) + Number(_root.visit664)) + Number(_root.visit671)) + Number(_root.visit672)) + Number(_root.visit673)) + Number(_root.visit674)) + Number(_root.visit675)) + Number(_root.visit681)) + Number(_root.visit682)) + Number(_root.visit683)) + Number(_root.visit691)) + Number(_root.visit692)) + Number(_root.visit693)) + Number(_root.visit694)) + Number(_root.visit695)) + Number(_root.visit711)) + Number(_root.visit712)) + Number(_root.visit713)) + Number(_root.visit714)) + Number(_root.visit721)) + Number(_root.visit722)) + Number(_root.visit723)) + Number(_root.visit724)) + Number(_root.visit725)) + Number(_root.visit731)) + Number(_root.visit732)) + Number(_root.visit733)) + Number(_root.visit734)) + Number(_root.visit735)) + Number(_root.visit741)) + Number(_root.visit742)) + Number(_root.visit743)) + Number(_root.visit744)) + Number(_root.visit751)) + Number(_root.visit752)) + Number(_root.visit753)) + Number(_root.visit754)) + Number(_root.visit761)) + Number(_root.visit762)) + Number(_root.visit763)) + Number(_root.visit764)) + Number(_root.visit765)) + Number(_root.visit771)) + Number(_root.visit772)) + Number(_root.visit773)) + Number(_root.visit774)) + Number(_root.visit775)) + Number(_root.visit776)) + Number(_root.visit781)) + Number(_root.visit782)) + Number(_root.visit783)) + Number(_root.visit784)) + Number(_root.visit791)) + Number(_root.visit792)) + Number(_root.visit793)) + Number(_root.visit811)) + Number(_root.visit812)) + Number(_root.visit813)) + Number(_root.visit814)) + Number(_root.visit821)) + Number(_root.visit822)) + Number(_root.visit823)) + Number(_root.visit824)) + Number(_root.visit825)) + Number(_root.visit831)) + Number(_root.visit832)) + Number(_root.visit833)) + Number(_root.visit834)) + Number(_root.visit835)) + Number(_root.visit841)) + Number(_root.visit842)) + Number(_root.visit843)) + Number(_root.visit844)) + Number(_root.visit845)) + Number(_root.visit851)) + Number(_root.visit852)) + Number(_root.visit853)) + Number(_root.visit854)) + Number(_root.visit855)) + Number(_root.visit861)) + Number(_root.visit862)) + Number(_root.visit863)) + Number(_root.visit864)) + Number(_root.visit871)) + Number(_root.visit872)) + Number(_root.visit873)) + Number(_root.visit874)) + Number(_root.visit875)) + Number(_root.visit881)) + Number(_root.visit882)) + Number(_root.visit883)) + Number(_root.visit884)) + Number(_root.visit891)) + Number(_root.visit892)) + Number(_root.visit893)) + Number(_root.visit894)) + Number(_root.visit911)) + Number(_root.visit912)) + Number(_root.visit913)) + Number(_root.visit914)) + Number(_root.visit915)) + Number(_root.visit921)) + Number(_root.visit922)) + Number(_root.visit923)) + Number(_root.visit924)) + Number(_root.visit931)) + Number(_root.visit932)) + Number(_root.visit933)) + Number(_root.visit934)) + Number(_root.visit935)) + Number(_root.visit936)) + Number(_root.visit941)) + Number(_root.visit942)) + Number(_root.visit943)) + Number(_root.visit944)) + Number(_root.visit945)) + Number(_root.visit951)) + Number(_root.visit952)) + Number(_root.visit953)) + Number(_root.visit954)) + Number(_root.visit955)) + Number(_root.visit956)) + Number(_root.visit957)) + Number(_root.visit961)) + Number(_root.visit962)) + Number(_root.visit963)) + Number(_root.visit964)) + Number(_root.visit965)) + Number(_root.visit971)) + Number(_root.visit972)) + Number(_root.visit973)) + Number(_root.visit974)) + Number(_root.visit975)) + Number(_root.visit981)) + Number(_root.visit982)) + Number(_root.visit983)) + Number(_root.visit984)) + Number(_root.visit985)) + Number(_root.visit991)) + Number(_root.visit992)) + Number(_root.visit993)) + Number(_root.visit994);
if (_root.planetsvisited > 340) {
_root.planetsvisited = 340;
}
_root.kongregateStats.submit("PlanetsVisited", _root.planetsvisited);
_root.kongregateStats.submit("Achievements", _root.achievementcount);
__com_mochibot__("931caf7a", this, 10301, true);
Frame 193
stop();
Frame 194
_root.currenthole = 1;
i = 0;
while (i < _root.unlocked) {
_root[("round" + (i + 1)) + "lock"].gotoAndStop(2);
_root[("round" + (i + 1)) + "button"].gotoAndStop(2);
i++;
}
i = 0;
while (i < 11) {
if (_root[("round" + (i + 1)) + "medal"] == "b") {
_root[("round" + (i + 1)) + "lock"].gotoAndStop(3);
} else if (_root[("round" + (i + 1)) + "medal"] == "s") {
_root[("round" + (i + 1)) + "lock"].gotoAndStop(4);
} else if (_root[("round" + (i + 1)) + "medal"] == "g") {
_root[("round" + (i + 1)) + "lock"].gotoAndStop(5);
} else if (_root[("round" + (i + 1)) + "medal"] == "p") {
_root[("round" + (i + 1)) + "lock"].gotoAndStop(6);
}
i++;
}
stop();
Frame 195
_root.achievementcount = 0;
_root.planetsvisited = 0;
_root.visit333 = 0;
_root.visit432 = 0;
_root.visit471 = 0;
_root.visit521 = 0;
_root.visit562 = 0;
_root.visit591 = 0;
_root.visit631 = 0;
_root.visit654 = 0;
_root.visit664 = 0;
_root.visit671 = 0;
_root.visit712 = 0;
_root.visit722 = 0;
_root.visit733 = 0;
_root.visit752 = 0;
_root.visit772 = 0;
_root.visit792 = 0;
_root.visit812 = 0;
_root.visit821 = 0;
_root.visit831 = 0;
_root.visit851 = 0;
_root.visit862 = 0;
_root.visit872 = 0;
_root.visit881 = 0;
_root.visit892 = 0;
_root.visit915 = 0;
_root.visit921 = 0;
_root.visit934 = 0;
_root.visit933 = 0;
_root.visit942 = 0;
_root.visit952 = 0;
_root.visit961 = 0;
_root.visit972 = 0;
_root.visit983 = 0;
_root.visit993 = 0;
_root.planetsvisited = (((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((0 + Number(_root.visit011)) + Number(_root.visit012)) + Number(_root.visit013)) + Number(_root.visit021)) + Number(_root.visit022)) + Number(_root.visit023)) + Number(_root.visit031)) + Number(_root.visit032)) + Number(_root.visit033)) + Number(_root.visit041)) + Number(_root.visit042)) + Number(_root.visit043)) + Number(_root.visit051)) + Number(_root.visit052)) + Number(_root.visit053)) + Number(_root.visit061)) + Number(_root.visit062)) + Number(_root.visit063)) + Number(_root.visit071)) + Number(_root.visit072)) + Number(_root.visit073)) + Number(_root.visit081)) + Number(_root.visit082)) + Number(_root.visit083)) + Number(_root.visit091)) + Number(_root.visit092)) + Number(_root.visit093)) + Number(_root.visit111)) + Number(_root.visit112)) + Number(_root.visit121)) + Number(_root.visit122)) + Number(_root.visit123)) + Number(_root.visit131)) + Number(_root.visit132)) + Number(_root.visit133)) + Number(_root.visit141)) + Number(_root.visit142)) + Number(_root.visit143)) + Number(_root.visit144)) + Number(_root.visit151)) + Number(_root.visit152)) + Number(_root.visit153)) + Number(_root.visit154)) + Number(_root.visit161)) + Number(_root.visit162)) + Number(_root.visit163)) + Number(_root.visit164)) + Number(_root.visit171)) + Number(_root.visit172)) + Number(_root.visit173)) + Number(_root.visit174)) + Number(_root.visit175)) + Number(_root.visit181)) + Number(_root.visit182)) + Number(_root.visit183)) + Number(_root.visit184)) + Number(_root.visit191)) + Number(_root.visit192)) + Number(_root.visit193)) + Number(_root.visit194)) + Number(_root.visit211)) + Number(_root.visit212)) + Number(_root.visit213)) + Number(_root.visit214)) + Number(_root.visit221)) + Number(_root.visit222)) + Number(_root.visit223)) + Number(_root.visit224)) + Number(_root.visit231)) + Number(_root.visit232)) + Number(_root.visit233)) + Number(_root.visit234)) + Number(_root.visit241)) + Number(_root.visit242)) + Number(_root.visit243)) + Number(_root.visit244)) + Number(_root.visit251)) + Number(_root.visit252)) + Number(_root.visit253)) + Number(_root.visit254)) + Number(_root.visit261)) + Number(_root.visit262)) + Number(_root.visit263)) + Number(_root.visit264)) + Number(_root.visit271)) + Number(_root.visit272)) + Number(_root.visit273)) + Number(_root.visit274)) + Number(_root.visit281)) + Number(_root.visit282)) + Number(_root.visit283)) + Number(_root.visit284)) + Number(_root.visit291)) + Number(_root.visit292)) + Number(_root.visit293)) + Number(_root.visit294)) + Number(_root.visit311)) + Number(_root.visit312)) + Number(_root.visit313)) + Number(_root.visit321)) + Number(_root.visit322)) + Number(_root.visit323)) + Number(_root.visit324)) + Number(_root.visit331)) + Number(_root.visit332)) + Number(_root.visit333)) + Number(_root.visit341)) + Number(_root.visit342)) + Number(_root.visit343)) + Number(_root.visit344)) + Number(_root.visit351)) + Number(_root.visit352)) + Number(_root.visit353)) + Number(_root.visit354)) + Number(_root.visit361)) + Number(_root.visit362)) + Number(_root.visit363)) + Number(_root.visit371)) + Number(_root.visit372)) + Number(_root.visit373)) + Number(_root.visit374)) + Number(_root.visit375)) + Number(_root.visit381)) + Number(_root.visit382)) + Number(_root.visit383)) + Number(_root.visit391)) + Number(_root.visit392)) + Number(_root.visit393)) + Number(_root.visit394)) + Number(_root.visit411)) + Number(_root.visit412)) + Number(_root.visit413)) + Number(_root.visit414)) + Number(_root.visit421)) + Number(_root.visit422)) + Number(_root.visit423)) + Number(_root.visit424)) + Number(_root.visit431)) + Number(_root.visit432)) + Number(_root.visit433)) + Number(_root.visit441)) + Number(_root.visit442)) + Number(_root.visit443)) + Number(_root.visit451)) + Number(_root.visit452)) + Number(_root.visit453)) + Number(_root.visit461)) + Number(_root.visit462)) + Number(_root.visit463)) + Number(_root.visit471)) + Number(_root.visit472)) + Number(_root.visit473)) + Number(_root.visit474)) + Number(_root.visit481)) + Number(_root.visit482)) + Number(_root.visit483)) + Number(_root.visit484)) + Number(_root.visit485)) + Number(_root.visit491)) + Number(_root.visit492)) + Number(_root.visit493)) + Number(_root.visit494)) + Number(_root.visit495)) + Number(_root.visit511)) + Number(_root.visit512)) + Number(_root.visit513)) + Number(_root.visit514)) + Number(_root.visit515)) + Number(_root.visit521)) + Number(_root.visit522)) + Number(_root.visit523)) + Number(_root.visit524)) + Number(_root.visit525)) + Number(_root.visit531)) + Number(_root.visit532)) + Number(_root.visit533)) + Number(_root.visit534)) + Number(_root.visit535)) + Number(_root.visit541)) + Number(_root.visit542)) + Number(_root.visit543)) + Number(_root.visit544)) + Number(_root.visit545)) + Number(_root.visit551)) + Number(_root.visit552)) + Number(_root.visit553)) + Number(_root.visit554)) + Number(_root.visit555)) + Number(_root.visit561)) + Number(_root.visit562)) + Number(_root.visit563)) + Number(_root.visit564)) + Number(_root.visit565)) + Number(_root.visit571)) + Number(_root.visit572)) + Number(_root.visit573)) + Number(_root.visit574)) + Number(_root.visit575)) + Number(_root.visit581)) + Number(_root.visit582)) + Number(_root.visit583)) + Number(_root.visit584)) + Number(_root.visit585)) + Number(_root.visit591)) + Number(_root.visit592)) + Number(_root.visit593)) + Number(_root.visit594)) + Number(_root.visit595)) + Number(_root.visit611)) + Number(_root.visit612)) + Number(_root.visit613)) + Number(_root.visit614)) + Number(_root.visit621)) + Number(_root.visit622)) + Number(_root.visit623)) + Number(_root.visit624)) + Number(_root.visit631)) + Number(_root.visit632)) + Number(_root.visit633)) + Number(_root.visit634)) + Number(_root.visit635)) + Number(_root.visit641)) + Number(_root.visit642)) + Number(_root.visit643)) + Number(_root.visit644)) + Number(_root.visit651)) + Number(_root.visit652)) + Number(_root.visit653)) + Number(_root.visit654)) + Number(_root.visit655)) + Number(_root.visit661)) + Number(_root.visit662)) + Number(_root.visit663)) + Number(_root.visit664)) + Number(_root.visit671)) + Number(_root.visit672)) + Number(_root.visit673)) + Number(_root.visit674)) + Number(_root.visit675)) + Number(_root.visit681)) + Number(_root.visit682)) + Number(_root.visit683)) + Number(_root.visit691)) + Number(_root.visit692)) + Number(_root.visit693)) + Number(_root.visit694)) + Number(_root.visit695)) + Number(_root.visit711)) + Number(_root.visit712)) + Number(_root.visit713)) + Number(_root.visit714)) + Number(_root.visit721)) + Number(_root.visit722)) + Number(_root.visit723)) + Number(_root.visit724)) + Number(_root.visit725)) + Number(_root.visit731)) + Number(_root.visit732)) + Number(_root.visit733)) + Number(_root.visit734)) + Number(_root.visit735)) + Number(_root.visit741)) + Number(_root.visit742)) + Number(_root.visit743)) + Number(_root.visit744)) + Number(_root.visit751)) + Number(_root.visit752)) + Number(_root.visit753)) + Number(_root.visit754)) + Number(_root.visit761)) + Number(_root.visit762)) + Number(_root.visit763)) + Number(_root.visit764)) + Number(_root.visit765)) + Number(_root.visit771)) + Number(_root.visit772)) + Number(_root.visit773)) + Number(_root.visit774)) + Number(_root.visit775)) + Number(_root.visit776)) + Number(_root.visit781)) + Number(_root.visit782)) + Number(_root.visit783)) + Number(_root.visit784)) + Number(_root.visit791)) + Number(_root.visit792)) + Number(_root.visit793)) + Number(_root.visit811)) + Number(_root.visit812)) + Number(_root.visit813)) + Number(_root.visit814)) + Number(_root.visit821)) + Number(_root.visit822)) + Number(_root.visit823)) + Number(_root.visit824)) + Number(_root.visit825)) + Number(_root.visit831)) + Number(_root.visit832)) + Number(_root.visit833)) + Number(_root.visit834)) + Number(_root.visit835)) + Number(_root.visit841)) + Number(_root.visit842)) + Number(_root.visit843)) + Number(_root.visit844)) + Number(_root.visit845)) + Number(_root.visit851)) + Number(_root.visit852)) + Number(_root.visit853)) + Number(_root.visit854)) + Number(_root.visit855)) + Number(_root.visit861)) + Number(_root.visit862)) + Number(_root.visit863)) + Number(_root.visit864)) + Number(_root.visit871)) + Number(_root.visit872)) + Number(_root.visit873)) + Number(_root.visit874)) + Number(_root.visit875)) + Number(_root.visit881)) + Number(_root.visit882)) + Number(_root.visit883)) + Number(_root.visit884)) + Number(_root.visit891)) + Number(_root.visit892)) + Number(_root.visit893)) + Number(_root.visit894)) + Number(_root.visit911)) + Number(_root.visit912)) + Number(_root.visit913)) + Number(_root.visit914)) + Number(_root.visit915)) + Number(_root.visit921)) + Number(_root.visit922)) + Number(_root.visit923)) + Number(_root.visit924)) + Number(_root.visit931)) + Number(_root.visit932)) + Number(_root.visit933)) + Number(_root.visit934)) + Number(_root.visit935)) + Number(_root.visit936)) + Number(_root.visit941)) + Number(_root.visit942)) + Number(_root.visit943)) + Number(_root.visit944)) + Number(_root.visit945)) + Number(_root.visit951)) + Number(_root.visit952)) + Number(_root.visit953)) + Number(_root.visit954)) + Number(_root.visit955)) + Number(_root.visit956)) + Number(_root.visit957)) + Number(_root.visit961)) + Number(_root.visit962)) + Number(_root.visit963)) + Number(_root.visit964)) + Number(_root.visit965)) + Number(_root.visit971)) + Number(_root.visit972)) + Number(_root.visit973)) + Number(_root.visit974)) + Number(_root.visit975)) + Number(_root.visit981)) + Number(_root.visit982)) + Number(_root.visit983)) + Number(_root.visit984)) + Number(_root.visit985)) + Number(_root.visit991)) + Number(_root.visit992)) + Number(_root.visit993)) + Number(_root.visit994);
if (_root.longestputt >= 500) {
_root.achievementcount++;
_root.tickbox1.gotoAndStop(2);
}
if (_root.longestputt >= 750) {
_root.achievementcount++;
_root.tickbox2.gotoAndStop(2);
}
if (_root.longestputt >= 1250) {
_root.achievementcount++;
_root.tickbox3.gotoAndStop(2);
}
if (_root.longestputt >= 2000) {
_root.achievementcount++;
_root.tickbox4.gotoAndStop(2);
}
if (_root.longestputt >= 3000) {
_root.achievementcount++;
_root.tickbox5.gotoAndStop(2);
}
if (_root.holeinones >= 1) {
_root.achievementcount++;
_root.tickbox6.gotoAndStop(2);
}
if (_root.holeinones >= 2) {
_root.achievementcount++;
_root.tickbox7.gotoAndStop(2);
}
if (_root.holeinones >= 3) {
_root.achievementcount++;
_root.tickbox8.gotoAndStop(2);
}
if (_root.holeinones >= 4) {
_root.achievementcount++;
_root.tickbox9.gotoAndStop(2);
}
if (_root.holeinones >= 5) {
_root.achievementcount++;
_root.tickbox10.gotoAndStop(2);
}
if (_root.planetsvisited >= 30) {
_root.achievementcount++;
_root.tickbox11.gotoAndStop(2);
}
if (_root.planetsvisited >= 75) {
_root.achievementcount++;
_root.tickbox12.gotoAndStop(2);
}
if (_root.planetsvisited >= 150) {
_root.achievementcount++;
_root.tickbox13.gotoAndStop(2);
}
if (_root.planetsvisited >= 240) {
_root.achievementcount++;
_root.tickbox14.gotoAndStop(2);
}
if (_root.planetsvisited >= 340) {
_root.achievementcount++;
_root.tickbox15.gotoAndStop(2);
}
_root.goldcount = 0;
_root.platinumcount = 0;
i = 0;
while (i < 10) {
if ((_root[("round" + (i + 1)) + "medal"] == "g") || (_root[("round" + (i + 1)) + "medal"] == "p")) {
_root.goldcount++;
}
if (_root[("round" + (i + 1)) + "medal"] == "p") {
_root.platinumcount++;
}
i++;
}
if (_root.goldcount >= 1) {
_root.achievementcount++;
_root.tickbox16.gotoAndStop(2);
}
if (_root.goldcount >= 2) {
_root.achievementcount++;
_root.tickbox17.gotoAndStop(2);
}
if (_root.goldcount >= 4) {
_root.achievementcount++;
_root.tickbox18.gotoAndStop(2);
}
if (_root.goldcount >= 7) {
_root.achievementcount++;
_root.tickbox19.gotoAndStop(2);
}
if (_root.goldcount >= 10) {
_root.achievementcount++;
_root.tickbox20.gotoAndStop(2);
}
_root.unlockedbonuses = _root.achievementcount;
_root.achievementtext = _root.achievementcount + " of 20";
stop();
Frame 196
stop();
Frame 197
stop();
Frame 198
stop();
Frame 199
stop();
Frame 200
stop();
Frame 201
stop();
Frame 202
stop();
Frame 203
i = 0;
while (i < 20) {
if (i < _root.unlockedbonuses) {
_root["unlockbox" + (i + 1)].gotoAndStop(1);
} else {
_root["unlockbox" + (i + 1)].gotoAndStop(2);
}
i++;
}
stop();
Frame 204
_root.whichsong = "strike1";
_root.sfxstrike = new Sound();
_root.sfxstrike.attachSound(_root.whichsong);
_root.sfxstrike.setVolume(50);
_root.whichsong = "flame";
_root.sfxflame = new Sound();
_root.sfxflame.attachSound(_root.whichsong);
_root.sfxflame.setVolume(50);
_root.whichsong = "bounce";
_root.sfxbounce = new Sound();
_root.sfxbounce.attachSound(_root.whichsong);
_root.sfxbounce.setVolume(50);
_root.levelpl = 2.5 * (11 - _root.currentround);
_root.buttonconsole._alpha = 20;
if (_root.unlockedbonuses < 4) {
_root.buttonconsole.b1._y = -1000;
}
if (_root.unlockedbonuses < 11) {
_root.buttonconsole.b2._y = -1000;
}
if (_root.unlockedbonuses < 15) {
_root.buttonconsole.b3._y = -1000;
}
if (_root.unlockedbonuses < 20) {
_root.buttonconsole.b4._y = -1000;
}
_root.quitbutton.gotoAndStop(1);
_root.intshow = "";
_root.planetcount = 0;
_root.holetitle = "";
_root.starmap.gotoAndStop(_root.currentround);
_root.ballstartplanet = "planet" + _root["planetsetup" + _root.currenthole][0];
_root.ballstartangle = _root["planetsetup" + _root.currenthole][1];
_root.gatestartplanet = "planet" + _root["planetsetup" + _root.currenthole][2];
_root.gatestartangle = _root["planetsetup" + _root.currenthole][3];
_root.holetitle = (("Hole " + _root.currenthole) + ": ") + _root["planetsetup" + _root.currenthole][_root["planetsetup" + _root.currenthole].length - 1];
i = 4;
while (i < (_root["planetsetup" + _root.currenthole].length - 1)) {
_root.planetcount++;
_root.planetid = _root["planetsetup" + _root.currenthole][i].substr(6);
_root.attachMovie(_root["planetsetup" + _root.currenthole][i], "planet" + _root.planetcount, 100 + i);
if (_root.planetid > 50) {
_root["planet" + _root.planetcount].sun = 1;
} else {
_root["planet" + _root.planetcount].sun = 0;
}
_root["planet" + _root.planetcount]._x = _root["planetsetup" + _root.currenthole][i + 1] + (_root["planet" + _root.planetcount]._width / 2);
_root["planet" + _root.planetcount]._y = _root["planetsetup" + _root.currenthole][i + 2] + (_root["planet" + _root.planetcount]._width / 2);
i = i + 3;
}
_root.attachMovie("result", "theresult", 21000);
_root.attachMovie("messages", "messages", 201);
_root.attachMovie("drivearrow", "drivearrow", 140);
_root.drivearrow._x = -1000;
_root.attachMovie("holeinonespot", "holeinonespot", 20500);
_root.holeinonespot._x = -1000;
_root.attachMovie("tangent", "tangent", 520);
_root.tangent._x = -1000;
_root.attachMovie("bouncearrow", "bouncearrow", 521);
_root.bouncearrow._x = -1000;
_root.attachMovie("directionarrow", "directionarrow", 522);
_root.directionarrow._x = -1000;
_root.attachMovie("reboundarrow", "reboundarrow", 523);
_root.reboundarrow._x = -1000;
_root.attachMovie("ball", "ball", 160);
_root.ball._x = -1000;
_root.attachMovie("trail1", "trail1", 154);
_root.trail1._x = -1000;
_root.attachMovie("trail2", "trail2", 153);
_root.trail2._x = -1000;
_root.attachMovie("trail3", "trail3", 152);
_root.trail3._x = -1000;
_root.attachMovie("trail4", "trail4", 151);
_root.trail4._x = -1000;
_root.attachMovie("gate1", "gate1", 20000);
_root.gate1._x = -1000;
_root.attachMovie("gate2", "gate2", 90);
_root.gate2._x = -1000;
_root.attachMovie("oobtl", "oobtl", 21400);
_root.oobtl._x = -1000;
_root.attachMovie("oobt", "oobt", 21401);
_root.oobt._x = -1000;
_root.attachMovie("oobtr", "oobtr", 21402);
_root.oobtr._x = -1000;
_root.attachMovie("oobr", "oobr", 21403);
_root.oobr._x = -1000;
_root.attachMovie("oobbr", "oobbr", 21404);
_root.oobbr._x = -1000;
_root.attachMovie("oobb", "oobb", 21405);
_root.oobb._x = -1000;
_root.attachMovie("oobbl", "oobbl", 21406);
_root.oobbl._x = -1000;
_root.attachMovie("oobl", "oobl", 21407);
_root.oobl._x = -1000;
_root.shotstaken = 0;
_root.gravity = 1.5;
_root.dragging = 0;
_root.dograv = 0;
_root.oldcoll = 0;
_root.onplanet = 1;
if (_root[(((("visit" + (_root.currentround - 1)) + "") + _root.currenthole) + "") + _root["planetsetup" + _root.currenthole][0]] == 0) {
_root[(((("visit" + (_root.currentround - 1)) + "") + _root.currenthole) + "") + _root["planetsetup" + _root.currenthole][0]] = 1;
_root.planetsvisited++;
}
i = 0;
while (i < _root.planetcount) {
_root.radius = _root["planet" + (i + 1)]._width / 2;
_root["planet" + (i + 1)].mass = 4.18879020478639 * _root.radius;
_root["planet" + (i + 1)].masstext = "Mass: " + Math.round(_root["planet" + (i + 1)].mass);
if (_root.b2on == 1) {
if (_root[(("visit" + (_root.currentround - 1)) + _root.currenthole) + (i + 1)] == 1) {
_root["planet" + (i + 1)].visitedmark.gotoAndStop(2);
} else {
_root["planet" + (i + 1)].visitedmark.gotoAndStop(3);
}
}
i++;
}
_root.ball.mass = 10;
_root.xspeed = 0;
_root.yspeed = 0;
_root.ball._x = _root[_root.ballstartplanet]._x + (((_root[_root.ballstartplanet]._width + _root.ball._width) / 2) * Math.sin((_root.ballstartangle + 90) * (Math.PI/180)));
_root.ball._y = _root[_root.ballstartplanet]._y + (((_root[_root.ballstartplanet]._width + _root.ball._width) / 2) * Math.cos((_root.ballstartangle + 90) * (Math.PI/180)));
_root.gate1._x = _root[_root.gatestartplanet]._x + ((_root[_root.gatestartplanet]._width / 2) * Math.sin((_root.gatestartangle + 90) * (Math.PI/180)));
_root.gate1._y = _root[_root.gatestartplanet]._y + ((_root[_root.gatestartplanet]._width / 2) * Math.cos((_root.gatestartangle + 90) * (Math.PI/180)));
_root.gate1._rotation = 90 - _root.gatestartangle;
_root.gate2._x = _root[_root.gatestartplanet]._x + ((_root[_root.gatestartplanet]._width / 2) * Math.sin((_root.gatestartangle + 90) * (Math.PI/180)));
_root.gate2._y = _root[_root.gatestartplanet]._y + ((_root[_root.gatestartplanet]._width / 2) * Math.cos((_root.gatestartangle + 90) * (Math.PI/180)));
_root.gate2._rotation = 90 - _root.gatestartangle;
_root.holetarget._x = _root[_root.gatestartplanet]._x + ((_root[_root.gatestartplanet]._width / 2) * Math.sin((_root.gatestartangle + 90) * (Math.PI/180)));
_root.holetarget._y = _root[_root.gatestartplanet]._y + ((_root[_root.gatestartplanet]._width / 2) * Math.cos((_root.gatestartangle + 90) * (Math.PI/180)));
_root.holetarget._rotation = 90 - _root.gatestartangle;
if (((_root.donetutorial != 1) && (_root.currenthole == 1)) && (_root.currentround == 1)) {
_root.attachMovie("tutorialbox", "tutorial", 51360);
_root.attachMovie("tutorialbox2", "tutorial2", 51362);
_root.attachMovie("tutorialbox3", "tutorial3", 51361);
} else if (((_root.donesuntutorial != 1) && (_root.currenthole == 3)) && (_root.currentround == 4)) {
_root.attachMovie("tutorialbox4", "tutorial4", 51364);
_root.tutorial4.gotoAndStop(2);
_root.tutorial4._y = 129;
} else {
if ((_root.ball._y <= 250) && (_root.ball._x <= 350)) {
_root.attachMovie("ballshowtl", "ballshow", 21360);
} else if ((_root.ball._y <= 250) && (_root.ball._x > 350)) {
_root.attachMovie("ballshowtr", "ballshow", 21360);
} else if ((_root.ball._y > 250) && (_root.ball._x <= 350)) {
_root.attachMovie("ballshowbl", "ballshow", 21360);
} else if ((_root.ball._y > 250) && (_root.ball._x > 350)) {
_root.attachMovie("ballshowbr", "ballshow", 21360);
}
if ((_root.gate1._y <= 250) && (_root.gate1._x <= 350)) {
_root.attachMovie("targetshowtl", "targetshow", 21361);
} else if ((_root.gate1._y <= 250) && (_root.gate1._x > 350)) {
_root.attachMovie("targetshowtr", "targetshow", 21361);
} else if ((_root.gate1._y > 250) && (_root.gate1._x <= 350)) {
_root.attachMovie("targetshowbl", "targetshow", 21361);
} else if ((_root.gate1._y > 250) && (_root.gate1._x > 350)) {
_root.attachMovie("targetshowbr", "targetshow", 21361);
}
}
if (_root.b0on == 1) {
_root.buttonconsole.b0.gotoAndStop(2);
} else {
i = 0;
while (i < _root.planetcount) {
_root["planet" + (i + 1)].visitedmark.massbox._alpha = 0;
_root["planet" + (i + 1)].flameicon.massbox._alpha = 0;
i++;
}
}
if (_root.soundmuted == 1) {
_root.mutebutton.gotoAndStop(2);
}
if (_root.bpon == 1) {
_root.buttonconsole.bp.gotoAndStop(2);
}
if (_root.b1on == 1) {
_root.buttonconsole.b1.gotoAndStop(2);
}
if (_root.b2on == 1) {
_root.buttonconsole.b2.gotoAndStop(2);
}
if (_root.b3on == 1) {
_root.buttonconsole.b3.gotoAndStop(2);
_root.tangent.gotoAndStop(2);
_root.bouncearrow.gotoAndStop(2);
_root.directionarrow.gotoAndStop(2);
_root.reboundarrow.gotoAndStop(2);
}
if (_root.b4on == 1) {
_root.buttonconsole.b4.gotoAndStop(2);
_root.holeinonespoth = _root["holeinonespots" + _root.currentround][_root.currenthole - 1];
_root.holeinonespotx = _root.holeinonespoth.substr(0, _root.holeinonespoth.indexOf(",", 0));
_root.holeinonespoty = _root.holeinonespoth.substr(_root.holeinonespoth.indexOf(",", 0) + 1);
_root.holeinonespot._x = _root.holeinonespotx;
_root.holeinonespot._y = _root.holeinonespoty;
}
_root.targetshow._x = -1000;
_root.ballshow._x = _root.ball._x;
_root.ballshow._y = _root.ball._y + 10;
_root.targetshow._x = _root.gate1._x;
_root.targetshow._y = _root.gate1._y + 10;
Frame 205
if (_root.dragging == 1) {
_root.hitmaxpower = 150;
_root.olddrivearrowx = _root.drivearrow._x;
_root.olddrivearrowy = _root.drivearrow._y;
_root.drivearrow._x = _root._xmouse;
_root.drivearrow._y = _root._ymouse;
_root.onplanetcheck = 0;
_root.xdistance = 1 * (_root.ball._x - _root.drivearrow._x);
_root.ydistance = -1 * (_root.ball._y - _root.drivearrow._y);
_root.hdistance = Math.sqrt((_root.xdistance * _root.xdistance) + (_root.ydistance * _root.ydistance));
_root.angle = Math.atan(_root.xdistance / _root.ydistance) * 57.2957795130823;
if (_root.hdistance > _root.hitmaxpower) {
_root.temppc = _root.hitmaxpower / _root.hdistance;
_root.drivearrow._x = _root.ball._x - (_root.xdistance * _root.temppc);
_root.drivearrow._y = _root.ball._y + (_root.ydistance * _root.temppc);
_root.drivearrow.arrowmask._y = _root.hitmaxpower;
_root.xdistance = 1 * (_root.ball._x - _root.drivearrow._x);
_root.ydistance = -1 * (_root.ball._y - _root.drivearrow._y);
_root.hdistance = Math.sqrt((_root.xdistance * _root.xdistance) + (_root.ydistance * _root.ydistance));
_root.angle = Math.atan(_root.xdistance / _root.ydistance) * 57.2957795130823;
} else {
_root.drivearrow.arrowmask._y = _root.hdistance;
}
if (_root.ydistance >= 0) {
_root.drivearrow._rotation = _root.angle + 180;
} else {
_root.drivearrow._rotation = _root.angle;
}
if (_root.b4on == 1) {
if (((Math.round(_root._xmouse) == Math.round(_root.holeinonespotx)) && (Math.round(_root._ymouse) == Math.round(_root.holeinonespoty))) && (_root.holeinonespot._currentframe == 1)) {
_root.holeinonespot.gotoAndStop(2);
} else if (((Math.round(_root._xmouse) != Math.round(_root.holeinonespotx)) || (Math.round(_root._ymouse) != Math.round(_root.holeinonespoty))) && (_root.holeinonespot._currentframe == 2)) {
_root.holeinonespot.gotoAndStop(1);
}
}
if (_root.bpon == 1) {
_root.previewon = 1;
_root.newball._x = _root.ball._x;
_root.newball._y = _root.ball._y;
_root.newball.oldx = _root.ball._x;
_root.newball.oldy = _root.ball._y;
_root.xspeed = (_root.drivearrow._x - _root.ball._x) / 6;
_root.yspeed = (_root.drivearrow._y - _root.ball._y) / 6;
pl = 0;
while (pl <= _root.levelpl) {
_root["preview" + pl].removeMovieClip();
pl++;
}
pl = 0;
while (pl < _root.levelpl) {
_root.xforce = 0;
_root.yforce = 0;
i = 0;
while (i < _root.planetcount) {
_root.xdist = _root["planet" + (i + 1)]._x - _root.newball._x;
_root.ydist = _root["planet" + (i + 1)]._y - _root.newball._y;
_root.xdistus = Math.sqrt(Math.pow(_root.xdist, 2));
_root.ydistus = Math.sqrt(Math.pow(_root.ydist, 2));
_root.hdist = Math.sqrt((_root.xdistus * _root.xdistus) + (_root.ydistus * _root.ydistus));
_root.thisforce = ((_root.gravity * _root.ball.mass) * _root["planet" + (i + 1)].mass) / (_root.hdist * _root.hdist);
_root.xthisforce = (_root.thisforce / (_root.xdistus + _root.ydistus)) * _root.xdistus;
_root.ythisforce = (_root.thisforce / (_root.xdistus + _root.ydistus)) * _root.ydistus;
if (_root.xdist < 0) {
_root.xforce = _root.xforce - _root.xthisforce;
} else {
_root.xforce = _root.xforce + _root.xthisforce;
}
if (_root.ydist < 0) {
_root.yforce = _root.yforce - _root.ythisforce;
} else {
_root.yforce = _root.yforce + _root.ythisforce;
}
i++;
}
_root.xspeed = _root.xspeed + (_root.xforce * 3);
_root.yspeed = _root.yspeed + (_root.yforce * 3);
_root.newball.oldx = _root.newball._x;
_root.newball.oldy = _root.newball._y;
_root.newball._x = _root.xspeed + _root.newball._x;
_root.newball._y = _root.yspeed + _root.newball._y;
_root.output1 = (_root.output1 + _root.newball._x) + "|";
_root.collshow.gotoAndStop(1);
_root.onplanetcount = 0;
i = 0;
while (i < _root.planetcount) {
_root.xdist = _root["planet" + (i + 1)]._x - _root.newball._x;
_root.ydist = _root["planet" + (i + 1)]._y - _root.newball._y;
_root.xdistus = Math.sqrt(Math.pow(_root.xdist, 2));
_root.ydistus = Math.sqrt(Math.pow(_root.ydist, 2));
_root.hdist = Math.sqrt((_root.xdist * _root.xdist) + (_root.ydist * _root.ydist));
_root.oldxdist = _root.newball._x - _root.newball.oldx;
_root.oldydist = _root.newball._y - _root.newball.oldy;
_root.oldxdistus = Math.sqrt(Math.pow(_root.oldxdist, 2));
_root.oldydistus = Math.sqrt(Math.pow(_root.oldydist, 2));
_root.oldhdist = Math.sqrt((_root.oldxdist * _root.oldxdist) + (_root.oldydist * _root.oldydist));
if (_root.hdist < ((_root.ball._width + _root["planet" + (i + 1)]._width) / 2)) {
_root.correctangle = Math.asin(_root.xdist / _root.hdist);
_root.correctangleadjust = _root.correctangle * 57.2957795130823;
_root.correctx = ((_root["planet" + (i + 1)]._width + _root.ball._width) / 2) * Math.sin(_root.correctangle);
_root.correcty = ((_root["planet" + (i + 1)]._width + _root.ball._width) / 2) * Math.cos(_root.correctangle);
_root.newball._x = _root["planet" + (i + 1)]._x - _root.correctx;
if (_root.newball._y >= _root["planet" + (i + 1)]._y) {
_root.newball._y = _root["planet" + (i + 1)]._y + _root.correcty;
} else {
_root.newball._y = _root["planet" + (i + 1)]._y - _root.correcty;
}
_root.collshow.gotoAndStop(2);
_root.collangle = Math.asin(_root.xdist / _root.hdist) * 57.2957795130823;
_root.directionangle = Math.asin(_root.oldxdist / _root.oldhdist) * 57.2957795130823;
if ((_root.newball._x >= _root["planet" + (i + 1)]._x) && (_root.newball._y >= _root["planet" + (i + 1)]._y)) {
_root.collangle = 180 + _root.collangle;
_root.collsector = 4;
if (_root.oldydist >= 0) {
_root.directionangle = 270 + (270 - _root.directionangle);
}
} else if ((_root.newball._x >= _root["planet" + (i + 1)]._x) && (_root.newball._y < _root["planet" + (i + 1)]._y)) {
_root.collsector = 2;
if (_root.oldydist >= 0) {
_root.directionangle = 270 + (270 - _root.directionangle);
}
_root.collangle = _root.collangle * -1;
} else if ((_root.newball._x < _root["planet" + (i + 1)]._x) && (_root.newball._y >= _root["planet" + (i + 1)]._y)) {
_root.collsector = 3;
if (_root.oldydist >= 0) {
_root.directionangle = 90 + (90 - _root.directionangle);
}
_root.collangle = _root.collangle + 180;
} else if ((_root.newball._x < _root["planet" + (i + 1)]._x) && (_root.newball._y < _root["planet" + (i + 1)]._y)) {
_root.collsector = 1;
if (_root.oldydist >= 0) {
_root.directionangle = 90 + (90 - _root.directionangle);
}
_root.collangle = 360 - _root.collangle;
}
if (_root.collangle < 0) {
_root.collangle = _root.collangle + 360;
}
if (_root.directionangle < 0) {
_root.directionangle = _root.directionangle + 360;
}
if (_root.collangle > 360) {
_root.collangle = _root.collangle - 360;
}
if (_root.directionangle > 360) {
_root.directionangle = _root.directionangle - 360;
}
if ((_root.collangle - _root.directionangle) > ((360 - _root.collangle) + _root.directionangle)) {
_root.tangentangle = _root.collangle + 90;
} else {
_root.tangentangle = _root.collangle - 90;
}
_root.reboundangle = _root.tangentangle - (_root.directionangle - _root.tangentangle);
_root.totalspeed = Math.sqrt((_root.xspeed * _root.xspeed) + (_root.yspeed * _root.yspeed));
_root.tempx = (_root.totalspeed * 0.8) * Math.cos((_root.reboundangle - 90) * (Math.PI/180));
_root.tempy = (_root.totalspeed * 0.8) * Math.sin((_root.reboundangle - 90) * (Math.PI/180));
_root.xspeed = _root.tempx;
_root.yspeed = _root.tempy;
if (_root["planet" + (i + 1)].sun == 1) {
pl = _root.levelpl;
_root.onplanetcheck = 10;
}
}
i++;
}
this.createEmptyMovieClip("preview" + pl, 12760 + pl);
_root["preview" + pl].lineStyle(2, 16750848, 100);
_root["preview" + pl].moveTo(_root.newball.oldx, _root.newball.oldy);
_root["preview" + pl].lineTo(_root.newball._x, _root.newball._y);
if (_root.collshow._currentframe == 2) {
_root.oldcoll = 1;
_root.onplanetcheck++;
} else {
_root.oldcoll = 0;
_root.onplanetcheck = 0;
}
if (_root.onplanetcheck > 5) {
pl = _root.levelpl;
}
pl++;
}
_root.onplanetcheck = 0;
}
}
if (_root.dograv == 1) {
_root.plremove++;
if (_root.plremove <= _root.levelpl) {
_root["preview" + _root.plremove].removeMovieClip();
}
_root.xforce = 0;
_root.yforce = 0;
i = 0;
while (i < _root.planetcount) {
_root.xdist = _root["planet" + (i + 1)]._x - _root.ball._x;
_root.ydist = _root["planet" + (i + 1)]._y - _root.ball._y;
_root.xdistus = Math.sqrt(Math.pow(_root.xdist, 2));
_root.ydistus = Math.sqrt(Math.pow(_root.ydist, 2));
_root.hdist = Math.sqrt((_root.xdistus * _root.xdistus) + (_root.ydistus * _root.ydistus));
_root.thisforce = ((_root.gravity * _root.ball.mass) * _root["planet" + (i + 1)].mass) / (_root.hdist * _root.hdist);
_root.xthisforce = (_root.thisforce / (_root.xdistus + _root.ydistus)) * _root.xdistus;
_root.ythisforce = (_root.thisforce / (_root.xdistus + _root.ydistus)) * _root.ydistus;
if (_root.xdist < 0) {
_root.xforce = _root.xforce - _root.xthisforce;
} else {
_root.xforce = _root.xforce + _root.xthisforce;
}
if (_root.ydist < 0) {
_root.yforce = _root.yforce - _root.ythisforce;
} else {
_root.yforce = _root.yforce + _root.ythisforce;
}
i++;
}
_root.xspeed = _root.xspeed + (_root.xforce * 3);
_root.yspeed = _root.yspeed + (_root.yforce * 3);
_root.ball.oldx3 = _root.ball.oldx2;
_root.ball.oldx2 = _root.ball.oldx;
_root.ball.oldx = _root.ball._x;
_root.ball.oldy3 = _root.ball.oldy2;
_root.ball.oldy2 = _root.ball.oldy;
_root.ball.oldy = _root.ball._y;
_root.trail1._x = _root.ball.oldx;
_root.trail1._y = _root.ball.oldy;
_root.trail2._x = _root.ball.oldx2;
_root.trail2._y = _root.ball.oldy2;
_root.trail3._x = _root.ball.oldx3;
_root.trail3._y = _root.ball.oldy3;
_root.ball._x = _root.xspeed + _root.ball._x;
_root.ball._y = _root.yspeed + _root.ball._y;
_root.output2 = (_root.output2 + "|") + _root.ball._x;
_root.collshow.gotoAndStop(1);
_root.onplanetcount = 0;
i = 0;
while (i < _root.planetcount) {
_root.xdist = _root["planet" + (i + 1)]._x - _root.ball._x;
_root.ydist = _root["planet" + (i + 1)]._y - _root.ball._y;
_root.xdistus = Math.sqrt(Math.pow(_root.xdist, 2));
_root.ydistus = Math.sqrt(Math.pow(_root.ydist, 2));
_root.hdist = Math.sqrt((_root.xdist * _root.xdist) + (_root.ydist * _root.ydist));
_root.oldxdist = _root.ball._x - _root.ball.oldx;
_root.oldydist = _root.ball._y - _root.ball.oldy;
_root.oldxdistus = Math.sqrt(Math.pow(_root.oldxdist, 2));
_root.oldydistus = Math.sqrt(Math.pow(_root.oldydist, 2));
_root.oldhdist = Math.sqrt((_root.oldxdist * _root.oldxdist) + (_root.oldydist * _root.oldydist));
_root.distancetravelled = _root.distancetravelled + (_root.oldhdist / 5);
_root.distancetravelledtext = Math.round(_root.distancetravelled) + " km";
if (_root.hdist < ((_root.ball._width + _root["planet" + (i + 1)]._width) / 2)) {
if (((_root[(((("visit" + (_root.currentround - 1)) + "") + _root.currenthole) + "") + (i + 1)] == 0) && (_root["planet" + (i + 1)].sun != 1)) && (_root.theresult._currentframe < 43)) {
_root.hitdisplay.gotoAndStop(2);
_root[(((("visit" + (_root.currentround - 1)) + "") + _root.currenthole) + "") + (i + 1)] = 1;
if (_root.b2on == 1) {
_root["planet" + (i + 1)].visitedmark.gotoAndStop(2);
}
}
_root.correctangle = Math.asin(_root.xdist / _root.hdist);
_root.correctangleadjust = _root.correctangle * 57.2957795130823;
_root.correctx = ((_root["planet" + (i + 1)]._width + _root.ball._width) / 2) * Math.sin(_root.correctangle);
_root.correcty = ((_root["planet" + (i + 1)]._width + _root.ball._width) / 2) * Math.cos(_root.correctangle);
_root.ball._x = _root["planet" + (i + 1)]._x - _root.correctx;
if (_root.ball._y >= _root["planet" + (i + 1)]._y) {
_root.ball._y = _root["planet" + (i + 1)]._y + _root.correcty;
} else {
_root.ball._y = _root["planet" + (i + 1)]._y - _root.correcty;
}
_root.collshow.gotoAndStop(2);
_root.bouncearrow._x = _root.ball._x;
_root.bouncearrow._y = _root.ball._y;
_root.tangent._x = _root.ball._x;
_root.tangent._y = _root.ball._y;
_root.directionarrow._x = _root.ball._x;
_root.directionarrow._y = _root.ball._y;
_root.reboundarrow._x = _root.ball._x;
_root.reboundarrow._y = _root.ball._y;
_root.collangle = Math.asin(_root.xdist / _root.hdist) * 57.2957795130823;
_root.directionangle = Math.asin(_root.oldxdist / _root.oldhdist) * 57.2957795130823;
if ((_root.ball._x >= _root["planet" + (i + 1)]._x) && (_root.ball._y >= _root["planet" + (i + 1)]._y)) {
_root.collangle = 180 + _root.collangle;
_root.collsector = 4;
if (_root.oldydist >= 0) {
_root.directionangle = 270 + (270 - _root.directionangle);
}
} else if ((_root.ball._x >= _root["planet" + (i + 1)]._x) && (_root.ball._y < _root["planet" + (i + 1)]._y)) {
_root.collsector = 2;
if (_root.oldydist >= 0) {
_root.directionangle = 270 + (270 - _root.directionangle);
}
_root.collangle = _root.collangle * -1;
} else if ((_root.ball._x < _root["planet" + (i + 1)]._x) && (_root.ball._y >= _root["planet" + (i + 1)]._y)) {
_root.collsector = 3;
if (_root.oldydist >= 0) {
_root.directionangle = 90 + (90 - _root.directionangle);
}
_root.collangle = _root.collangle + 180;
} else if ((_root.ball._x < _root["planet" + (i + 1)]._x) && (_root.ball._y < _root["planet" + (i + 1)]._y)) {
_root.collsector = 1;
if (_root.oldydist >= 0) {
_root.directionangle = 90 + (90 - _root.directionangle);
}
_root.collangle = 360 - _root.collangle;
}
if (_root.collangle < 0) {
_root.collangle = _root.collangle + 360;
}
if (_root.directionangle < 0) {
_root.directionangle = _root.directionangle + 360;
}
if (_root.collangle > 360) {
_root.collangle = _root.collangle - 360;
}
if (_root.directionangle > 360) {
_root.directionangle = _root.directionangle - 360;
}
_root.directionarrow._rotation = _root.directionangle;
_root.bouncearrow._rotation = _root.collangle;
if ((_root.collangle - _root.directionangle) > ((360 - _root.collangle) + _root.directionangle)) {
_root.tangentangle = _root.collangle + 90;
} else {
_root.tangentangle = _root.collangle - 90;
}
_root.tangent._rotation = _root.tangentangle;
_root.reboundangle = _root.tangentangle - (_root.directionangle - _root.tangentangle);
_root.reboundarrow._rotation = _root.reboundangle;
_root.totalspeed = Math.sqrt((_root.xspeed * _root.xspeed) + (_root.yspeed * _root.yspeed));
_root.tempx = (_root.totalspeed * 0.8) * Math.cos((_root.reboundangle - 90) * (Math.PI/180));
_root.tempy = (_root.totalspeed * 0.8) * Math.sin((_root.reboundangle - 90) * (Math.PI/180));
_root.xspeed = _root.tempx;
_root.yspeed = _root.tempy;
if (_root["planet" + (i + 1)].sun == 1) {
_root.attachMovie("burnup", "burnup", 18301);
stopAllSounds();
if (_root.soundmuted != 1) {
_root.sfxflame.start();
}
_root.burnup._x = _root.ball._x;
_root.burnup._y = _root.ball._y;
_root.burnup._rotation = _root.collangle;
if (_root.theresult._currentframe == 1) {
_root.resultstext = "Burning Up!";
_root.messages.gotoAndPlay(2);
}
_root.ball._x = _root.startx;
_root.ball._y = _root.starty;
_root.ball.oldx = _root.startx;
_root.ball.oldy = _root.starty;
_root.dograv = 0;
_root.trail1._x = _root.ball._x;
_root.trail1._y = _root.ball._y;
_root.trail2._x = _root.ball._x;
_root.trail2._y = _root.ball._y;
_root.trail3._x = _root.ball._x;
_root.trail3._y = _root.ball._y;
_root.quitbutton.gotoAndStop(1);
}
if (_root.onplanetcheck > 5) {
_root.dograv = 0;
_root.quitbutton.gotoAndStop(1);
_root.trail1._x = _root.ball._x;
_root.trail1._y = _root.ball._y;
_root.trail2._x = _root.ball._x;
_root.trail2._y = _root.ball._y;
_root.trail3._x = _root.ball._x;
_root.trail3._y = _root.ball._y;
if (_root.donetutorial != 1) {
_root.tutorial2.gotoAndStop(2);
}
}
}
i++;
}
if (_root.collshow._currentframe == 2) {
if ((_root.onplanetcheck == 0) && (_root["planet" + (i + 1)].sun != 1)) {
if (_root.soundmuted != 1) {
_root.sfxbounce.start();
}
}
_root.oldcoll = 1;
_root.onplanetcheck++;
} else {
_root.oldcoll = 0;
_root.onplanetcheck = 0;
}
_root.xpos = _root.ball._x;
_root.ypos = _root.ball._y;
if ((_root.theresult._currentframe == 1) && ((((_root.ball._x > 1700) || (_root.ball._x < -1000)) || (_root.ball._y > 1500)) || (_root.ball._y < -1000))) {
_root.resultstext = "Out of Bounds";
_root.messages.gotoAndPlay(2);
_root.ball._x = _root.startx;
_root.ball._y = _root.starty;
_root.ball.oldx = _root.startx;
_root.ball.oldy = _root.starty;
_root.dograv = 0;
_root.quitbutton.gotoAndStop(1);
}
_root.oobtl._x = -1000;
_root.oobt._x = -1000;
_root.oobtr._x = -1000;
_root.oobl._x = -1000;
_root.oobr._x = -1000;
_root.oobbl._x = -1000;
_root.oobb._x = -1000;
_root.oobbr._x = -1000;
if ((((_root.ball._x < 0) || (_root.ball._x > 700)) || (_root.ball._y < 0)) || (_root.ball._y > 500)) {
if ((_root.ball._x < 15) && (_root.ball._y < 15)) {
_root.oobtl._x = 10;
_root.oobtl._y = 10;
_root.arrowdist = Math.round(Math.sqrt(Math.pow(_root.ball._x - _root.oobtl._x, 2) + Math.pow(_root.ball._y - _root.oobtl._y, 2)));
} else if (((_root.ball._x > 15) && (_root.ball._x < 685)) && (_root.ball._y < 15)) {
_root.oobt._x = _root.ball._x;
_root.oobt._y = 10;
_root.arrowdist = Math.round(Math.sqrt(Math.pow(_root.ball._x - _root.oobt._x, 2) + Math.pow(_root.ball._y - _root.oobt._y, 2)));
} else if ((_root.ball._x > 685) && (_root.ball._y < 15)) {
_root.oobtr._x = 690;
_root.oobtr._y = 10;
_root.arrowdist = Math.round(Math.sqrt(Math.pow(_root.ball._x - _root.oobtr._x, 2) + Math.pow(_root.ball._y - _root.oobtr._y, 2)));
} else if (((_root.ball._x < 15) && (_root.ball._y > 15)) && (_root.ball._y < 485)) {
_root.oobl._x = 10;
_root.oobl._y = _root.ball._y;
_root.arrowdist = Math.round(Math.sqrt(Math.pow(_root.ball._x - _root.oobl._x, 2) + Math.pow(_root.ball._y - _root.oobl._y, 2)));
} else if (((_root.ball._x > 685) && (_root.ball._y > 15)) && (_root.ball._y < 485)) {
_root.oobr._x = 690;
_root.oobr._y = _root.ball._y;
_root.arrowdist = Math.round(Math.sqrt(Math.pow(_root.ball._x - _root.oobr._x, 2) + Math.pow(_root.ball._y - _root.oobr._y, 2)));
} else if ((_root.ball._x < 15) && (_root.ball._y > 485)) {
_root.oobbl._x = 10;
_root.oobbl._y = 490;
_root.arrowdist = Math.round(Math.sqrt(Math.pow(_root.ball._x - _root.oobbl._x, 2) + Math.pow(_root.ball._y - _root.oobbl._y, 2)));
} else if (((_root.ball._x > 15) && (_root.ball._x < 685)) && (_root.ball._y > 485)) {
_root.oobb._x = _root.ball._x;
_root.oobb._y = 490;
_root.arrowdist = Math.round(Math.sqrt(Math.pow(_root.ball._x - _root.oobb._x, 2) + Math.pow(_root.ball._y - _root.oobb._y, 2)));
} else if ((_root.ball._x > 685) && (_root.ball._y > 485)) {
_root.oobbr._x = 690;
_root.oobbr._y = 490;
_root.arrowdist = Math.round(Math.sqrt(Math.pow(_root.ball._x - _root.oobbr._x, 2) + Math.pow(_root.ball._y - _root.oobbr._y, 2)));
}
}
l1p1x = _root.ball.oldx;
l1p1y = _root.ball.oldy;
l1p2x = _root.ball._x;
l1p2y = _root.ball._y;
l2p1x = _root.gate1._x;
l2p1y = _root.gate1._y;
l2p2x = _root.gate1._x + (30 * Math.cos((_root.gate1._rotation - 90) * (Math.PI/180)));
l2p2y = _root.gate1._y + (30 * Math.sin((_root.gate1._rotation - 90) * (Math.PI/180)));
if ((((((_root.b1on == 1) && (_root.theresult._currentframe < 43)) && (_root.ball._x > -50)) && (_root.ball._x < 750)) && (_root.ball._y > -50)) && (_root.ball._y < 550)) {
_root.trailcount++;
if (_root.trailcount == 400) {
_root.trailcount = 1;
}
this.createEmptyMovieClip("line" + _root.trailcount, 10000 + _root.trailcount);
_root["line" + _root.trailcount].lineStyle(3, 16711680, 101);
_root["line" + _root.trailcount].moveTo(_root.ball.oldx, _root.ball.oldy);
_root["line" + _root.trailcount].lineTo(_root.ball._x, _root.ball._y);
}
l1slope = (l1p2y - l1p1y) / (l1p2x - l1p1x);
l2slope = (l2p2y - l2p1y) / (l2p2x - l2p1x);
l1intercept = l1p1y - (l1slope * l1p1x);
l2intercept = l2p1y - (l2slope * l2p1x);
slopecalc = l2slope - l1slope;
interceptcalc = l1intercept - l2intercept;
xintercept = interceptcalc / slopecalc;
yintercept = (l1slope * xintercept) + l1intercept;
_root.intercept._x = _root.xintercept;
_root.intercept._y = _root.yintercept;
if (l1p2x > l1p1x) {
hix1 = l1p2x;
lox1 = l1p1x;
} else {
lox1 = l1p2x;
hix1 = l1p1x;
}
if (l1p2y > l1p1y) {
hiy1 = l1p2y;
loy1 = l1p1y;
} else {
loy1 = l1p2y;
hiy1 = l1p1y;
}
if (l2p2x > l2p1x) {
hix2 = l2p2x;
lox2 = l2p1x;
} else {
lox2 = l2p2x;
hix2 = l2p1x;
}
if (l2p2y > l2p1y) {
hiy2 = l2p2y;
loy2 = l2p1y;
} else {
loy2 = l2p2y;
hiy2 = l2p1y;
}
if (((((((((_root.theresult._currentframe == 1) && (_root.intercept._x >= lox1)) && (_root.intercept._x >= lox2)) && (_root.intercept._x <= hix1)) && (_root.intercept._x <= hix2)) && (_root.intercept._y >= loy1)) && (_root.intercept._y >= loy2)) && (_root.intercept._y <= hiy1)) && (_root.intercept._y <= hiy2)) {
if (_root.shotstaken == 1) {
_root.holeinonesthisround++;
if (_root.holeinonesthisround > _root.holeinones) {
_root.holeinones = _root.holeinonesthisround;
}
}
if (_root.shotstaken == 1) {
_root.resultstext = ("Hole in " + _root.shotstaken) + " shot";
} else {
_root.resultstext = ("Hole in " + _root.shotstaken) + " shots";
}
_root.puttdistance = _root.distancetravelled;
_root.kongregateStats.submit("LongestPutt", _root.puttdistance);
_root.puttdistancetext = Math.round(_root.puttdistance) + " km";
if (_root.puttdistance > _root.longestputt) {
_root.longestputt = Math.round(_root.puttdistance);
}
if (_root.shotstaken > 12) {
_root.shotstaken = 12;
}
_root[("hole" + _root.currenthole) + "score"] = _root.shotstaken;
_root.theresult.gotoAndPlay(2);
l1p1x = _root.ball.oldx;
l1p1y = _root.ball.oldy;
l1p2x = _root.ball._x;
l1p2y = _root.ball._y;
}
}
Frame 206
_root.gotoAndPlay("gameloop");
Frame 207
_root.arrowdragging = 0;
_root.hitone = 0;
_root.loopcount = "";
i = 0;
while (i < _root.leveleditorplanetsetup.length) {
_root.loopcount = (_root.loopcount + _root.leveleditorplanetsetup[i]) + "|";
i++;
}
_root.attachMovie("leveleditbox", "editorpanel", 42405);
_root.attachMovie("boxneedgateball", "holeballneeded", 42408);
_root.holeballneeded._x = 369;
_root.holeballneeded._y = 253;
_root.editorpanel._x = 200;
_root.editorpanel._y = 200;
_root.editorpanel.planetdisplay.gotoAndStop(_root.currentplanet);
Frame 208
if ((_root.teeplanet > 0) && (_root.ballicondragging != 1)) {
_root.ballicon._x = _root["planet" + _root.teeplanet]._x;
_root.ballicon._y = _root["planet" + _root.teeplanet]._y;
}
if ((_root.holeplanet > 0) && (_root.gateicondragging != 1)) {
_root.gateicon._x = _root["planet" + _root.holeplanet]._x;
_root.gateicon._y = _root["planet" + _root.holeplanet]._y;
}
if (_root.arrowdragging == 1) {
_root.xdistance = 1 * (_root["planet" + _root.teeplanet]._x - _root._xmouse);
_root.ydistance = -1 * (_root["planet" + _root.teeplanet]._y - _root._ymouse);
_root.hdistance = Math.sqrt((_root.xdistance * _root.xdistance) + (_root.ydistance * _root.ydistance));
_root.angle = Math.atan(_root.xdistance / _root.ydistance) * 57.2957795130823;
if (_root.ydistance >= 0) {
_root.ballicon.ballarrow._rotation = Math.round(_root.angle + 180);
} else {
_root.ballicon.ballarrow._rotation = Math.round(_root.angle);
}
_root.teeangle = Math.round(_root.ballicon.ballarrow._rotation);
}
if (_root.gatearrowdragging == 1) {
_root.xdistance = 1 * (_root["planet" + _root.holeplanet]._x - _root._xmouse);
_root.ydistance = -1 * (_root["planet" + _root.holeplanet]._y - _root._ymouse);
_root.hdistance = Math.sqrt((_root.xdistance * _root.xdistance) + (_root.ydistance * _root.ydistance));
_root.angle = Math.atan(_root.xdistance / _root.ydistance) * 57.2957795130823;
if (_root.ydistance >= 0) {
_root.gateicon.gatearrow._rotation = Math.round(_root.angle + 180);
} else {
_root.gateicon.gatearrow._rotation = Math.round(_root.angle);
}
_root.holeangle = Math.round(_root.gateicon.gatearrow._rotation);
}
Frame 209
_root.gotoAndPlay("carryonlev");
Frame 210
_root.whichsong = "strike1";
_root.sfxstrike = new Sound();
_root.sfxstrike.attachSound(_root.whichsong);
_root.sfxstrike.setVolume(50);
_root.whichsong = "flame";
_root.sfxflame = new Sound();
_root.sfxflame.attachSound(_root.whichsong);
_root.sfxflame.setVolume(50);
_root.whichsong = "bounce";
_root.sfxbounce = new Sound();
_root.sfxbounce.attachSound(_root.whichsong);
_root.sfxbounce.setVolume(50);
_root.buttonconsole._alpha = 20;
_root.editorpanel.removeMovieClip();
_root.levelpl = 25;
_root.intshow = "";
_root.planetcount = 0;
_root.holetitle = "";
_root.starmap.gotoAndStop(1);
_root.ballstartplanet = "planet" + _root.leveleditorplanetsetup[0];
_root.ballstartangle = _root.leveleditorplanetsetup[1];
_root.gatestartplanet = "planet" + _root.leveleditorplanetsetup[2];
_root.gatestartangle = _root.leveleditorplanetsetup[3];
_root.loopcount = "";
i = 0;
while (i < _root.leveleditorplanetsetup.length) {
_root.loopcount = (_root.loopcount + _root.leveleditorplanetsetup[i]) + "|";
i++;
}
i = 4;
while (i < (_root.leveleditorplanetsetup.length - 1)) {
_root.planetcount++;
_root.planetid = _root.leveleditorplanetsetup[i].substr(6);
_root.attachMovie(_root.leveleditorplanetsetup[i], "planet" + _root.planetcount, 100 + i);
if (_root.planetid > 50) {
_root["planet" + _root.planetcount].sun = 1;
} else {
_root["planet" + _root.planetcount].sun = 0;
}
_root["planet" + _root.planetcount]._x = _root.leveleditorplanetsetup[i + 1] + (_root["planet" + _root.planetcount]._width / 2);
_root["planet" + _root.planetcount]._y = _root.leveleditorplanetsetup[i + 2] + (_root["planet" + _root.planetcount]._width / 2);
i = i + 3;
}
_root.attachMovie("result", "theresult", 21000);
_root.attachMovie("messages", "messages", 201);
_root.attachMovie("drivearrow", "drivearrow", 140);
_root.drivearrow._x = -1000;
_root.attachMovie("holeinonespot", "holeinonespot", 20500);
_root.holeinonespot._x = -1000;
_root.attachMovie("tangent", "tangent", 520);
_root.tangent._x = -1000;
_root.attachMovie("bouncearrow", "bouncearrow", 521);
_root.bouncearrow._x = -1000;
_root.attachMovie("directionarrow", "directionarrow", 522);
_root.directionarrow._x = -1000;
_root.attachMovie("reboundarrow", "reboundarrow", 523);
_root.reboundarrow._x = -1000;
_root.attachMovie("ball", "ball", 31160);
_root.ball._x = -1000;
_root.attachMovie("trail1", "trail1", 154);
_root.trail1._x = -1000;
_root.attachMovie("trail2", "trail2", 153);
_root.trail2._x = -1000;
_root.attachMovie("trail3", "trail3", 152);
_root.trail3._x = -1000;
_root.attachMovie("trail4", "trail4", 151);
_root.trail4._x = -1000;
_root.attachMovie("gate1", "gate1", 43270);
_root.gate1._x = -1000;
_root.attachMovie("gate2", "gate2", 90);
_root.gate2._x = -1000;
_root.attachMovie("oobtl", "oobtl", 21400);
_root.oobtl._x = -1000;
_root.attachMovie("oobt", "oobt", 21401);
_root.oobt._x = -1000;
_root.attachMovie("oobtr", "oobtr", 21402);
_root.oobtr._x = -1000;
_root.attachMovie("oobr", "oobr", 21403);
_root.oobr._x = -1000;
_root.attachMovie("oobbr", "oobbr", 21404);
_root.oobbr._x = -1000;
_root.attachMovie("oobb", "oobb", 21405);
_root.oobb._x = -1000;
_root.attachMovie("oobbl", "oobbl", 21406);
_root.oobbl._x = -1000;
_root.attachMovie("oobl", "oobl", 21407);
_root.oobl._x = -1000;
_root.shotstaken = 0;
_root.gravity = 1.5;
_root.dragging = 0;
_root.dograv = 0;
_root.oldcoll = 0;
_root.onplanet = 1;
i = 0;
while (i < _root.planetcount) {
_root.radius = _root["planet" + (i + 1)]._width / 2;
_root["planet" + (i + 1)].mass = 4.18879020478639 * _root.radius;
_root["planet" + (i + 1)].masstext = "Mass: " + Math.round(_root["planet" + (i + 1)].mass);
i++;
}
_root.ball.mass = 10;
_root.xspeed = 0;
_root.yspeed = 0;
_root.ball._x = _root[_root.ballstartplanet]._x + (((_root[_root.ballstartplanet]._width + _root.ball._width) / 2) * Math.sin((_root.ballstartangle + 90) * (Math.PI/180)));
_root.ball._y = _root[_root.ballstartplanet]._y + (((_root[_root.ballstartplanet]._width + _root.ball._width) / 2) * Math.cos((_root.ballstartangle + 90) * (Math.PI/180)));
_root.gate1._x = _root[_root.gatestartplanet]._x + ((_root[_root.gatestartplanet]._width / 2) * Math.sin((_root.gatestartangle + 90) * (Math.PI/180)));
_root.gate1._y = _root[_root.gatestartplanet]._y + ((_root[_root.gatestartplanet]._width / 2) * Math.cos((_root.gatestartangle + 90) * (Math.PI/180)));
_root.gate1._rotation = 90 - _root.gatestartangle;
_root.gate2._x = _root[_root.gatestartplanet]._x + ((_root[_root.gatestartplanet]._width / 2) * Math.sin((_root.gatestartangle + 90) * (Math.PI/180)));
_root.gate2._y = _root[_root.gatestartplanet]._y + ((_root[_root.gatestartplanet]._width / 2) * Math.cos((_root.gatestartangle + 90) * (Math.PI/180)));
_root.gate2._rotation = 90 - _root.gatestartangle;
if (_root.b0on == 1) {
_root.buttonconsole.b0.gotoAndStop(2);
} else {
i = 0;
while (i < _root.planetcount) {
_root["planet" + (i + 1)].visitedmark.massbox._alpha = 0;
_root["planet" + (i + 1)].flameicon.massbox._alpha = 0;
i++;
}
}
if (_root.soundmuted == 1) {
_root.mutebutton.gotoAndStop(2);
}
if (_root.bpon == 1) {
_root.buttonconsole.bp.gotoAndStop(2);
}
if (_root.b1on == 1) {
_root.buttonconsole.b1.gotoAndStop(2);
}
if (_root.b3on == 1) {
_root.buttonconsole.b3.gotoAndStop(2);
_root.tangent.gotoAndStop(2);
_root.bouncearrow.gotoAndStop(2);
_root.directionarrow.gotoAndStop(2);
_root.reboundarrow.gotoAndStop(2);
}
if (_root.unlockedbonuses < 4) {
_root.buttonconsole.b1._y = -1000;
}
_root.buttonconsole.b2._y = -1000;
if (_root.unlockedbonuses < 15) {
_root.buttonconsole.b3._y = -1000;
}
_root.buttonconsole.b3._x = _root.buttonconsole.b3._x - 50;
_root.buttonconsole.b4._y = -1000;
Frame 211
if (_root.dragging == 1) {
_root.hitmaxpower = 150;
_root.olddrivearrowx = _root.drivearrow._x;
_root.olddrivearrowy = _root.drivearrow._y;
_root.drivearrow._x = _root._xmouse;
_root.drivearrow._y = _root._ymouse;
_root.onplanetcheck = 0;
_root.xdistance = 1 * (_root.ball._x - _root.drivearrow._x);
_root.ydistance = -1 * (_root.ball._y - _root.drivearrow._y);
_root.hdistance = Math.sqrt((_root.xdistance * _root.xdistance) + (_root.ydistance * _root.ydistance));
_root.angle = Math.atan(_root.xdistance / _root.ydistance) * 57.2957795130823;
if (_root.hdistance > _root.hitmaxpower) {
_root.temppc = _root.hitmaxpower / _root.hdistance;
_root.drivearrow._x = _root.ball._x - (_root.xdistance * _root.temppc);
_root.drivearrow._y = _root.ball._y + (_root.ydistance * _root.temppc);
_root.drivearrow.arrowmask._y = _root.hitmaxpower;
_root.xdistance = 1 * (_root.ball._x - _root.drivearrow._x);
_root.ydistance = -1 * (_root.ball._y - _root.drivearrow._y);
_root.hdistance = Math.sqrt((_root.xdistance * _root.xdistance) + (_root.ydistance * _root.ydistance));
_root.angle = Math.atan(_root.xdistance / _root.ydistance) * 57.2957795130823;
} else {
_root.drivearrow.arrowmask._y = _root.hdistance;
}
if (_root.ydistance >= 0) {
_root.drivearrow._rotation = _root.angle + 180;
} else {
_root.drivearrow._rotation = _root.angle;
}
if (_root.bpon == 1) {
_root.newball._x = _root.ball._x;
_root.newball._y = _root.ball._y;
_root.newball.oldx = _root.ball._x;
_root.newball.oldy = _root.ball._y;
_root.xspeed = (_root.drivearrow._x - _root.ball._x) / 6;
_root.yspeed = (_root.drivearrow._y - _root.ball._y) / 6;
pl = 0;
while (pl <= _root.levelpl) {
_root["preview" + pl].removeMovieClip();
pl++;
}
pl = 0;
while (pl < _root.levelpl) {
_root.xforce = 0;
_root.yforce = 0;
i = 0;
while (i < _root.planetcount) {
_root.xdist = _root["planet" + (i + 1)]._x - _root.newball._x;
_root.ydist = _root["planet" + (i + 1)]._y - _root.newball._y;
_root.xdistus = Math.sqrt(Math.pow(_root.xdist, 2));
_root.ydistus = Math.sqrt(Math.pow(_root.ydist, 2));
_root.hdist = Math.sqrt((_root.xdistus * _root.xdistus) + (_root.ydistus * _root.ydistus));
_root.thisforce = ((_root.gravity * _root.ball.mass) * _root["planet" + (i + 1)].mass) / (_root.hdist * _root.hdist);
_root.xthisforce = (_root.thisforce / (_root.xdistus + _root.ydistus)) * _root.xdistus;
_root.ythisforce = (_root.thisforce / (_root.xdistus + _root.ydistus)) * _root.ydistus;
if (_root.xdist < 0) {
_root.xforce = _root.xforce - _root.xthisforce;
} else {
_root.xforce = _root.xforce + _root.xthisforce;
}
if (_root.ydist < 0) {
_root.yforce = _root.yforce - _root.ythisforce;
} else {
_root.yforce = _root.yforce + _root.ythisforce;
}
i++;
}
_root.xspeed = _root.xspeed + (_root.xforce * 3);
_root.yspeed = _root.yspeed + (_root.yforce * 3);
_root.newball.oldx = _root.newball._x;
_root.newball.oldy = _root.newball._y;
_root.newball._x = _root.xspeed + _root.newball._x;
_root.newball._y = _root.yspeed + _root.newball._y;
_root.output1 = (_root.output1 + _root.newball._x) + "|";
_root.collshow.gotoAndStop(1);
_root.onplanetcount = 0;
i = 0;
while (i < _root.planetcount) {
_root.xdist = _root["planet" + (i + 1)]._x - _root.newball._x;
_root.ydist = _root["planet" + (i + 1)]._y - _root.newball._y;
_root.xdistus = Math.sqrt(Math.pow(_root.xdist, 2));
_root.ydistus = Math.sqrt(Math.pow(_root.ydist, 2));
_root.hdist = Math.sqrt((_root.xdist * _root.xdist) + (_root.ydist * _root.ydist));
_root.oldxdist = _root.newball._x - _root.newball.oldx;
_root.oldydist = _root.newball._y - _root.newball.oldy;
_root.oldxdistus = Math.sqrt(Math.pow(_root.oldxdist, 2));
_root.oldydistus = Math.sqrt(Math.pow(_root.oldydist, 2));
_root.oldhdist = Math.sqrt((_root.oldxdist * _root.oldxdist) + (_root.oldydist * _root.oldydist));
if (_root.hdist < ((_root.ball._width + _root["planet" + (i + 1)]._width) / 2)) {
_root.correctangle = Math.asin(_root.xdist / _root.hdist);
_root.correctangleadjust = _root.correctangle * 57.2957795130823;
_root.correctx = ((_root["planet" + (i + 1)]._width + _root.ball._width) / 2) * Math.sin(_root.correctangle);
_root.correcty = ((_root["planet" + (i + 1)]._width + _root.ball._width) / 2) * Math.cos(_root.correctangle);
_root.newball._x = _root["planet" + (i + 1)]._x - _root.correctx;
if (_root.newball._y >= _root["planet" + (i + 1)]._y) {
_root.newball._y = _root["planet" + (i + 1)]._y + _root.correcty;
} else {
_root.newball._y = _root["planet" + (i + 1)]._y - _root.correcty;
}
_root.collshow.gotoAndStop(2);
_root.collangle = Math.asin(_root.xdist / _root.hdist) * 57.2957795130823;
_root.directionangle = Math.asin(_root.oldxdist / _root.oldhdist) * 57.2957795130823;
if ((_root.newball._x >= _root["planet" + (i + 1)]._x) && (_root.newball._y >= _root["planet" + (i + 1)]._y)) {
_root.collangle = 180 + _root.collangle;
_root.collsector = 4;
if (_root.oldydist >= 0) {
_root.directionangle = 270 + (270 - _root.directionangle);
}
} else if ((_root.newball._x >= _root["planet" + (i + 1)]._x) && (_root.newball._y < _root["planet" + (i + 1)]._y)) {
_root.collsector = 2;
if (_root.oldydist >= 0) {
_root.directionangle = 270 + (270 - _root.directionangle);
}
_root.collangle = _root.collangle * -1;
} else if ((_root.newball._x < _root["planet" + (i + 1)]._x) && (_root.newball._y >= _root["planet" + (i + 1)]._y)) {
_root.collsector = 3;
if (_root.oldydist >= 0) {
_root.directionangle = 90 + (90 - _root.directionangle);
}
_root.collangle = _root.collangle + 180;
} else if ((_root.newball._x < _root["planet" + (i + 1)]._x) && (_root.newball._y < _root["planet" + (i + 1)]._y)) {
_root.collsector = 1;
if (_root.oldydist >= 0) {
_root.directionangle = 90 + (90 - _root.directionangle);
}
_root.collangle = 360 - _root.collangle;
}
if (_root.collangle < 0) {
_root.collangle = _root.collangle + 360;
}
if (_root.directionangle < 0) {
_root.directionangle = _root.directionangle + 360;
}
if (_root.collangle > 360) {
_root.collangle = _root.collangle - 360;
}
if (_root.directionangle > 360) {
_root.directionangle = _root.directionangle - 360;
}
if ((_root.collangle - _root.directionangle) > ((360 - _root.collangle) + _root.directionangle)) {
_root.tangentangle = _root.collangle + 90;
} else {
_root.tangentangle = _root.collangle - 90;
}
_root.reboundangle = _root.tangentangle - (_root.directionangle - _root.tangentangle);
_root.totalspeed = Math.sqrt((_root.xspeed * _root.xspeed) + (_root.yspeed * _root.yspeed));
_root.tempx = (_root.totalspeed * 0.8) * Math.cos((_root.reboundangle - 90) * (Math.PI/180));
_root.tempy = (_root.totalspeed * 0.8) * Math.sin((_root.reboundangle - 90) * (Math.PI/180));
_root.xspeed = _root.tempx;
_root.yspeed = _root.tempy;
if (_root["planet" + (i + 1)].sun == 1) {
pl = _root.levelpl;
_root.onplanetcheck = 10;
}
}
i++;
}
this.createEmptyMovieClip("preview" + pl, 12760 + pl);
_root["preview" + pl].lineStyle(2, 16750848, 100);
_root["preview" + pl].moveTo(_root.newball.oldx, _root.newball.oldy);
_root["preview" + pl].lineTo(_root.newball._x, _root.newball._y);
if (_root.collshow._currentframe == 2) {
_root.oldcoll = 1;
_root.onplanetcheck++;
} else {
_root.oldcoll = 0;
_root.onplanetcheck = 0;
}
if (_root.onplanetcheck > 5) {
pl = _root.levelpl;
}
pl++;
}
_root.onplanetcheck = 0;
}
}
if (_root.dograv == 1) {
_root.plremove++;
if (_root.plremove <= _root.levelpl) {
_root["preview" + _root.plremove].removeMovieClip();
}
_root.xforce = 0;
_root.yforce = 0;
i = 0;
while (i < _root.planetcount) {
_root.xdist = _root["planet" + (i + 1)]._x - _root.ball._x;
_root.ydist = _root["planet" + (i + 1)]._y - _root.ball._y;
_root.xdistus = Math.sqrt(Math.pow(_root.xdist, 2));
_root.ydistus = Math.sqrt(Math.pow(_root.ydist, 2));
_root.hdist = Math.sqrt((_root.xdistus * _root.xdistus) + (_root.ydistus * _root.ydistus));
_root.thisforce = ((_root.gravity * _root.ball.mass) * _root["planet" + (i + 1)].mass) / (_root.hdist * _root.hdist);
_root.xthisforce = (_root.thisforce / (_root.xdistus + _root.ydistus)) * _root.xdistus;
_root.ythisforce = (_root.thisforce / (_root.xdistus + _root.ydistus)) * _root.ydistus;
if (_root.xdist < 0) {
_root.xforce = _root.xforce - _root.xthisforce;
} else {
_root.xforce = _root.xforce + _root.xthisforce;
}
if (_root.ydist < 0) {
_root.yforce = _root.yforce - _root.ythisforce;
} else {
_root.yforce = _root.yforce + _root.ythisforce;
}
i++;
}
_root.xspeed = _root.xspeed + (_root.xforce * 3);
_root.yspeed = _root.yspeed + (_root.yforce * 3);
_root.ball.oldx3 = _root.ball.oldx2;
_root.ball.oldx2 = _root.ball.oldx;
_root.ball.oldx = _root.ball._x;
_root.ball.oldy3 = _root.ball.oldy2;
_root.ball.oldy2 = _root.ball.oldy;
_root.ball.oldy = _root.ball._y;
_root.trail1._x = _root.ball.oldx;
_root.trail1._y = _root.ball.oldy;
_root.trail2._x = _root.ball.oldx2;
_root.trail2._y = _root.ball.oldy2;
_root.trail3._x = _root.ball.oldx3;
_root.trail3._y = _root.ball.oldy3;
_root.ball._x = _root.xspeed + _root.ball._x;
_root.ball._y = _root.yspeed + _root.ball._y;
_root.output2 = (_root.output2 + "|") + _root.ball._x;
_root.collshow.gotoAndStop(1);
_root.onplanetcount = 0;
i = 0;
while (i < _root.planetcount) {
_root.xdist = _root["planet" + (i + 1)]._x - _root.ball._x;
_root.ydist = _root["planet" + (i + 1)]._y - _root.ball._y;
_root.xdistus = Math.sqrt(Math.pow(_root.xdist, 2));
_root.ydistus = Math.sqrt(Math.pow(_root.ydist, 2));
_root.hdist = Math.sqrt((_root.xdist * _root.xdist) + (_root.ydist * _root.ydist));
_root.oldxdist = _root.ball._x - _root.ball.oldx;
_root.oldydist = _root.ball._y - _root.ball.oldy;
_root.oldxdistus = Math.sqrt(Math.pow(_root.oldxdist, 2));
_root.oldydistus = Math.sqrt(Math.pow(_root.oldydist, 2));
_root.oldhdist = Math.sqrt((_root.oldxdist * _root.oldxdist) + (_root.oldydist * _root.oldydist));
_root.distancetravelled = _root.distancetravelled + (_root.oldhdist / 5);
_root.distancetravelledtext = Math.round(_root.distancetravelled) + " km";
if (_root.hdist < ((_root.ball._width + _root["planet" + (i + 1)]._width) / 2)) {
_root.correctangle = Math.asin(_root.xdist / _root.hdist);
_root.correctangleadjust = _root.correctangle * 57.2957795130823;
_root.correctx = ((_root["planet" + (i + 1)]._width + _root.ball._width) / 2) * Math.sin(_root.correctangle);
_root.correcty = ((_root["planet" + (i + 1)]._width + _root.ball._width) / 2) * Math.cos(_root.correctangle);
_root.ball._x = _root["planet" + (i + 1)]._x - _root.correctx;
if (_root.ball._y >= _root["planet" + (i + 1)]._y) {
_root.ball._y = _root["planet" + (i + 1)]._y + _root.correcty;
} else {
_root.ball._y = _root["planet" + (i + 1)]._y - _root.correcty;
}
_root.collshow.gotoAndStop(2);
_root.bouncearrow._x = _root.ball._x;
_root.bouncearrow._y = _root.ball._y;
_root.tangent._x = _root.ball._x;
_root.tangent._y = _root.ball._y;
_root.directionarrow._x = _root.ball._x;
_root.directionarrow._y = _root.ball._y;
_root.reboundarrow._x = _root.ball._x;
_root.reboundarrow._y = _root.ball._y;
_root.collangle = Math.asin(_root.xdist / _root.hdist) * 57.2957795130823;
_root.directionangle = Math.asin(_root.oldxdist / _root.oldhdist) * 57.2957795130823;
if ((_root.ball._x >= _root["planet" + (i + 1)]._x) && (_root.ball._y >= _root["planet" + (i + 1)]._y)) {
_root.collangle = 180 + _root.collangle;
_root.collsector = 4;
if (_root.oldydist >= 0) {
_root.directionangle = 270 + (270 - _root.directionangle);
}
} else if ((_root.ball._x >= _root["planet" + (i + 1)]._x) && (_root.ball._y < _root["planet" + (i + 1)]._y)) {
_root.collsector = 2;
if (_root.oldydist >= 0) {
_root.directionangle = 270 + (270 - _root.directionangle);
}
_root.collangle = _root.collangle * -1;
} else if ((_root.ball._x < _root["planet" + (i + 1)]._x) && (_root.ball._y >= _root["planet" + (i + 1)]._y)) {
_root.collsector = 3;
if (_root.oldydist >= 0) {
_root.directionangle = 90 + (90 - _root.directionangle);
}
_root.collangle = _root.collangle + 180;
} else if ((_root.ball._x < _root["planet" + (i + 1)]._x) && (_root.ball._y < _root["planet" + (i + 1)]._y)) {
_root.collsector = 1;
if (_root.oldydist >= 0) {
_root.directionangle = 90 + (90 - _root.directionangle);
}
_root.collangle = 360 - _root.collangle;
}
if (_root.collangle < 0) {
_root.collangle = _root.collangle + 360;
}
if (_root.directionangle < 0) {
_root.directionangle = _root.directionangle + 360;
}
if (_root.collangle > 360) {
_root.collangle = _root.collangle - 360;
}
if (_root.directionangle > 360) {
_root.directionangle = _root.directionangle - 360;
}
_root.directionarrow._rotation = _root.directionangle;
_root.bouncearrow._rotation = _root.collangle;
if ((_root.collangle - _root.directionangle) > ((360 - _root.collangle) + _root.directionangle)) {
_root.tangentangle = _root.collangle + 90;
} else {
_root.tangentangle = _root.collangle - 90;
}
_root.tangent._rotation = _root.tangentangle;
_root.reboundangle = _root.tangentangle - (_root.directionangle - _root.tangentangle);
_root.reboundarrow._rotation = _root.reboundangle;
_root.totalspeed = Math.sqrt((_root.xspeed * _root.xspeed) + (_root.yspeed * _root.yspeed));
_root.tempx = (_root.totalspeed * 0.8) * Math.cos((_root.reboundangle - 90) * (Math.PI/180));
_root.tempy = (_root.totalspeed * 0.8) * Math.sin((_root.reboundangle - 90) * (Math.PI/180));
_root.xspeed = _root.tempx;
_root.yspeed = _root.tempy;
if (_root["planet" + (i + 1)].sun == 1) {
_root.attachMovie("burnup", "burnup", 23001);
stopAllSounds();
if (_root.soundmuted != 1) {
_root.sfxflame.start();
}
_root.burnup._x = _root.ball._x;
_root.burnup._y = _root.ball._y;
_root.burnup._rotation = _root.collangle;
if (_root.theresult._currentframe == 1) {
_root.resultstext = "Burning Up!";
_root.messages.gotoAndPlay(2);
}
_root.ball._x = _root.startx;
_root.ball._y = _root.starty;
_root.ball.oldx = _root.startx;
_root.ball.oldy = _root.starty;
_root.dograv = 0;
_root.trail1._x = _root.ball._x;
_root.trail1._y = _root.ball._y;
_root.trail2._x = _root.ball._x;
_root.trail2._y = _root.ball._y;
_root.trail3._x = _root.ball._x;
_root.trail3._y = _root.ball._y;
_root.quitbutton.gotoAndStop(1);
}
if (_root.onplanetcheck > 5) {
_root.dograv = 0;
_root.quitbutton.gotoAndStop(1);
_root.trail1._x = _root.ball._x;
_root.trail1._y = _root.ball._y;
_root.trail2._x = _root.ball._x;
_root.trail2._y = _root.ball._y;
_root.trail3._x = _root.ball._x;
_root.trail3._y = _root.ball._y;
if (_root.donetutorial != 1) {
_root.tutorial2.gotoAndStop(2);
}
}
}
i++;
}
if (_root.collshow._currentframe == 2) {
if ((_root.onplanetcheck == 0) && (_root["planet" + (i + 1)].sun != 1)) {
if (_root.soundmuted != 1) {
_root.sfxbounce.start();
}
}
_root.oldcoll = 1;
_root.onplanetcheck++;
} else {
_root.oldcoll = 0;
_root.onplanetcheck = 0;
}
_root.xpos = _root.ball._x;
_root.ypos = _root.ball._y;
if ((_root.theresult._currentframe == 1) && ((((_root.ball._x > 1700) || (_root.ball._x < -1000)) || (_root.ball._y > 1500)) || (_root.ball._y < -1000))) {
_root.resultstext = "Out of Bounds";
_root.messages.gotoAndPlay(2);
_root.ball._x = _root.startx;
_root.ball._y = _root.starty;
_root.ball.oldx = _root.startx;
_root.ball.oldy = _root.starty;
_root.dograv = 0;
_root.quitbutton.gotoAndStop(1);
}
_root.oobtl._x = -1000;
_root.oobt._x = -1000;
_root.oobtr._x = -1000;
_root.oobl._x = -1000;
_root.oobr._x = -1000;
_root.oobbl._x = -1000;
_root.oobb._x = -1000;
_root.oobbr._x = -1000;
if ((((_root.ball._x < 0) || (_root.ball._x > 700)) || (_root.ball._y < 0)) || (_root.ball._y > 500)) {
if ((_root.ball._x < 15) && (_root.ball._y < 15)) {
_root.oobtl._x = 10;
_root.oobtl._y = 10;
_root.arrowdist = Math.round(Math.sqrt(Math.pow(_root.ball._x - _root.oobtl._x, 2) + Math.pow(_root.ball._y - _root.oobtl._y, 2)));
} else if (((_root.ball._x > 15) && (_root.ball._x < 685)) && (_root.ball._y < 15)) {
_root.oobt._x = _root.ball._x;
_root.oobt._y = 10;
_root.arrowdist = Math.round(Math.sqrt(Math.pow(_root.ball._x - _root.oobt._x, 2) + Math.pow(_root.ball._y - _root.oobt._y, 2)));
} else if ((_root.ball._x > 685) && (_root.ball._y < 15)) {
_root.oobtr._x = 690;
_root.oobtr._y = 10;
_root.arrowdist = Math.round(Math.sqrt(Math.pow(_root.ball._x - _root.oobtr._x, 2) + Math.pow(_root.ball._y - _root.oobtr._y, 2)));
} else if (((_root.ball._x < 15) && (_root.ball._y > 15)) && (_root.ball._y < 485)) {
_root.oobl._x = 10;
_root.oobl._y = _root.ball._y;
_root.arrowdist = Math.round(Math.sqrt(Math.pow(_root.ball._x - _root.oobl._x, 2) + Math.pow(_root.ball._y - _root.oobl._y, 2)));
} else if (((_root.ball._x > 685) && (_root.ball._y > 15)) && (_root.ball._y < 485)) {
_root.oobr._x = 690;
_root.oobr._y = _root.ball._y;
_root.arrowdist = Math.round(Math.sqrt(Math.pow(_root.ball._x - _root.oobr._x, 2) + Math.pow(_root.ball._y - _root.oobr._y, 2)));
} else if ((_root.ball._x < 15) && (_root.ball._y > 485)) {
_root.oobbl._x = 10;
_root.oobbl._y = 490;
_root.arrowdist = Math.round(Math.sqrt(Math.pow(_root.ball._x - _root.oobbl._x, 2) + Math.pow(_root.ball._y - _root.oobbl._y, 2)));
} else if (((_root.ball._x > 15) && (_root.ball._x < 685)) && (_root.ball._y > 485)) {
_root.oobb._x = _root.ball._x;
_root.oobb._y = 490;
_root.arrowdist = Math.round(Math.sqrt(Math.pow(_root.ball._x - _root.oobb._x, 2) + Math.pow(_root.ball._y - _root.oobb._y, 2)));
} else if ((_root.ball._x > 685) && (_root.ball._y > 485)) {
_root.oobbr._x = 690;
_root.oobbr._y = 490;
_root.arrowdist = Math.round(Math.sqrt(Math.pow(_root.ball._x - _root.oobbr._x, 2) + Math.pow(_root.ball._y - _root.oobbr._y, 2)));
}
}
l1p1x = _root.ball.oldx;
l1p1y = _root.ball.oldy;
l1p2x = _root.ball._x;
l1p2y = _root.ball._y;
l2p1x = _root.gate1._x;
l2p1y = _root.gate1._y;
l2p2x = _root.gate1._x + (30 * Math.cos((_root.gate1._rotation - 90) * (Math.PI/180)));
l2p2y = _root.gate1._y + (30 * Math.sin((_root.gate1._rotation - 90) * (Math.PI/180)));
if ((((((_root.b1on == 1) && (_root.theresult._currentframe < 43)) && (_root.ball._x > -50)) && (_root.ball._x < 750)) && (_root.ball._y > -50)) && (_root.ball._y < 550)) {
_root.trailcount++;
if (_root.trailcount == 400) {
_root.trailcount = 1;
}
this.createEmptyMovieClip("line" + _root.trailcount, 10000 + _root.trailcount);
_root["line" + _root.trailcount].lineStyle(3, 16711680, 101);
_root["line" + _root.trailcount].moveTo(_root.ball.oldx, _root.ball.oldy);
_root["line" + _root.trailcount].lineTo(_root.ball._x, _root.ball._y);
}
l1slope = (l1p2y - l1p1y) / (l1p2x - l1p1x);
l2slope = (l2p2y - l2p1y) / (l2p2x - l2p1x);
l1intercept = l1p1y - (l1slope * l1p1x);
l2intercept = l2p1y - (l2slope * l2p1x);
slopecalc = l2slope - l1slope;
interceptcalc = l1intercept - l2intercept;
xintercept = interceptcalc / slopecalc;
yintercept = (l1slope * xintercept) + l1intercept;
_root.intercept._x = _root.xintercept;
_root.intercept._y = _root.yintercept;
if (l1p2x > l1p1x) {
hix1 = l1p2x;
lox1 = l1p1x;
} else {
lox1 = l1p2x;
hix1 = l1p1x;
}
if (l1p2y > l1p1y) {
hiy1 = l1p2y;
loy1 = l1p1y;
} else {
loy1 = l1p2y;
hiy1 = l1p1y;
}
if (l2p2x > l2p1x) {
hix2 = l2p2x;
lox2 = l2p1x;
} else {
lox2 = l2p2x;
hix2 = l2p1x;
}
if (l2p2y > l2p1y) {
hiy2 = l2p2y;
loy2 = l2p1y;
} else {
loy2 = l2p2y;
hiy2 = l2p1y;
}
if (((((((((_root.theresult._currentframe == 1) && (_root.intercept._x >= lox1)) && (_root.intercept._x >= lox2)) && (_root.intercept._x <= hix1)) && (_root.intercept._x <= hix2)) && (_root.intercept._y >= loy1)) && (_root.intercept._y >= loy2)) && (_root.intercept._y <= hiy1)) && (_root.intercept._y <= hiy2)) {
if (_root.shotstaken == 1) {
_root.holeinonesthisround++;
if (_root.holeinonesthisround > _root.holeinones) {
_root.holeinones = _root.holeinonesthisround;
}
}
if (_root.shotstaken == 1) {
_root.resultstext = ("Hole in " + _root.shotstaken) + " shot";
} else {
_root.resultstext = ("Hole in " + _root.shotstaken) + " shots";
}
_root.puttdistance = _root.distancetravelled;
_root.puttdistancetext = Math.round(_root.puttdistance) + " km";
_root.messages.gotoAndPlay(2);
l1p1x = _root.ball.oldx;
l1p1y = _root.ball.oldy;
l1p2x = _root.ball._x;
l1p2y = _root.ball._y;
}
}
Frame 212
_root.gotoAndPlay("leveleditorplayloop");
Frame 213
if (_root.previousmedal == "") {
_root.prevmedal.gotoAndStop(1);
} else if (_root.previousmedal == "b") {
_root.prevmedal.gotoAndStop(2);
} else if (_root.previousmedal == "s") {
_root.prevmedal.gotoAndStop(3);
} else if (_root.previousmedal == "g") {
_root.prevmedal.gotoAndStop(4);
} else if (_root.previousmedal == "p") {
_root.prevmedal.gotoAndStop(5);
}
if (_root.medalearned == "b") {
_root.congratstext = "Congratulations, you've earned a Bronze Medal!";
_root.medal.gotoAndStop(1);
_root.medaltext.gotoAndStop(1);
} else if (_root.medalearned == "s") {
_root.congratstext = "Congratulations, you've earned a Silver Medal!";
_root.medal.gotoAndStop(2);
_root.medaltext.gotoAndStop(2);
} else if (_root.medalearned == "g") {
_root.congratstext = "Congratulations, you've earned a Gold Medal!";
_root.medal.gotoAndStop(3);
_root.medaltext.gotoAndStop(3);
} else if (_root.medalearned == "p") {
_root.congratstext = "Congratulations, you've earned a Platinum Medal!";
_root.medal.gotoAndStop(4);
_root.medaltext.gotoAndStop(4);
}
_root.planetsvisited = 0;
_root.visit333 = 0;
_root.visit432 = 0;
_root.visit471 = 0;
_root.visit521 = 0;
_root.visit562 = 0;
_root.visit591 = 0;
_root.visit631 = 0;
_root.visit654 = 0;
_root.visit664 = 0;
_root.visit671 = 0;
_root.visit712 = 0;
_root.visit722 = 0;
_root.visit733 = 0;
_root.visit752 = 0;
_root.visit772 = 0;
_root.visit792 = 0;
_root.visit812 = 0;
_root.visit821 = 0;
_root.visit831 = 0;
_root.visit851 = 0;
_root.visit862 = 0;
_root.visit872 = 0;
_root.visit881 = 0;
_root.visit892 = 0;
_root.visit915 = 0;
_root.visit921 = 0;
_root.visit934 = 0;
_root.visit933 = 0;
_root.visit942 = 0;
_root.visit952 = 0;
_root.visit961 = 0;
_root.visit972 = 0;
_root.visit983 = 0;
_root.visit993 = 0;
_root.planetsvisited = (((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((0 + Number(_root.visit011)) + Number(_root.visit012)) + Number(_root.visit013)) + Number(_root.visit021)) + Number(_root.visit022)) + Number(_root.visit023)) + Number(_root.visit031)) + Number(_root.visit032)) + Number(_root.visit033)) + Number(_root.visit041)) + Number(_root.visit042)) + Number(_root.visit043)) + Number(_root.visit051)) + Number(_root.visit052)) + Number(_root.visit053)) + Number(_root.visit061)) + Number(_root.visit062)) + Number(_root.visit063)) + Number(_root.visit071)) + Number(_root.visit072)) + Number(_root.visit073)) + Number(_root.visit081)) + Number(_root.visit082)) + Number(_root.visit083)) + Number(_root.visit091)) + Number(_root.visit092)) + Number(_root.visit093)) + Number(_root.visit111)) + Number(_root.visit112)) + Number(_root.visit121)) + Number(_root.visit122)) + Number(_root.visit123)) + Number(_root.visit131)) + Number(_root.visit132)) + Number(_root.visit133)) + Number(_root.visit141)) + Number(_root.visit142)) + Number(_root.visit143)) + Number(_root.visit144)) + Number(_root.visit151)) + Number(_root.visit152)) + Number(_root.visit153)) + Number(_root.visit154)) + Number(_root.visit161)) + Number(_root.visit162)) + Number(_root.visit163)) + Number(_root.visit164)) + Number(_root.visit171)) + Number(_root.visit172)) + Number(_root.visit173)) + Number(_root.visit174)) + Number(_root.visit175)) + Number(_root.visit181)) + Number(_root.visit182)) + Number(_root.visit183)) + Number(_root.visit184)) + Number(_root.visit191)) + Number(_root.visit192)) + Number(_root.visit193)) + Number(_root.visit194)) + Number(_root.visit211)) + Number(_root.visit212)) + Number(_root.visit213)) + Number(_root.visit214)) + Number(_root.visit221)) + Number(_root.visit222)) + Number(_root.visit223)) + Number(_root.visit224)) + Number(_root.visit231)) + Number(_root.visit232)) + Number(_root.visit233)) + Number(_root.visit234)) + Number(_root.visit241)) + Number(_root.visit242)) + Number(_root.visit243)) + Number(_root.visit244)) + Number(_root.visit251)) + Number(_root.visit252)) + Number(_root.visit253)) + Number(_root.visit254)) + Number(_root.visit261)) + Number(_root.visit262)) + Number(_root.visit263)) + Number(_root.visit264)) + Number(_root.visit271)) + Number(_root.visit272)) + Number(_root.visit273)) + Number(_root.visit274)) + Number(_root.visit281)) + Number(_root.visit282)) + Number(_root.visit283)) + Number(_root.visit284)) + Number(_root.visit291)) + Number(_root.visit292)) + Number(_root.visit293)) + Number(_root.visit294)) + Number(_root.visit311)) + Number(_root.visit312)) + Number(_root.visit313)) + Number(_root.visit321)) + Number(_root.visit322)) + Number(_root.visit323)) + Number(_root.visit324)) + Number(_root.visit331)) + Number(_root.visit332)) + Number(_root.visit333)) + Number(_root.visit341)) + Number(_root.visit342)) + Number(_root.visit343)) + Number(_root.visit344)) + Number(_root.visit351)) + Number(_root.visit352)) + Number(_root.visit353)) + Number(_root.visit354)) + Number(_root.visit361)) + Number(_root.visit362)) + Number(_root.visit363)) + Number(_root.visit371)) + Number(_root.visit372)) + Number(_root.visit373)) + Number(_root.visit374)) + Number(_root.visit375)) + Number(_root.visit381)) + Number(_root.visit382)) + Number(_root.visit383)) + Number(_root.visit391)) + Number(_root.visit392)) + Number(_root.visit393)) + Number(_root.visit394)) + Number(_root.visit411)) + Number(_root.visit412)) + Number(_root.visit413)) + Number(_root.visit414)) + Number(_root.visit421)) + Number(_root.visit422)) + Number(_root.visit423)) + Number(_root.visit424)) + Number(_root.visit431)) + Number(_root.visit432)) + Number(_root.visit433)) + Number(_root.visit441)) + Number(_root.visit442)) + Number(_root.visit443)) + Number(_root.visit451)) + Number(_root.visit452)) + Number(_root.visit453)) + Number(_root.visit461)) + Number(_root.visit462)) + Number(_root.visit463)) + Number(_root.visit471)) + Number(_root.visit472)) + Number(_root.visit473)) + Number(_root.visit474)) + Number(_root.visit481)) + Number(_root.visit482)) + Number(_root.visit483)) + Number(_root.visit484)) + Number(_root.visit485)) + Number(_root.visit491)) + Number(_root.visit492)) + Number(_root.visit493)) + Number(_root.visit494)) + Number(_root.visit495)) + Number(_root.visit511)) + Number(_root.visit512)) + Number(_root.visit513)) + Number(_root.visit514)) + Number(_root.visit515)) + Number(_root.visit521)) + Number(_root.visit522)) + Number(_root.visit523)) + Number(_root.visit524)) + Number(_root.visit525)) + Number(_root.visit531)) + Number(_root.visit532)) + Number(_root.visit533)) + Number(_root.visit534)) + Number(_root.visit535)) + Number(_root.visit541)) + Number(_root.visit542)) + Number(_root.visit543)) + Number(_root.visit544)) + Number(_root.visit545)) + Number(_root.visit551)) + Number(_root.visit552)) + Number(_root.visit553)) + Number(_root.visit554)) + Number(_root.visit555)) + Number(_root.visit561)) + Number(_root.visit562)) + Number(_root.visit563)) + Number(_root.visit564)) + Number(_root.visit565)) + Number(_root.visit571)) + Number(_root.visit572)) + Number(_root.visit573)) + Number(_root.visit574)) + Number(_root.visit575)) + Number(_root.visit581)) + Number(_root.visit582)) + Number(_root.visit583)) + Number(_root.visit584)) + Number(_root.visit585)) + Number(_root.visit591)) + Number(_root.visit592)) + Number(_root.visit593)) + Number(_root.visit594)) + Number(_root.visit595)) + Number(_root.visit611)) + Number(_root.visit612)) + Number(_root.visit613)) + Number(_root.visit614)) + Number(_root.visit621)) + Number(_root.visit622)) + Number(_root.visit623)) + Number(_root.visit624)) + Number(_root.visit631)) + Number(_root.visit632)) + Number(_root.visit633)) + Number(_root.visit634)) + Number(_root.visit635)) + Number(_root.visit641)) + Number(_root.visit642)) + Number(_root.visit643)) + Number(_root.visit644)) + Number(_root.visit651)) + Number(_root.visit652)) + Number(_root.visit653)) + Number(_root.visit654)) + Number(_root.visit655)) + Number(_root.visit661)) + Number(_root.visit662)) + Number(_root.visit663)) + Number(_root.visit664)) + Number(_root.visit671)) + Number(_root.visit672)) + Number(_root.visit673)) + Number(_root.visit674)) + Number(_root.visit675)) + Number(_root.visit681)) + Number(_root.visit682)) + Number(_root.visit683)) + Number(_root.visit691)) + Number(_root.visit692)) + Number(_root.visit693)) + Number(_root.visit694)) + Number(_root.visit695)) + Number(_root.visit711)) + Number(_root.visit712)) + Number(_root.visit713)) + Number(_root.visit714)) + Number(_root.visit721)) + Number(_root.visit722)) + Number(_root.visit723)) + Number(_root.visit724)) + Number(_root.visit725)) + Number(_root.visit731)) + Number(_root.visit732)) + Number(_root.visit733)) + Number(_root.visit734)) + Number(_root.visit735)) + Number(_root.visit741)) + Number(_root.visit742)) + Number(_root.visit743)) + Number(_root.visit744)) + Number(_root.visit751)) + Number(_root.visit752)) + Number(_root.visit753)) + Number(_root.visit754)) + Number(_root.visit761)) + Number(_root.visit762)) + Number(_root.visit763)) + Number(_root.visit764)) + Number(_root.visit765)) + Number(_root.visit771)) + Number(_root.visit772)) + Number(_root.visit773)) + Number(_root.visit774)) + Number(_root.visit775)) + Number(_root.visit776)) + Number(_root.visit781)) + Number(_root.visit782)) + Number(_root.visit783)) + Number(_root.visit784)) + Number(_root.visit791)) + Number(_root.visit792)) + Number(_root.visit793)) + Number(_root.visit811)) + Number(_root.visit812)) + Number(_root.visit813)) + Number(_root.visit814)) + Number(_root.visit821)) + Number(_root.visit822)) + Number(_root.visit823)) + Number(_root.visit824)) + Number(_root.visit825)) + Number(_root.visit831)) + Number(_root.visit832)) + Number(_root.visit833)) + Number(_root.visit834)) + Number(_root.visit835)) + Number(_root.visit841)) + Number(_root.visit842)) + Number(_root.visit843)) + Number(_root.visit844)) + Number(_root.visit845)) + Number(_root.visit851)) + Number(_root.visit852)) + Number(_root.visit853)) + Number(_root.visit854)) + Number(_root.visit855)) + Number(_root.visit861)) + Number(_root.visit862)) + Number(_root.visit863)) + Number(_root.visit864)) + Number(_root.visit871)) + Number(_root.visit872)) + Number(_root.visit873)) + Number(_root.visit874)) + Number(_root.visit875)) + Number(_root.visit881)) + Number(_root.visit882)) + Number(_root.visit883)) + Number(_root.visit884)) + Number(_root.visit891)) + Number(_root.visit892)) + Number(_root.visit893)) + Number(_root.visit894)) + Number(_root.visit911)) + Number(_root.visit912)) + Number(_root.visit913)) + Number(_root.visit914)) + Number(_root.visit915)) + Number(_root.visit921)) + Number(_root.visit922)) + Number(_root.visit923)) + Number(_root.visit924)) + Number(_root.visit931)) + Number(_root.visit932)) + Number(_root.visit933)) + Number(_root.visit934)) + Number(_root.visit935)) + Number(_root.visit936)) + Number(_root.visit941)) + Number(_root.visit942)) + Number(_root.visit943)) + Number(_root.visit944)) + Number(_root.visit945)) + Number(_root.visit951)) + Number(_root.visit952)) + Number(_root.visit953)) + Number(_root.visit954)) + Number(_root.visit955)) + Number(_root.visit956)) + Number(_root.visit957)) + Number(_root.visit961)) + Number(_root.visit962)) + Number(_root.visit963)) + Number(_root.visit964)) + Number(_root.visit965)) + Number(_root.visit971)) + Number(_root.visit972)) + Number(_root.visit973)) + Number(_root.visit974)) + Number(_root.visit975)) + Number(_root.visit981)) + Number(_root.visit982)) + Number(_root.visit983)) + Number(_root.visit984)) + Number(_root.visit985)) + Number(_root.visit991)) + Number(_root.visit992)) + Number(_root.visit993)) + Number(_root.visit994);
_root.oldachievementcount = _root.achievementcount;
_root.achievementcount = 0;
if (_root.longestputt >= 500) {
_root.achievementcount++;
_root.tickbox1.gotoAndStop(2);
}
if (_root.longestputt >= 750) {
_root.achievementcount++;
_root.tickbox2.gotoAndStop(2);
}
if (_root.longestputt >= 1250) {
_root.achievementcount++;
_root.tickbox3.gotoAndStop(2);
}
if (_root.longestputt >= 2000) {
_root.achievementcount++;
_root.tickbox4.gotoAndStop(2);
}
if (_root.longestputt >= 3000) {
_root.achievementcount++;
_root.tickbox5.gotoAndStop(2);
}
if (_root.holeinones >= 1) {
_root.achievementcount++;
_root.tickbox6.gotoAndStop(2);
}
if (_root.holeinones >= 2) {
_root.achievementcount++;
_root.tickbox7.gotoAndStop(2);
}
if (_root.holeinones >= 3) {
_root.achievementcount++;
_root.tickbox8.gotoAndStop(2);
}
if (_root.holeinones >= 4) {
_root.achievementcount++;
_root.tickbox9.gotoAndStop(2);
}
if (_root.holeinones >= 5) {
_root.achievementcount++;
_root.tickbox10.gotoAndStop(2);
}
if (_root.planetsvisited >= 30) {
_root.achievementcount++;
_root.tickbox11.gotoAndStop(2);
}
if (_root.planetsvisited >= 75) {
_root.achievementcount++;
_root.tickbox12.gotoAndStop(2);
}
if (_root.planetsvisited >= 150) {
_root.achievementcount++;
_root.tickbox13.gotoAndStop(2);
}
if (_root.planetsvisited >= 240) {
_root.achievementcount++;
_root.tickbox14.gotoAndStop(2);
}
if (_root.planetsvisited >= 340) {
_root.achievementcount++;
_root.tickbox15.gotoAndStop(2);
}
_root.goldcount = 0;
_root.platinumcount = 0;
i = 0;
while (i < 10) {
if ((_root[("round" + (i + 1)) + "medal"] == "g") || (_root[("round" + (i + 1)) + "medal"] == "p")) {
_root.goldcount++;
}
if (_root[("round" + (i + 1)) + "medal"] == "p") {
_root.platinumcount++;
}
i++;
}
if (_root.goldcount >= 1) {
_root.achievementcount++;
_root.tickbox16.gotoAndStop(2);
}
if (_root.goldcount >= 2) {
_root.achievementcount++;
_root.tickbox17.gotoAndStop(2);
}
if (_root.goldcount >= 4) {
_root.achievementcount++;
_root.tickbox18.gotoAndStop(2);
}
if (_root.goldcount >= 7) {
_root.achievementcount++;
_root.tickbox19.gotoAndStop(2);
}
if (_root.goldcount >= 10) {
_root.achievementcount++;
_root.tickbox20.gotoAndStop(2);
}
if (_root.planetsvisited > 340) {
_root.planetsvisited = 340;
}
_root.kongregateStats.submit("PlanetsVisited", _root.planetsvisited);
_root.kongregateStats.submit("GoldMedals", _root.goldcount);
_root.kongregateStats.submit("PlatinumMedals", _root.platinumcount);
_root.unlockedbonuses = _root.achievementcount;
_root.kongregateStats.submit("TotalStrokes", _root.strokescountup);
_root.kongregateStats.submit("Achievements", _root.achievementcount);
if (_root.oldachievementcount < _root.achievementcount) {
_root.achievementdifference = _root.achievementcount - _root.oldachievementcount;
_root.achievebox.gotoAndStop(2);
}
_root.savedatavisited = ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((("" + _root.visit011) + _root.visit012) + _root.visit013) + _root.visit021) + _root.visit022) + _root.visit023) + _root.visit031) + _root.visit032) + _root.visit033) + _root.visit041) + _root.visit042) + _root.visit043) + _root.visit051) + _root.visit052) + _root.visit053) + _root.visit061) + _root.visit062) + _root.visit063) + _root.visit071) + _root.visit072) + _root.visit073) + _root.visit081) + _root.visit082) + _root.visit083) + _root.visit091) + _root.visit092) + _root.visit093) + _root.visit111) + _root.visit112) + _root.visit121) + _root.visit122) + _root.visit123) + _root.visit131) + _root.visit132) + _root.visit133) + _root.visit141) + _root.visit142) + _root.visit143) + _root.visit144) + _root.visit151) + _root.visit152) + _root.visit153) + _root.visit154) + _root.visit161) + _root.visit162) + _root.visit163) + _root.visit164) + _root.visit171) + _root.visit172) + _root.visit173) + _root.visit174) + _root.visit175) + _root.visit181) + _root.visit182) + _root.visit183) + _root.visit184) + _root.visit191) + _root.visit192) + _root.visit193) + _root.visit194) + _root.visit211) + _root.visit212) + _root.visit213) + _root.visit214) + _root.visit221) + _root.visit222) + _root.visit223) + _root.visit224) + _root.visit231) + _root.visit232) + _root.visit233) + _root.visit234) + _root.visit241) + _root.visit242) + _root.visit243) + _root.visit244) + _root.visit251) + _root.visit252) + _root.visit253) + _root.visit254) + _root.visit261) + _root.visit262) + _root.visit263) + _root.visit264) + _root.visit271) + _root.visit272) + _root.visit273) + _root.visit274) + _root.visit281) + _root.visit282) + _root.visit283) + _root.visit284) + _root.visit291) + _root.visit292) + _root.visit293) + _root.visit294) + _root.visit311) + _root.visit312) + _root.visit313) + _root.visit321) + _root.visit322) + _root.visit323) + _root.visit324) + _root.visit331) + _root.visit332) + _root.visit333) + _root.visit341) + _root.visit342) + _root.visit343) + _root.visit344) + _root.visit351) + _root.visit352) + _root.visit353) + _root.visit354) + _root.visit361) + _root.visit362) + _root.visit363) + _root.visit371) + _root.visit372) + _root.visit373) + _root.visit374) + _root.visit375) + _root.visit381) + _root.visit382) + _root.visit383) + _root.visit391) + _root.visit392) + _root.visit393) + _root.visit394) + _root.visit411) + _root.visit412) + _root.visit413) + _root.visit414) + _root.visit421) + _root.visit422) + _root.visit423) + _root.visit424) + _root.visit431) + _root.visit432) + _root.visit433) + _root.visit441) + _root.visit442) + _root.visit443) + _root.visit451) + _root.visit452) + _root.visit453) + _root.visit461) + _root.visit462) + _root.visit463) + _root.visit471) + _root.visit472) + _root.visit473) + _root.visit474) + _root.visit481) + _root.visit482) + _root.visit483) + _root.visit484) + _root.visit485) + _root.visit491) + _root.visit492) + _root.visit493) + _root.visit494) + _root.visit495) + _root.visit511) + _root.visit512) + _root.visit513) + _root.visit514) + _root.visit515) + _root.visit521) + _root.visit522) + _root.visit523) + _root.visit524) + _root.visit525) + _root.visit531) + _root.visit532) + _root.visit533) + _root.visit534) + _root.visit535) + _root.visit541) + _root.visit542) + _root.visit543) + _root.visit544) + _root.visit545) + _root.visit551) + _root.visit552) + _root.visit553) + _root.visit554) + _root.visit555) + _root.visit561) + _root.visit562) + _root.visit563) + _root.visit564) + _root.visit565) + _root.visit571) + _root.visit572) + _root.visit573) + _root.visit574) + _root.visit575) + _root.visit581) + _root.visit582) + _root.visit583) + _root.visit584) + _root.visit585) + _root.visit591) + _root.visit592) + _root.visit593) + _root.visit594) + _root.visit595) + _root.visit611) + _root.visit612) + _root.visit613) + _root.visit614) + _root.visit621) + _root.visit622) + _root.visit623) + _root.visit624) + _root.visit631) + _root.visit632) + _root.visit633) + _root.visit634) + _root.visit635) + _root.visit641) + _root.visit642) + _root.visit643) + _root.visit644) + _root.visit651) + _root.visit652) + _root.visit653) + _root.visit654) + _root.visit655) + _root.visit661) + _root.visit662) + _root.visit663) + _root.visit664) + _root.visit671) + _root.visit672) + _root.visit673) + _root.visit674) + _root.visit675) + _root.visit681) + _root.visit682) + _root.visit683) + _root.visit691) + _root.visit692) + _root.visit693) + _root.visit694) + _root.visit695) + _root.visit711) + _root.visit712) + _root.visit713) + _root.visit714) + _root.visit721) + _root.visit722) + _root.visit723) + _root.visit724) + _root.visit725) + _root.visit731) + _root.visit732) + _root.visit733) + _root.visit734) + _root.visit735) + _root.visit741) + _root.visit742) + _root.visit743) + _root.visit744) + _root.visit751) + _root.visit752) + _root.visit753) + _root.visit754) + _root.visit761) + _root.visit762) + _root.visit763) + _root.visit764) + _root.visit765) + _root.visit771) + _root.visit772) + _root.visit773) + _root.visit774) + _root.visit775) + _root.visit776) + _root.visit781) + _root.visit782) + _root.visit783) + _root.visit784) + _root.visit791) + _root.visit792) + _root.visit793) + _root.visit811) + _root.visit812) + _root.visit813) + _root.visit814) + _root.visit821) + _root.visit822) + _root.visit823) + _root.visit824) + _root.visit825) + _root.visit831) + _root.visit832) + _root.visit833) + _root.visit834) + _root.visit835) + _root.visit841) + _root.visit842) + _root.visit843) + _root.visit844) + _root.visit845) + _root.visit851) + _root.visit852) + _root.visit853) + _root.visit854) + _root.visit855) + _root.visit861) + _root.visit862) + _root.visit863) + _root.visit864) + _root.visit871) + _root.visit872) + _root.visit873) + _root.visit874) + _root.visit875) + _root.visit881) + _root.visit882) + _root.visit883) + _root.visit884) + _root.visit891) + _root.visit892) + _root.visit893) + _root.visit894) + _root.visit911) + _root.visit912) + _root.visit913) + _root.visit914) + _root.visit915) + _root.visit921) + _root.visit922) + _root.visit923) + _root.visit924) + _root.visit931) + _root.visit932) + _root.visit933) + _root.visit934) + _root.visit935) + _root.visit936) + _root.visit941) + _root.visit942) + _root.visit943) + _root.visit944) + _root.visit945) + _root.visit951) + _root.visit952) + _root.visit953) + _root.visit954) + _root.visit955) + _root.visit956) + _root.visit957) + _root.visit961) + _root.visit962) + _root.visit963) + _root.visit964) + _root.visit965) + _root.visit971) + _root.visit972) + _root.visit973) + _root.visit974) + _root.visit975) + _root.visit981) + _root.visit982) + _root.visit983) + _root.visit984) + _root.visit985) + _root.visit991) + _root.visit992) + _root.visit993) + _root.visit994;
gravitee_local_data = SharedObject.getLocal("gravitee_data");
gravitee_local_data.data.planetsvisited = _root.savedatavisited;
gravitee_local_data.data.planetsvisitcount = _root.planetsvisited;
gravitee_local_data.data.longestputt = _root.longestputt;
gravitee_local_data.data.holeinones = _root.holeinones;
gravitee_local_data.data.unlockedbonuses = _root.unlockedbonuses;
gravitee_local_data.data.unlocked = _root.unlocked;
gravitee_local_data.data.achievementcount = _root.achievementcount;
gravitee_local_data.data.tutorial = 1;
gravitee_local_data.data.suntutorial = _root.donesuntutorial;
gravitee_local_data.data.round1medal = _root.round1medal;
gravitee_local_data.data.round2medal = _root.round2medal;
gravitee_local_data.data.round3medal = _root.round3medal;
gravitee_local_data.data.round4medal = _root.round4medal;
gravitee_local_data.data.round5medal = _root.round5medal;
gravitee_local_data.data.round6medal = _root.round6medal;
gravitee_local_data.data.round7medal = _root.round7medal;
gravitee_local_data.data.round8medal = _root.round8medal;
gravitee_local_data.data.round9medal = _root.round9medal;
gravitee_local_data.data.round10medal = _root.round10medal;
gravitee_local_data.flush();
stop();
Symbol 10 MovieClip [directionarrow] Frame 1
stop();
Symbol 10 MovieClip [directionarrow] Frame 2
stop();
Symbol 12 MovieClip [bouncearrow] Frame 1
stop();
Symbol 12 MovieClip [bouncearrow] Frame 2
stop();
Symbol 14 MovieClip [tangent] Frame 1
stop();
Symbol 14 MovieClip [tangent] Frame 2
stop();
Symbol 16 MovieClip [reboundarrow] Frame 1
stop();
Symbol 16 MovieClip [reboundarrow] Frame 2
stop();
Symbol 18 Button
on (press) {
if (_root.dograv == 0) {
_root.dragging = 1;
}
_root.ballshow.removeMovieClip();
_root.targetshow.removeMovieClip();
}
on (release, releaseOutside) {
_root.plremove = -1;
_root.output2 = "";
_root.quitbutton.gotoAndStop(2);
_root.maininitialspeed = 0;
_root.mouseshotx = Math.round(_root._xmouse);
_root.mouseshoty = Math.round(_root._ymouse);
if (_root.b1on == 1) {
i = 0;
while (i < 400) {
_root["line" + i].removeMovieClip();
i++;
}
}
_root.distancetravelled = 0;
_root.trailcount = 0;
if (_root.dragging == 1) {
_root.startx = _root.ball._x;
_root.starty = _root.ball._y;
stopDrag();
_root.xspeed = (_root.drivearrow._x - _root.ball._x) / 6;
_root.yspeed = (_root.drivearrow._y - _root.ball._y) / 6;
_root.dograv = 1;
_root.dragging = 0;
_root.shotstaken++;
_root.shotx = _root.drivearrow._x;
_root.shoty = _root.drivearrow._y;
_root.drivearrow._x = -1000;
}
stopAllSounds();
if (_root.soundmuted != 1) {
_root.sfxstrike.start();
}
_root.strokescountup++;
}
Symbol 27 MovieClip [messages] Frame 1
stop();
Symbol 27 MovieClip [messages] Frame 43
stop();
Symbol 59 Button
on (release) {
i = 0;
while (i < _root.planetcount) {
_root["planet" + (i + 1)].removeMovieClip();
i++;
}
_root.distancetravelled = 0;
_root.distancetravelledtext = Math.round(_root.distancetravelled) + " km";
_root.oobtr._x = -1000;
_root.oobt._x = -1000;
_root.oobtl._x = -1000;
_root.oobl._x = -1000;
_root.oobbl._x = -1000;
_root.oobb._x = -1000;
_root.oobbr._x = -1000;
_root.oobr._x = -1000;
if (_root.currenthole < 10) {
_root.gotoAndPlay("gamestart");
}
}
Symbol 63 Button
on (release) {
_root.tangent.removeMovieClip();
_root.bouncearrow.removeMovieClip();
_root.directionarrow.removeMovieClip();
_root.reboundarrow.removeMovieClip();
_root.distancetravelled = 0;
_root.distancetravelledtext = Math.round(_root.distancetravelled) + " km";
i = 0;
while (i < _root.planetcount) {
_root["planet" + (i + 1)].removeMovieClip();
i++;
}
_root.holeinonespot._x = -100;
_root.ball._x = -100;
_root.trail1._x = -100;
_root.trail2._x = -100;
_root.trail3._x = -100;
_root.trail4._x = -100;
_root.oobtl._x = -100;
_root.oobt._x = -100;
_root.oobtr._x = -100;
_root.oobl._x = -100;
_root.oobr._x = -100;
_root.oobbl._x = -100;
_root.oobb._x = -100;
_root.oobbr._x = -100;
if (_root.currentround == _root.unlocked) {
_root.unlocked++;
}
_root.gate1._x = -1000;
_root.gate2._x = -1000;
_root.previousmedal = _root[("round" + _root.currentround) + "medal"];
if (((((((((((_root.finaloverlayused == 0) && (_root.previewon == 0)) && (_root.hole1score <= 4)) && (_root.hole2score <= 4)) && (_root.hole3score <= 4)) && (_root.hole4score <= 4)) && (_root.hole5score <= 4)) && (_root.hole6score <= 4)) && (_root.hole7score <= 4)) && (_root.hole8score <= 4)) && (_root.hole9score <= 4)) {
_root.medalearned = "p";
} else if (((((((((_root.hole1score <= 4) && (_root.hole2score <= 4)) && (_root.hole3score <= 4)) && (_root.hole4score <= 4)) && (_root.hole5score <= 4)) && (_root.hole6score <= 4)) && (_root.hole7score <= 4)) && (_root.hole8score <= 4)) && (_root.hole9score <= 4)) {
_root.medalearned = "g";
} else if (_root.totalscore <= 36) {
_root.medalearned = "s";
} else {
_root.medalearned = "b";
}
if (_root[("round" + _root.currentround) + "medal"] == "") {
_root[("round" + _root.currentround) + "medal"] = _root.medalearned;
} else if ((_root[("round" + _root.currentround) + "medal"] == "b") && (((_root.medalearned == "s") || (_root.medalearned == "g")) || (_root.medalearned == "p"))) {
_root[("round" + _root.currentround) + "medal"] = _root.medalearned;
} else if ((_root[("round" + _root.currentround) + "medal"] == "s") && ((_root.medalearned == "g") || (_root.medalearned == "p"))) {
_root[("round" + _root.currentround) + "medal"] = _root.medalearned;
} else if ((_root[("round" + _root.currentround) + "medal"] == "g") && (_root.medalearned == "p")) {
_root[("round" + _root.currentround) + "medal"] = _root.medalearned;
}
_root.gotoAndPlay("gameresults");
_root.theresult.gotoAndStop(1);
}
Symbol 64 MovieClip Frame 1
stop();
Symbol 64 MovieClip Frame 2
stop();
Symbol 71 Button
on (release) {
_root.attachMovie("quitroundbox", "quitroundbox", 21404);
_root.quitroundbox._x = 0;
_root.quitroundbox._y = 0;
}
Symbol 72 MovieClip Frame 1
stop();
Symbol 72 MovieClip Frame 2
stop();
Symbol 73 MovieClip [result] Frame 1
stop();
Symbol 73 MovieClip [result] Frame 43
_root.currenthole++;
if (_root.b1on == 1) {
i = 0;
while (i < 400) {
_root["line" + i].removeMovieClip();
i++;
}
}
_root.totalscore = (((((((_root.hole1score + _root.hole2score) + _root.hole3score) + _root.hole4score) + _root.hole5score) + _root.hole6score) + _root.hole7score) + _root.hole8score) + _root.hole9score;
if (_root.currenthole == 10) {
nextholebutton.gotoAndStop(2);
quitroundbutton.gotoAndStop(2);
}
if (_root.donetutorial != 1) {
_root.tutorial3.gotoAndStop(2);
}
stop();
Symbol 118 Button
on (release) {
_root.donesuntutorial = 1;
_root.tutorial4.removeMovieClip();
}
Symbol 124 MovieClip [tutorialbox4] Frame 1
stop();
Symbol 124 MovieClip [tutorialbox4] Frame 2
stop();
Symbol 124 MovieClip [tutorialbox4] Frame 3
stop();
Symbol 128 Button
on (release) {
_root.tutorial3.removeMovieClip();
}
Symbol 141 MovieClip [tutorialbox3] Frame 1
stop();
Symbol 141 MovieClip [tutorialbox3] Frame 2
stop();
Symbol 141 MovieClip [tutorialbox3] Frame 3
stop();
Symbol 145 Button
on (release) {
_root.tutorial2.removeMovieClip();
}
Symbol 146 MovieClip [tutorialbox2] Frame 1
stop();
Symbol 146 MovieClip [tutorialbox2] Frame 2
stop();
Symbol 146 MovieClip [tutorialbox2] Frame 3
stop();
Symbol 153 Button
on (release) {
_root.tangent.removeMovieClip();
_root.bouncearrow.removeMovieClip();
_root.directionarrow.removeMovieClip();
_root.reboundarrow.removeMovieClip();
_root.distancetravelled = 0;
_root.distancetravelledtext = Math.round(_root.distancetravelled) + " km";
i = 0;
while (i < _root.planetcount) {
_root["planet" + (i + 1)].removeMovieClip();
i++;
}
_root.holeinonespot._x = -100;
_root.ball._x = -100;
_root.trail1._x = -100;
_root.trail2._x = -100;
_root.trail3._x = -100;
_root.trail4._x = -100;
_root.oobtl._x = -100;
_root.oobt._x = -100;
_root.oobtr._x = -100;
_root.oobl._x = -100;
_root.oobr._x = -100;
_root.oobbl._x = -100;
_root.oobb._x = -100;
_root.oobbr._x = -100;
_root.gate1._x = -1000;
_root.gate2._x = -1000;
_root.gotoAndPlay("selectlevel");
_root.theresult.gotoAndStop(1);
_root.quitroundbox.removeMovieClip();
}
Symbol 157 Button
on (release) {
_root.quitroundbox.removeMovieClip();
}
Symbol 158 MovieClip [quitroundbox] Frame 1
stop();
Symbol 161 Button
on (release) {
_root.shotstaken = 12;
_root.resultstext = "Hole Aborted!";
_root[("hole" + _root.currenthole) + "score"] = _root.shotstaken;
_root.theresult.gotoAndPlay(2);
l1p1x = _root.ball.oldx;
l1p1y = _root.ball.oldy;
l1p2x = _root.ball._x;
l1p2y = _root.ball._y;
_root.quitholebox.removeMovieClip();
}
Symbol 162 Button
on (release) {
_root.quitholebox.removeMovieClip();
}
Symbol 163 MovieClip [quitholebox] Frame 1
stop();
Symbol 167 Button
on (release) {
_root.tutorial.gotoAndStop(3);
}
Symbol 172 Button
on (release) {
_root.tutorial.gotoAndStop(4);
}
Symbol 175 Button
on (release) {
_root.tutorial.gotoAndStop(5);
}
Symbol 232 Button
on (release) {
_root.tutorial.gotoAndStop(6);
}
Symbol 235 Button
on (release) {
_root.tutorial.gotoAndStop(7);
}
Symbol 236 MovieClip [tutorialbox] Frame 1
Symbol 236 MovieClip [tutorialbox] Frame 2
stop();
Symbol 236 MovieClip [tutorialbox] Frame 3
stop();
Symbol 236 MovieClip [tutorialbox] Frame 4
stop();
Symbol 236 MovieClip [tutorialbox] Frame 5
stop();
Symbol 236 MovieClip [tutorialbox] Frame 6
stop();
Symbol 236 MovieClip [tutorialbox] Frame 7
stop();
Symbol 242 Button
on (release) {
_root.holeballneeded.gotoAndStop(1);
}
Symbol 243 MovieClip [boxneedgateball] Frame 1
stop();
Symbol 243 MovieClip [boxneedgateball] Frame 2
stop();
Symbol 248 MovieClip Frame 1
stop();
Symbol 248 MovieClip Frame 2
stop();
Symbol 252 MovieClip Frame 1
stop();
Symbol 252 MovieClip Frame 2
stop();
Symbol 252 MovieClip Frame 3
stop();
Symbol 254 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 257 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 260 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 263 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 266 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 269 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 272 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 275 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 278 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 281 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 284 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 287 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 290 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 293 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 296 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 299 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 302 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 305 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 308 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 311 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 314 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 317 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 320 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 323 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 326 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 329 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 332 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 335 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 338 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 341 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 344 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 347 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 350 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 353 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 356 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 359 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 362 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 365 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 368 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 371 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 374 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 377 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 380 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 383 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 386 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 389 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 392 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 395 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 398 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 401 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 406 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 409 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 412 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 415 Button
on (press) {
_root.totalplanetcount++;
_root.planetsarrayid[_root.totalplanetcount] = _root.currentplanet;
_root.planetsarrayx[_root.totalplanetcount] = 0;
_root.planetsarrayy[_root.totalplanetcount] = 0;
_root.attachMovie(("Planet" + _root.currentplanet) + "Dragable", "planet" + _root.totalplanetcount, 400 + _root.totalplanetcount);
_root["planet" + _root.totalplanetcount]._x = Math.round(_root._xmouse);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root._ymouse);
startDrag (_root["planet" + _root.totalplanetcount], true, 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 50 + (_root["planet" + _root.totalplanetcount]._width / 2), 650 - (_root["planet" + _root.totalplanetcount]._width / 2), 450 - (_root["planet" + _root.totalplanetcount]._width / 2));
}
on (release, releaseOutside) {
_root["planet" + _root.totalplanetcount]._x = Math.round(_root["planet" + _root.totalplanetcount]._x);
_root["planet" + _root.totalplanetcount]._y = Math.round(_root["planet" + _root.totalplanetcount]._y);
_root.planetsarrayx[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._x;
_root.planetsarrayy[_root.totalplanetcount] = _root["planet" + _root.totalplanetcount]._y;
stopDrag();
}
Symbol 416 MovieClip Frame 1
stop();
Symbol 416 MovieClip Frame 2
stop();
Symbol 416 MovieClip Frame 3
stop();
Symbol 416 MovieClip Frame 4
stop();
Symbol 416 MovieClip Frame 5
stop();
Symbol 416 MovieClip Frame 6
stop();
Symbol 416 MovieClip Frame 7
stop();
Symbol 416 MovieClip Frame 8
stop();
Symbol 416 MovieClip Frame 9
stop();
Symbol 416 MovieClip Frame 10
stop();
Symbol 416 MovieClip Frame 11
stop();
Symbol 416 MovieClip Frame 12
stop();
Symbol 416 MovieClip Frame 13
stop();
Symbol 416 MovieClip Frame 14
stop();
Symbol 416 MovieClip Frame 15
stop();
Symbol 416 MovieClip Frame 16
stop();
Symbol 416 MovieClip Frame 17
stop();
Symbol 416 MovieClip Frame 18
stop();
Symbol 416 MovieClip Frame 19
stop();
Symbol 416 MovieClip Frame 20
stop();
Symbol 416 MovieClip Frame 21
stop();
Symbol 416 MovieClip Frame 22
stop();
Symbol 416 MovieClip Frame 23
stop();
Symbol 416 MovieClip Frame 24
stop();
Symbol 416 MovieClip Frame 25
stop();
Symbol 416 MovieClip Frame 26
stop();
Symbol 416 MovieClip Frame 27
stop();
Symbol 416 MovieClip Frame 28
stop();
Symbol 416 MovieClip Frame 29
stop();
Symbol 416 MovieClip Frame 30
stop();
Symbol 416 MovieClip Frame 31
stop();
Symbol 416 MovieClip Frame 32
stop();
Symbol 416 MovieClip Frame 33
stop();
Symbol 416 MovieClip Frame 34
stop();
Symbol 416 MovieClip Frame 35
stop();
Symbol 416 MovieClip Frame 36
stop();
Symbol 416 MovieClip Frame 37
stop();
Symbol 416 MovieClip Frame 38
stop();
Symbol 416 MovieClip Frame 39
stop();
Symbol 416 MovieClip Frame 40
stop();
Symbol 416 MovieClip Frame 41
stop();
Symbol 416 MovieClip Frame 42
stop();
Symbol 416 MovieClip Frame 43
stop();
Symbol 416 MovieClip Frame 44
stop();
Symbol 416 MovieClip Frame 45
stop();
Symbol 416 MovieClip Frame 46
stop();
Symbol 416 MovieClip Frame 47
stop();
Symbol 416 MovieClip Frame 48
stop();
Symbol 416 MovieClip Frame 49
stop();
Symbol 416 MovieClip Frame 50
stop();
Symbol 416 MovieClip Frame 51
stop();
Symbol 416 MovieClip Frame 52
stop();
Symbol 416 MovieClip Frame 53
stop();
Symbol 416 MovieClip Frame 54
stop();
Symbol 431 Button
on (press) {
_root.gateicondragging = 1;
_root.attachMovie("gateonplanet", "gateicon", 24010);
_root.gateicon._x = _root._xmouse;
_root.gateicon._y = _root._ymouse;
_root.gateicon.gatearrow.actualgatearrow._y = -1000;
startDrag (_root.gateicon, true);
}
on (release, releaseOutside) {
_root.gateicondragging = 0;
_root.gatehitone = 0;
i = 1;
while (i <= _root.totalplanetcount) {
if (_root["planet" + i].hitTest(_root._xmouse, _root._ymouse) == true) {
_root.gatehitone = i;
}
i++;
}
if (_root.gatehitone == 0) {
_root.gateicon.removeMovieClip();
} else {
_root.holeplanet = _root.gatehitone;
_root.holeangle = 1;
_root.gateicon._x = _root["planet" + _root.gatehitone]._x;
_root.gateicon._y = _root["planet" + _root.gatehitone]._y;
_root.gateicon.gatearrow.actualgatearrow._y = 111 - (_root["planet" + _root.gatehitone]._width / 2);
}
stopDrag();
}
Symbol 434 Button
on (press) {
_root.ballicondragging = 1;
_root.attachMovie("ballonplanet", "ballicon", 24000);
_root.ballicon._x = _root._xmouse;
_root.ballicon._y = _root._ymouse;
_root.ballicon.ballarrow.actualballarrow._y = -1000;
startDrag (_root.ballicon, true);
}
on (release, releaseOutside) {
_root.ballicondragging = 0;
_root.hitone = 0;
i = 1;
while (i <= _root.totalplanetcount) {
if (_root["planet" + i].hitTest(_root._xmouse, _root._ymouse) == true) {
_root.hitone = i;
}
i++;
}
if (_root.hitone == 0) {
_root.ballicon.removeMovieClip();
} else {
_root.teeplanet = _root.hitone;
_root.teeangle = 1;
_root.ballicon._x = _root["planet" + _root.hitone]._x;
_root.ballicon._y = _root["planet" + _root.hitone]._y;
_root.ballicon.ballarrow.actualballarrow._y = 111 - (_root["planet" + _root.hitone]._width / 2);
}
stopDrag();
}
Symbol 437 Button
on (release) {
if ((_root.teeplanet >= 1) && (_root.holeplanet >= 1)) {
_root.leveleditorplanetsetup = Array("");
_root.teeangle = (360 - _root.teeangle) + 90;
if (_root.teeangle < 0) {
_root.teeangle = _root.teeangle + 360;
}
if (_root.teeangle < 0) {
_root.teeangle = _root.teeangle + 360;
}
if (_root.teeangle > 360) {
_root.teeangle = _root.teeangle - 360;
}
if (_root.teeangle > 360) {
_root.teeangle = _root.teeangle - 360;
}
_root.holeangle = (360 - _root.holeangle) + 90;
if (_root.holeangle < 0) {
_root.holeangle = _root.holeangle + 360;
}
if (_root.holeangle < 0) {
_root.holeangle = _root.holeangle + 360;
}
if (_root.holeangle > 360) {
_root.holeangle = _root.holeangle - 360;
}
if (_root.holeangle > 360) {
_root.holeangle = _root.holeangle - 360;
}
_root.leveleditorplanetsetup = Array(_root.teeplanet, _root.teeangle, _root.holeplanet, _root.holeangle);
_root.loopcount = "";
i = 0;
while (i < _root.totalplanetcount) {
_root.leveleditorplanetsetup.push("planet" + _root.planetsarrayid[i + 1], _root.planetsarrayx[i + 1] - (_root["planet" + [i + 1]]._width / 2), _root.planetsarrayy[i + 1] - (_root["planet" + [i + 1]]._width / 2));
i++;
}
i = 0;
while (i < _root.totalplanetcount) {
_root["planet" + (i + 1)].removeMovieClip();
i++;
}
_root.ballicon.removeMovieClip();
_root.gateicon.removeMovieClip();
_root.gotoAndPlay("leveleditorplay");
} else {
_root.holeballneeded.gotoAndStop(2);
}
}
Symbol 440 Button
on (press) {
startDrag (_root.editorpanel);
}
on (release, releaseOutside) {
stopDrag();
}
Symbol 443 Button
on (release) {
_root.currentplanet--;
if (_root.currentplanet == 0) {
_root.currentplanet = 54;
}
_root.editorpanel.planetdisplay.gotoAndStop(_root.currentplanet);
}
Symbol 446 Button
on (release) {
_root.currentplanet++;
if (_root.currentplanet == 55) {
_root.currentplanet = 1;
}
_root.editorpanel.planetdisplay.gotoAndStop(_root.currentplanet);
}
Symbol 448 MovieClip [leveleditbox] Frame 1
_root.planetdisplay.planetbutton.theplanet.massbox._alpha = 0;
Symbol 448 MovieClip [leveleditbox] Frame 3
_root.editorpanel.gotoAndPlay("levelcarryon");
Symbol 451 MovieClip [holeinonespot] Frame 1
stop();
Symbol 451 MovieClip [holeinonespot] Frame 2
stop();
Symbol 452 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 454 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 456 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
_root["planet" + _root.totalplanetcount];
50 + (_root["planet" + _root.totalplanetcount]._width / 2);
50 + (_root["planet" + _root.totalplanetcount]._width / 2);
650 - (_root["planet" + _root.totalplanetcount]._width / 2);
450 - (_root["planet" + _root.totalplanetcount]._width / 2);
}
on (release, releaseOutside) {
stopDrag();
}
Symbol 458 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 460 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 462 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 464 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 466 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 468 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 470 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 472 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 474 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 476 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 478 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 480 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 482 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 484 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 486 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 488 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 490 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 492 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 494 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 496 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 498 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 500 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 502 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 504 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 506 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 508 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 510 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 512 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 514 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 516 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 518 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 520 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 522 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 524 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 526 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 528 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 530 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 532 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 534 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 536 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 538 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 540 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 542 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 544 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 546 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 548 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 550 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 555 Button
on (press) {
_root.gatearrowdragging = 1;
}
on (release, releaseOutside) {
_root.gatearrowdragging = 0;
}
Symbol 560 Button
on (press) {
_root.gateicondragging = 1;
startDrag (this);
}
on (release, releaseOutside) {
_root.gatehitone = 0;
i = 1;
while (i <= _root.totalplanetcount) {
if (_root["planet" + i].hitTest(_root._xmouse, _root._ymouse) == true) {
_root.gatehitone = i;
}
i++;
}
_root.gateicondragging = 0;
if (_root.gatehitone == 0) {
_root.holeplanet = -1;
_root.gateicon.removeMovieClip();
} else {
_root.holeplanet = _root.gatehitone;
_root.gateicon._x = _root["planet" + _root.gatehitone]._x;
_root.gateicon._y = _root["planet" + _root.gatehitone]._y;
_root.gateicon.gatearrow.actualgatearrow._y = 111 - (_root["planet" + _root.gatehitone]._width / 2);
}
stopDrag();
}
Symbol 564 Button
on (press) {
_root.arrowdragging = 1;
}
on (release, releaseOutside) {
_root.arrowdragging = 0;
}
Symbol 569 Button
on (press) {
_root.ballicondragging = 1;
startDrag (this);
}
on (release, releaseOutside) {
_root.hitone = 0;
i = 1;
while (i <= _root.totalplanetcount) {
if (_root["planet" + i].hitTest(_root._xmouse, _root._ymouse) == true) {
_root.hitone = i;
}
i++;
}
_root.ballicondragging = 0;
if (_root.hitone == 0) {
_root.teeplanet = -1;
_root.ballicon.removeMovieClip();
} else {
_root.teeplanet = _root.hitone;
_root.ballicon._x = _root["planet" + _root.hitone]._x;
_root.ballicon._y = _root["planet" + _root.hitone]._y;
_root.ballicon.ballarrow.actualballarrow._y = 111 - (_root["planet" + _root.hitone]._width / 2);
}
stopDrag();
}
Symbol 571 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 575 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 577 Button
on (press) {
startDrag (this, false, 50 + (this._width / 2), 50 + (this._width / 2), 650 - (this._width / 2), 450 - (this._width / 2));
}
on (release, releaseOutside) {
_root.thisnameid = this._name.substr(6);
_root.planetsarrayx[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._x;
_root.planetsarrayy[int(_root.thisnameid)] = _root["planet" + _root.thisnameid]._y;
stopDrag();
}
Symbol 584 MovieClip [burnup] Frame 8
stop();
Symbol 596 Button
on (release) {
getURL ("http://kongregate.com/", "_blank");
}
Symbol 617 Button
on (release) {
getURL ("http://www.kongregate.com/?gamereferral=gravitee", "_blank");
}
Symbol 634 MovieClip Frame 1
stop();
Symbol 634 MovieClip Frame 2
stop();
Symbol 634 MovieClip Frame 3
stop();
Symbol 634 MovieClip Frame 4
stop();
Symbol 634 MovieClip Frame 5
stop();
Symbol 634 MovieClip Frame 6
stop();
Symbol 634 MovieClip Frame 7
stop();
Symbol 634 MovieClip Frame 8
stop();
Symbol 634 MovieClip Frame 9
stop();
Symbol 634 MovieClip Frame 10
stop();
Symbol 644 MovieClip Frame 7
stop();
Symbol 645 Button
on (release) {
getURL ("http://www.funkypear.com", "_blank");
}
Symbol 649 Button
on (release) {
_root.gotoAndStop("selectlevel");
}
Symbol 652 Button
on (release) {
_root.gotoAndStop("achievements");
}
Symbol 655 Button
on (release) {
getURL ("http://www.kongregate.com/?gamereferral=gravitee", "_blank");
}
Symbol 658 Button
on (release) {
_root.gotoAndStop("instructions");
}
Symbol 665 Button
on (release) {
getURL ("http://www.funkypear.com/", "_blank");
}
Symbol 668 Button
on (release) {
_root.gotoAndStop("unlockables");
}
Symbol 671 Button
on (release) {
_root.gotoAndStop("credits");
}
Symbol 673 Button
on (release) {
getURL ("http://www.kongregate.com/?gamereferral=gravitee", "_blank");
}
Symbol 687 Button
on (release) {
_root.gotoAndStop("titlescreen");
}
Symbol 690 MovieClip Frame 1
stop();
Symbol 690 MovieClip Frame 2
stop();
Symbol 690 MovieClip Frame 3
stop();
Symbol 690 MovieClip Frame 4
stop();
Symbol 690 MovieClip Frame 5
stop();
Symbol 690 MovieClip Frame 6
stop();
Symbol 695 Button
on (release) {
_root.currenthole = 1;
_root.currentround = 1;
_root.previewon = 0;
_root.finaloverlayused = 0;
_root.b4on = 0;
_root.strokescountup = 0;
_root.planetsetup1 = Array(1, 200, 2, 300, "planet1", 48, 155, "planet8", 255, 48, "planet10", 485, 283, "Red Vs. Blue");
_root.planetsetup2 = Array(1, 130, 2, 260, "planet47", 49, 49, "planet36", 538, 209, "planet32", 99, 354, "The Triangulator");
_root.planetsetup3 = Array(2, 130, 1, 260, "planet3", 49, 114, "planet5", 521, 320, "planet6", 363, 49, "Nearly Home");
_root.planetsetup4 = Array(1, 120, 2, 300, "planet25", 47, 145, "planet24", 534.95, 76, "planet26", 218, 301, "Life on Mars");
_root.planetsetup5 = Array(1, 130, 3, 300, "planet18", 51, 328, "planet22", 264, 75, "planet31", 474, 340, "Wiggle Street");
_root.planetsetup6 = Array(3, 45, 1, 45, "planet45", 49, 48, "planet39", 309, 305, "planet37", 466, 183, "Return to the Magenta Planet");
_root.planetsetup7 = Array(1, 260, 2, 215, "planet16", 256, 49, "planet22", 52, 275, "planet23", 495, 160, "Cypriot Dreams");
_root.planetsetup8 = Array(1, 45, 3, 10, "planet46", 520, 320, "planet44", 188, 51, "planet28", 52, 295, "The Dead Hole");
_root.planetsetup9 = Array(1, 160, 3, 45, "planet48", 212, 145, "planet46", 50, 168, "planet42", 478, 164, "The Counter Weight");
_root.hole1score = 0;
_root.hole2score = 0;
_root.hole3score = 0;
_root.hole4score = 0;
_root.hole5score = 0;
_root.hole6score = 0;
_root.hole7score = 0;
_root.hole8score = 0;
_root.hole9score = 0;
_root.holeinonesthisround = 0;
_root.gotoAndPlay("gamestart");
}
Symbol 696 MovieClip Frame 1
stop();
Symbol 696 MovieClip Frame 2
stop();
Symbol 701 Button
on (release) {
_root.currenthole = 1;
_root.currentround = 2;
_root.previewon = 0;
_root.finaloverlayused = 0;
_root.b4on = 0;
_root.strokescountup = 0;
_root.planetsetup1 = Array(1, 210, 2, 45, "planet14", 217, 90, "planet13", 466.95, 294, "Eye of Thundera");
_root.planetsetup2 = Array(2, 271, 1, 150, "planet50", 510.95, 309, "planet1", 86, 84, "planet47", 242, 159, "Scorpion's Revenge");
_root.planetsetup3 = Array(3, 87, 2, 300, "planet39", 465.95, 238, "planet12", 77, 285, "planet10", 259, 77, "Planet Traffic Light");
_root.planetsetup4 = Array(4, 300, 2, 46, "planet7", 487.95, 275, "planet1", 348, 178, "planet40", 130, 105, "planet18", 50, 286, "Space Jams");
_root.planetsetup5 = Array(3, 92, 1, 330, "planet46", 426.95, 98, "planet36", 240.95, 80.95, "planet35", 53, 288, "planet8", 423.9, 294.95, "Great Neptune's Trident");
_root.planetsetup6 = Array(3, 210, 2, 100, "planet45", 149, 77, "planet39", 472.95, 131, "planet12", 99, 277, "planet5", 313, 271, "The Mingford System");
_root.planetsetup7 = Array(1, 250, 2, 272, "planet47", 474.95, 60, "planet44", 131, 54, "planet24", 484.95, 251, "planet7", 65, 293, "planet49", 326, 139, "Scored Earth");
_root.planetsetup8 = Array(1, 115, 4, 45, "planet29", 94, 231, "planet7", 258, 313, "planet2", 245, 150, "planet45", 436.95, 95, "Planet Jade");
_root.planetsetup9 = Array(2, 200, 3, 50, "planet47", 67, 117, "planet37", 241, 169, "planet29", 408.95, 54, "planet21", 419.95, 346, "Evil Giraffe");
_root.hole1score = 0;
_root.hole2score = 0;
_root.hole3score = 0;
_root.hole4score = 0;
_root.hole5score = 0;
_root.hole6score = 0;
_root.hole7score = 0;
_root.hole8score = 0;
_root.hole9score = 0;
_root.holeinonesthisround = 0;
_root.gotoAndPlay("gamestart");
}
Symbol 702 MovieClip Frame 1
stop();
Symbol 702 MovieClip Frame 2
stop();
Symbol 707 Button
on (release) {
_root.currenthole = 1;
_root.currentround = 3;
_root.previewon = 0;
_root.finaloverlayused = 0;
_root.b4on = 0;
_root.strokescountup = 0;
_root.planetsetup1 = Array(1, 30, 4, 125, "planet22", 473.95, 198, "planet19", 308, 264, "planet13", 275, 97, "planet10", 50, 281, "The Wastelands");
_root.planetsetup2 = Array(3, 125, 4, 245, "planet2", 265, 154, "planet7", 411.95, 50, "planet15", 51, 292, "planet29", 523.95, 261, "Purple Haze");
_root.planetsetup3 = Array(3, 45, 1, 300, "planet48", 48, 271, "planet46", 521.95, 317, "planet44", 353.95, 210, "planet43", 168, 50, "Fake Potter");
_root.planetsetup4 = Array(1, 260, 4, 80, "planet47", 501.95, 120, "planet42", 422.95, 285, "planet35", 190, 49, "planet26", 51, 255, "Old Blue");
_root.planetsetup5 = Array(3, 300, 1, 200, "planet37", 104, 51, "planet31", 541.95, 235, "planet25", 446.95, 49, "planet3", 51, 271, "Life Support");
_root.planetsetup6 = Array(1, 250, 3, 170, "planet44", 498.95, 104, "planet28", 50, 136, "planet49", 99, 271, "planet45", 483.95, 286, "The Hermit");
_root.planetsetup7 = Array(1, 300, 4, 300, "planet48", 468.95, 49, "planet45", 352.95, 238, "planet39", 263, 49, "planet22", 52, 56, "Red Beard's Hideout");
_root.planetsetup8 = Array(1, 100, 4, 260, "planet36", 49.95, 336.95, "planet33", 173, 213, "planet32", 341, 171, "planet30", 499.95, 51, "Point to Point");
_root.planetsetup9 = Array(4, 80, 1, 280, "planet34", 49.2, 264.5, "planet12", 270.5, 51.2, "planet10", 323.6, 261.5, "planet9", 514.85, 187.35, "The Northern Quarter");
_root.hole1score = 0;
_root.hole2score = 0;
_root.hole3score = 0;
_root.hole4score = 0;
_root.hole5score = 0;
_root.hole6score = 0;
_root.hole7score = 0;
_root.hole8score = 0;
_root.hole9score = 0;
_root.holeinonesthisround = 0;
_root.gotoAndPlay("gamestart");
}
Symbol 708 MovieClip Frame 1
stop();
Symbol 708 MovieClip Frame 2
stop();
Symbol 713 Button
on (release) {
_root.currenthole = 1;
_root.currentround = 4;
_root.previewon = 0;
_root.finaloverlayused = 0;
_root.b4on = 0;
_root.strokescountup = 0;
_root.planetsetup1 = Array(1, 110, 2, 325, "planet43", 52, 52, "planet40", 341.95, 278, "planet34", 499.95, 139, "The Trinity");
_root.planetsetup2 = Array(4, 125, 2, 225, "planet49", 287, 167, "planet47", 89, 263, "planet32", 553.95, 191, "planet31", 491.95, 50, "The Whipper Snapper");
_root.planetsetup3 = Array(1, 300, 2, 170, "planet47", 500.95, 48, "planet3", 112, 272, "planet52", 244, 133, "The Lady");
_root.planetsetup4 = Array(4, 110, 2, 45, "planet48", 275, 50, "planet39", 50, 140, "planet34", 350.95, 311, "planet31", 540.95, 222, "Nat's Colony");
_root.planetsetup5 = Array(2, 30, 1, 45, "planet40", 474.95, 281, "planet36", 74.95, 62.95, "planet27", 180, 225, "planet25", 347, 127, "Willow's Paradise ");
_root.planetsetup6 = Array(3, 45, 1, 125, "planet42", 51, 284, "planet38", 509.95, 49, "planet37", 294, 150, "The Glue Factory");
_root.planetsetup7 = Array(5, 335, 1, 80, "planet2", 518.95, 323, "planet5", 187, 313, "planet6", 210, 51, "planet9", 457.95, 48, "planet11", 51, 83, "Aaron's Mine");
_root.planetsetup8 = Array(3, 325, 1, 110, "planet7", 49, 173, "planet15", 287, 48, "planet16", 500.95, 182, "Borisia");
_root.planetsetup9 = Array(4, 340, 1, 100, "planet9", 48, 315, "planet11", 531.95, 51, "planet20", 195, 46, "planet22", 370.95, 251, "The Long Way");
_root.hole1score = 0;
_root.hole2score = 0;
_root.hole3score = 0;
_root.hole4score = 0;
_root.hole5score = 0;
_root.hole6score = 0;
_root.hole7score = 0;
_root.hole8score = 0;
_root.hole9score = 0;
_root.holeinonesthisround = 0;
_root.gotoAndPlay("gamestart");
}
Symbol 714 MovieClip Frame 1
stop();
Symbol 714 MovieClip Frame 2
stop();
Symbol 719 Button
on (release) {
_root.currenthole = 1;
_root.currentround = 5;
_root.previewon = 0;
_root.finaloverlayused = 0;
_root.b4on = 0;
_root.strokescountup = 0;
_root.planetsetup1 = Array(1, 10, 3, 130, "planet47", 453.95, 300, "planet43", 351.95, 49, "planet42", 49, 172, "planet27", 298, 278, "A Warm Place");
_root.planetsetup2 = Array(3, 45, 4, 135, "planet43", 127, 106, "planet42", 485.95, 287, "planet34", 48, 309, "planet33", 392.95, 48, "Railway Street");
_root.planetsetup3 = Array(3, 340, 1, 250, "planet2", 50, 283, "planet52", 423.95, 229, "planet45", 324, 48, "Pretty in Pink");
_root.planetsetup4 = Array(3, 230, 1, 45, "planet3", 465.95, 273, "planet44", 443.95, 106, "planet1", 93, 51, "Homeward Bound");
_root.planetsetup5 = Array(2, 160, 3, 45, "planet40", 136, 49, "planet39", 103, 307, "planet37", 469.95, 90, "The Piggy Bird");
_root.planetsetup6 = Array(1, 80, 3, 280, "planet24", 494.95, 331, "planet11", 415.95, 201, "planet36", 110.95, 47.95, "Karma Chameleon");
_root.planetsetup7 = Array(3, 45, 4, 135, "planet52", 258.95, 257, "planet33", 365.95, 122, "planet22", 428.95, 270, "planet20", 98, 48, "The Bond");
_root.planetsetup8 = Array(4, 340, 5, 300, "planet5", 404.95, 313, "planet8", 128.95, 82.95, "planet9", 289, 156, "planet10", 49, 215, "planet11", 532.95, 55, "Pete's Hole");
_root.planetsetup9 = Array(2, 110, 5, 200, "planet12", 389.95, 50, "planet13", 536.95, 259, "planet14", 236, 177, "planet15", 50, 294, "planet16", 51, 49, "Flatlands");
_root.hole1score = 0;
_root.hole2score = 0;
_root.hole3score = 0;
_root.hole4score = 0;
_root.hole5score = 0;
_root.hole6score = 0;
_root.hole7score = 0;
_root.hole8score = 0;
_root.hole9score = 0;
_root.holeinonesthisround = 0;
_root.gotoAndPlay("gamestart");
}
Symbol 720 MovieClip Frame 1
stop();
Symbol 720 MovieClip Frame 2
stop();
Symbol 724 Button
on (release) {
_root.currenthole = 1;
_root.currentround = 6;
_root.previewon = 0;
_root.finaloverlayused = 0;
_root.b4on = 0;
_root.strokescountup = 0;
_root.planetsetup1 = Array(1, 325, 2, 100, "planet3", 473.95, 92, "planet4", 42, 287, "planet5", 50, 48, "planet7", 509.95, 311, "planet8", 305.95, 190.95, "Five Alive");
_root.planetsetup2 = Array(5, 20, 3, 110, "planet52", 412.95, 330, "planet7", 306, 177, "planet10", 51, 149, "planet13", 421.95, 57, "planet17", 490.95, 178, "Grant's Tomb");
_root.planetsetup3 = Array(1, 100, 2, 280, "planet15", 500.95, 295, "planet16", 43, 51, "planet18", 298, 195, "planet19", 313, 351, "planet21", 299, 49, "The Barrier");
_root.planetsetup4 = Array(2, 290, 1, 225, "planet20", 486.95, 50, "planet22", 150, 273, "planet23", 492.95, 293, "planet26", 276, 88, "planet34", 52, 118, "The Land Before Time");
_root.planetsetup5 = Array(1, 290, 2, 45, "planet44", 515.95, 313, "planet39", 49, 71, "planet36", 526.9, 138.95, "planet34", 53, 309, "planet30", 337.95, 50, "Fool's Gold");
_root.planetsetup6 = Array(5, 220, 1, 45, "planet19", 523.95, 339, "planet53", 132, 300, "planet35", 460.95, 53, "planet36", 80.95, 132.95, "planet40", 280, 169, "The French Fork");
_root.planetsetup7 = Array(1, 325, 2, 120, "planet50", 551.6, 196.65, "planet48", 47.35, 151.65, "planet47", 442.4, 48.35, "planet38", 312.05, 168.65, "planet31", 215.75, 338.05, "The Cowboy");
_root.planetsetup8 = Array(4, 195, 1, 200, "planet5", 519.95, 316, "planet8", 179.95, 218.95, "planet10", 483.95, 49, "planet24", 100, 50, "planet28", 316, 288, "The Land Baron");
_root.planetsetup9 = Array(4, 115, 2, 80, "planet53", 519.95, 49, "planet41", 52, 220, "planet39", 206, 307, "planet26", 301, 84, "planet23", 414.95, 239, "Kidney Stones");
_root.hole1score = 0;
_root.hole2score = 0;
_root.hole3score = 0;
_root.hole4score = 0;
_root.hole5score = 0;
_root.hole6score = 0;
_root.hole7score = 0;
_root.hole8score = 0;
_root.hole9score = 0;
_root.holeinonesthisround = 0;
_root.gotoAndPlay("gamestart");
}
Symbol 725 MovieClip Frame 1
stop();
Symbol 725 MovieClip Frame 2
stop();
Symbol 729 Button
on (release) {
_root.currenthole = 1;
_root.currentround = 7;
_root.previewon = 0;
_root.finaloverlayused = 0;
_root.b4on = 0;
_root.strokescountup = 0;
_root.planetsetup1 = Array(1, 70, 4, 200, "planet5", 53, 74, "planet9", 266, 93, "planet14", 442.95, 131, "planet16", 307, 288, "Big G's Flames");
_root.planetsetup2 = Array(1, 135, 3, 120, "planet48", 177, 270, "planet46", 74, 77, "planet44", 516.95, 317, "planet33", 303, 64, "Pastals");
_root.planetsetup3 = Array(5, 45, 3, 80, "planet52", 549.95, 229, "planet1", 327, 68, "planet48", 49, 79, "planet47", 463.95, 52, "planet45", 326, 279, "Paradise City");
_root.planetsetup4 = Array(1, 45, 4, 325, "planet10", 50, 63, "planet11", 320, 332, "planet13", 385.95, 49, "planet18", 483.95, 215, "Unchartered");
_root.planetsetup5 = Array(1, 225, 2, 110, "planet22", 260, 190, "planet24", 534.95, 266, "planet25", 319, 57, "planet53", 50, 236, "planet27", 179, 109, "Clean Shirt");
_root.planetsetup6 = Array(1, 125, 2, 110, "planet16", 483.95, 64, "planet17", 60, 285, "planet20", 224, 88, "planet52", 267, 299, "New Kent");
_root.planetsetup7 = Array(5, 110, 3, 225, "planet52", 73, 312, "planet43", 50, 51, "planet42", 482.95, 256, "planet41", 433.95, 107, "planet36", 229.95, 150.95, "The Tap");
_root.planetsetup8 = Array(3, 45, 1, 80, "planet9", 463.95, 149, "planet12", 286, 141, "planet19", 53, 348, "The Cranbrookian");
_root.planetsetup9 = Array(1, 100, 2, 340, "planet46", 280, 212, "planet45", 48, 283, "planet37", 469.95, 274, "planet35", 122, 50, "planet34", 430.95, 51, "Downloaded");
_root.hole1score = 0;
_root.hole2score = 0;
_root.hole3score = 0;
_root.hole4score = 0;
_root.hole5score = 0;
_root.hole6score = 0;
_root.hole7score = 0;
_root.hole8score = 0;
_root.hole9score = 0;
_root.holeinonesthisround = 0;
_root.gotoAndPlay("gamestart");
}
Symbol 730 MovieClip Frame 1
stop();
Symbol 730 MovieClip Frame 2
stop();
Symbol 735 Button
on (release) {
_root.currenthole = 1;
_root.currentround = 8;
_root.previewon = 0;
_root.finaloverlayused = 0;
_root.b4on = 0;
_root.strokescountup = 0;
_root.planetsetup1 = Array(4, 300, 1, 250, "planet5", 51, 275, "planet54", 271, 135, "planet8", 556.9, 89.95, "planet10", 479.95, 208, "The Hanger System");
_root.planetsetup2 = Array(1, 310, 4, 60, "planet2", 47, 224, "planet52", 149, 49, "planet15", 331, 294, "planet16", 498.95, 227, "planet18", 429.95, 37, "The Playground");
_root.planetsetup3 = Array(2, 300, 1, 150, "planet3", 472.95, 49, "planet20", 50, 283, "planet52", 257, 111, "planet24", 411.95, 255, "planet25", 263, 271, "The Crossroad");
_root.planetsetup4 = Array(1, 320, 2, 60, "planet49", 308, 206, "planet48", 49, 49, "planet43", 498.95, 297, "planet42", 486.95, 89, "Child's Mine");
_root.planetsetup5 = Array(1, 170, 3, 70, "planet9", 88, 136, "planet52", 321, 310, "planet13", 534.95, 244, "planet27", 435.95, 48, "The Freakshow");
_root.planetsetup6 = Array(1, 170, 2, 250, "planet50", 115, 307, "planet14", 491.95, 253, "planet28", 315, 264, "planet29", 182, 145, "planet31", 363.95, 120, "Hellbound");
_root.planetsetup7 = Array(6, 210, 3, 135, "planet45", 47, 184, "planet51", 231, 316, "planet39", 156, 47, "planet37", 469.95, 79, "planet32", 348, 201, "planet30", 498.95, 300, "Barker's Moons");
_root.planetsetup8 = Array(4, 110, 1, 160, "planet1", 145, 354, "planet5", 73, 124, "planet10", 319, 48, "planet12", 506.95, 185, "Cheater's Church");
_root.planetsetup9 = Array(1, 120, 3, 325, "planet2", 182, 278, "planet53", 46, 93, "planet16", 482.95, 288, "Holy Diver");
_root.hole1score = 0;
_root.hole2score = 0;
_root.hole3score = 0;
_root.hole4score = 0;
_root.hole5score = 0;
_root.hole6score = 0;
_root.hole7score = 0;
_root.hole8score = 0;
_root.hole9score = 0;
_root.holeinonesthisround = 0;
_root.gotoAndPlay("gamestart");
}
Symbol 736 MovieClip Frame 1
stop();
Symbol 736 MovieClip Frame 2
stop();
Symbol 740 Button
on (release) {
_root.currenthole = 1;
_root.currentround = 9;
_root.previewon = 0;
_root.finaloverlayused = 0;
_root.b4on = 0;
_root.strokescountup = 0;
_root.planetsetup1 = Array(1, 160, 4, 100, "planet47", 500.95, 237, "planet53", 266, 294, "planet42", 327.95, 51, "planet39", 48, 311, "Silvered Path");
_root.planetsetup2 = Array(5, 160, 4, 45, "planet51", 353.95, 288, "planet37", 332.95, 47, "planet36", 164.95, 273.95, "planet33", 49, 122, "planet32", 552.95, 239, "Mouse's Den");
_root.planetsetup3 = Array(5, 135, 4, 250, "planet52", 327, 85, "planet3", 258, 271, "planet8", 460.9, 212.95, "planet10", 47, 107, "planet13", 524.95, 52, "Mungor's Resting Place");
_root.planetsetup4 = Array(1, 45, 4, 45, "planet5", 82, 287, "planet6", 49, 154, "planet8", 291.95, 358.95, "planet9", 313, 57, "planet16", 498.95, 157, "Robobear's Retreat");
_root.planetsetup5 = Array(3, 160, 2, 210, "planet51", 229, 305, "planet14", 48, 110, "planet18", 527.95, 54, "planet19", 384.95, 214, "planet21", 432.95, 344, "Street Sweeper");
_root.planetsetup6 = Array(3, 60, 4, 120, "planet20", 277, 282, "planet52", 268, 59, "planet25", 561.95, 200, "planet27", 54, 202, "Shaun's System");
_root.planetsetup7 = Array(1, 120, 3, 60, "planet23", 54, 295, "planet52", 310, 238, "planet26", 500.95, 272, "planet28", 124, 94, "planet29", 360.95, 50, "Graped");
_root.planetsetup8 = Array(2, 320, 3, 225, "planet53", 222, 292, "planet31", 52, 50, "planet34", 504.95, 49, "planet38", 290, 50, "Holezor");
_root.planetsetup9 = Array(4, 120, 1, 20, "planet48", 413.95, 267, "planet53", 425.95, 74, "planet36", 50.95, 202.95, "planet34", 205, 121, "Scrubton");
_root.hole1score = 0;
_root.hole2score = 0;
_root.hole3score = 0;
_root.hole4score = 0;
_root.hole5score = 0;
_root.hole6score = 0;
_root.hole7score = 0;
_root.hole8score = 0;
_root.hole9score = 0;
_root.holeinonesthisround = 0;
_root.gotoAndPlay("gamestart");
}
Symbol 741 MovieClip Frame 1
stop();
Symbol 741 MovieClip Frame 2
stop();
Symbol 746 Button
on (release) {
_root.currenthole = 1;
_root.currentround = 10;
_root.previewon = 0;
_root.finaloverlayused = 0;
_root.b4on = 0;
_root.strokescountup = 0;
_root.planetsetup1 = Array(4, 340, 1, 300, "planet39", 360.35, 285.6, "planet34", 171.75, 308.25, "planet24", 487.15, 149.05, "planet22", 104.9, 63.7, "planet51", 386.5, 56, "Lerrin's Pea");
_root.planetsetup2 = Array(4, 320, 2, 125, "planet51", 470.95, 240, "planet4", 49, 285, "planet5", 300, 63, "planet10", 483.95, 48, "Hell's Kitchen");
_root.planetsetup3 = Array(6, 325, 5, 260, "planet50", 140, 50, "planet44", 376.95, 317, "planet51", 542.95, 263, "planet53", 460.9, 111.95, "planet32", 302, 49, "planet30", 50, 301, "Cat o' Six Tails");
_root.planetsetup4 = Array(5, 325, 1, 140, "planet2", 50, 329, "planet52", 510, 309, "planet8", 195.95, 140.95, "planet12", 382.95, 168, "planet13", 536.95, 49, "The Med Way");
_root.planetsetup5 = Array(3, 110, 5, 105, "planet49", 527.95, 357, "planet51", 95, 153, "planet32", 550.95, 142, "planet31", 378.95, 51, "planet28", 50, 353, "planet25", 353, 340, "planet21", 252, 180, "Lucky Number Seven");
_root.planetsetup6 = Array(3, 135, 5, 200, "planet54", 124, 52, "planet1", 450.95, 121, "planet6", 471.95, 369, "planet8", 358.95, 249.95, "planet12", 109, 303, "The Tin");
_root.planetsetup7 = Array(1, 45, 5, 100, "planet15", 271, 226, "planet51", 465.95, 336, "planet30", 501.95, 158, "planet33", 359.95, 50, "planet44", 49, 316, "Trapped");
_root.planetsetup8 = Array(1, 300, 2, 120, "planet3", 472.95, 47, "planet4", 56, 183, "planet52", 224.95, 65.95, "planet6", 365, 171, "planet21", 425.95, 291, "Peg Leg's Last Stand");
_root.planetsetup9 = Array(4, 300, 1, 250, "planet5", 51, 275, "planet7", 271, 135, "planet53", 456.9, 60, "planet10", 479.95, 238, "The Beholder");
_root.hole1score = 0;
_root.hole2score = 0;
_root.hole3score = 0;
_root.hole4score = 0;
_root.hole5score = 0;
_root.hole6score = 0;
_root.hole7score = 0;
_root.hole8score = 0;
_root.hole9score = 0;
_root.holeinonesthisround = 0;
_root.gotoAndPlay("gamestart");
}
Symbol 747 MovieClip Frame 1
stop();
Symbol 747 MovieClip Frame 2
stop();
Symbol 759 MovieClip Frame 1
stop();
Symbol 759 MovieClip Frame 2
stop();
Symbol 789 Button
on (release) {
getURL ("http://www.kongregate.com/?gamereferral=gravitee", "_blank");
}
Symbol 793 Button
on (release) {
getURL ("http://www.funkypear.com", "_blank");
}
Symbol 805 Button
on (release) {
_root.gotoAndStop("instructions2");
}
Symbol 811 Button
on (release) {
_root.gotoAndStop("instructions3");
}
Symbol 815 Button
on (release) {
_root.gotoAndStop("instructions");
}
Symbol 822 Button
on (release) {
_root.gotoAndStop("instructions4");
}
Symbol 823 Button
on (release) {
_root.gotoAndStop("instructions2");
}
Symbol 830 Button
on (release) {
_root.gotoAndStop("instructions5");
}
Symbol 831 Button
on (release) {
_root.gotoAndStop("instructions3");
}
Symbol 840 Button
on (release) {
_root.gotoAndStop("instructions6");
}
Symbol 841 Button
on (release) {
_root.gotoAndStop("instructions4");
}
Symbol 844 Button
on (release) {
_root.gotoAndStop("instructions5");
}
Symbol 852 Button
on (release) {
_root.unlockpanel.gotoAndStop(2);
}
Symbol 856 MovieClip Frame 1
stop();
Symbol 856 MovieClip Frame 2
stop();
Symbol 861 Button
on (release) {
_root.unlockpanel.gotoAndStop(6);
}
Symbol 863 MovieClip Frame 1
stop();
Symbol 863 MovieClip Frame 2
stop();
Symbol 868 Button
on (release) {
_root.unlockpanel.gotoAndStop(7);
}
Symbol 870 MovieClip Frame 1
stop();
Symbol 870 MovieClip Frame 2
stop();
Symbol 875 Button
on (release) {
_root.unlockpanel.gotoAndStop(8);
}
Symbol 877 MovieClip Frame 1
stop();
Symbol 877 MovieClip Frame 2
stop();
Symbol 882 Button
on (release) {
_root.unlockpanel.gotoAndStop(9);
}
Symbol 884 MovieClip Frame 1
stop();
Symbol 884 MovieClip Frame 2
stop();
Symbol 887 Button
on (release) {
_root.unlockpanel.gotoAndStop(10);
}
Symbol 889 MovieClip Frame 1
stop();
Symbol 889 MovieClip Frame 2
stop();
Symbol 892 Button
on (release) {
_root.unlockpanel.gotoAndStop(11);
}
Symbol 894 MovieClip Frame 1
stop();
Symbol 894 MovieClip Frame 2
stop();
Symbol 899 Button
on (release) {
_root.unlockpanel.gotoAndStop(12);
}
Symbol 901 MovieClip Frame 1
stop();
Symbol 901 MovieClip Frame 2
stop();
Symbol 904 Button
on (release) {
_root.unlockpanel.gotoAndStop(13);
}
Symbol 906 MovieClip Frame 1
stop();
Symbol 906 MovieClip Frame 2
stop();
Symbol 911 Button
on (release) {
_root.unlockpanel.gotoAndStop(14);
}
Symbol 913 MovieClip Frame 1
stop();
Symbol 913 MovieClip Frame 2
stop();
Symbol 916 Button
on (release) {
_root.unlockpanel.gotoAndStop(15);
}
Symbol 918 MovieClip Frame 1
stop();
Symbol 918 MovieClip Frame 2
stop();
Symbol 921 Button
on (release) {
_root.unlockpanel.gotoAndStop(16);
}
Symbol 923 MovieClip Frame 1
stop();
Symbol 923 MovieClip Frame 2
stop();
Symbol 926 Button
on (release) {
_root.unlockpanel.gotoAndStop(17);
}
Symbol 928 MovieClip Frame 1
stop();
Symbol 928 MovieClip Frame 2
stop();
Symbol 933 Button
on (release) {
_root.unlockpanel.gotoAndStop(18);
}
Symbol 935 MovieClip Frame 1
stop();
Symbol 935 MovieClip Frame 2
stop();
Symbol 938 Button
on (release) {
_root.unlockpanel.gotoAndStop(19);
}
Symbol 940 MovieClip Frame 1
stop();
Symbol 940 MovieClip Frame 2
stop();
Symbol 943 Button
on (release) {
_root.unlockpanel.gotoAndStop(20);
}
Symbol 945 MovieClip Frame 1
stop();
Symbol 945 MovieClip Frame 2
stop();
Symbol 948 Button
on (release) {
_root.unlockpanel.gotoAndStop(21);
}
Symbol 950 MovieClip Frame 1
stop();
Symbol 950 MovieClip Frame 2
stop();
Symbol 953 Button
on (release) {
_root.unlockpanel.gotoAndStop(3);
}
Symbol 955 MovieClip Frame 1
stop();
Symbol 955 MovieClip Frame 2
stop();
Symbol 958 Button
on (release) {
_root.unlockpanel.gotoAndStop(4);
}
Symbol 960 MovieClip Frame 1
stop();
Symbol 960 MovieClip Frame 2
stop();
Symbol 963 Button
on (release) {
_root.unlockpanel.gotoAndStop(5);
}
Symbol 965 MovieClip Frame 1
stop();
Symbol 965 MovieClip Frame 2
stop();
Symbol 969 Button
on (release) {
_root.unlockpanel.gotoAndStop(1);
}
Symbol 975 Button
on (release) {
_root.planetsarrayid = Array();
_root.planetsarrayx = Array();
_root.planetsarrayy = Array();
_root.currentplanet = 1;
_root.totalplanetcount = 0;
_root.gotoAndPlay("leveleditor");
}
Symbol 986 Button
on (release) {
_root.unlockpanel.sketches.actualsketches.gotoAndStop(2);
}
Symbol 989 Button
on (release) {
_root.unlockpanel.sketches.actualsketches.gotoAndStop(3);
}
Symbol 992 Button
on (release) {
_root.unlockpanel.sketches.actualsketches.gotoAndStop(1);
}
Symbol 993 MovieClip Frame 1
stop();
Symbol 993 MovieClip Frame 2
stop();
Symbol 993 MovieClip Frame 3
stop();
Symbol 1030 MovieClip Frame 1
stop();
Symbol 1117 Button
on (release) {
_root.unlockpanel.unlockcontent.gotoAndStop(_root.unlockpanel.unlockcontent._currentframe + 1);
}
Symbol 1119 Button
on (release) {
_root.unlockpanel.unlockcontent.gotoAndStop(_root.unlockpanel.unlockcontent._currentframe - 1);
}
Symbol 1130 MovieClip Frame 1
stop();
Symbol 1130 MovieClip Frame 2
stop();
Symbol 1135 Button
on (release) {
getURL ("http://en.wikipedia.org/wiki/Gravitation", "_blank");
}
Symbol 1136 Button
on (release) {
getURL ("http://en.wikipedia.org/wiki/Golf", "_blank");
}
Symbol 1137 Button
on (release) {
getURL ("http://en.wikipedia.org/wiki/Einstein_field_equations", "_blank");
}
Symbol 1138 Button
on (release) {
getURL ("http://en.wikipedia.org/wiki/General_relativity", "_blank");
}
Symbol 1139 Button
on (release) {
getURL ("http://en.wikipedia.org/wiki/Newton%27s_law_of_universal_gravitation", "_blank");
}
Symbol 1159 MovieClip Frame 1
stop();
Symbol 1159 MovieClip Frame 2
stop();
Symbol 1159 MovieClip Frame 3
stop();
Symbol 1159 MovieClip Frame 4
stop();
Symbol 1159 MovieClip Frame 5
stop();
Symbol 1159 MovieClip Frame 6
stop();
Symbol 1159 MovieClip Frame 7
stop();
Symbol 1159 MovieClip Frame 8
stop();
Symbol 1159 MovieClip Frame 9
stop();
Symbol 1159 MovieClip Frame 10
stop();
Symbol 1159 MovieClip Frame 11
stop();
_root.round1visitcount = (((((((((((((((((((((((((int(_root.visit011) + int(_root.visit012)) + int(_root.visit013)) + int(_root.visit021)) + int(_root.visit022)) + int(_root.visit023)) + int(_root.visit031)) + int(_root.visit032)) + int(_root.visit033)) + int(_root.visit041)) + int(_root.visit042)) + int(_root.visit043)) + int(_root.visit051)) + int(_root.visit052)) + int(_root.visit053)) + int(_root.visit061)) + int(_root.visit062)) + int(_root.visit063)) + int(_root.visit071)) + int(_root.visit072)) + int(_root.visit073)) + int(_root.visit081)) + int(_root.visit082)) + int(_root.visit083)) + int(_root.visit091)) + int(_root.visit092)) + int(_root.visit093);
_root.round2visitcount = (((((((((((((((((((((((((((((((int(_root.visit111) + int(_root.visit112)) + int(_root.visit121)) + int(_root.visit122)) + int(_root.visit123)) + int(_root.visit131)) + int(_root.visit132)) + int(_root.visit133)) + int(_root.visit141)) + int(_root.visit142)) + int(_root.visit143)) + int(_root.visit144)) + int(_root.visit151)) + int(_root.visit152)) + int(_root.visit153)) + int(_root.visit154)) + int(_root.visit161)) + int(_root.visit162)) + int(_root.visit163)) + int(_root.visit164)) + int(_root.visit171)) + int(_root.visit172)) + int(_root.visit173)) + int(_root.visit174)) + int(_root.visit175)) + int(_root.visit181)) + int(_root.visit182)) + int(_root.visit183)) + int(_root.visit184)) + int(_root.visit191)) + int(_root.visit192)) + int(_root.visit193)) + int(_root.visit194);
_root.round3visitcount = ((((((((((((((((((((((((((((((((((int(_root.visit211) + int(_root.visit212)) + int(_root.visit213)) + int(_root.visit214)) + int(_root.visit221)) + int(_root.visit222)) + int(_root.visit223)) + int(_root.visit224)) + int(_root.visit231)) + int(_root.visit232)) + int(_root.visit233)) + int(_root.visit234)) + int(_root.visit241)) + int(_root.visit242)) + int(_root.visit243)) + int(_root.visit244)) + int(_root.visit251)) + int(_root.visit252)) + int(_root.visit253)) + int(_root.visit254)) + int(_root.visit261)) + int(_root.visit262)) + int(_root.visit263)) + int(_root.visit264)) + int(_root.visit271)) + int(_root.visit272)) + int(_root.visit273)) + int(_root.visit274)) + int(_root.visit281)) + int(_root.visit282)) + int(_root.visit283)) + int(_root.visit284)) + int(_root.visit291)) + int(_root.visit292)) + int(_root.visit293)) + int(_root.visit294);
_root.round4visitcount = (((((((((((((((((((((((((((((((int(_root.visit311) + int(_root.visit312)) + int(_root.visit313)) + int(_root.visit321)) + int(_root.visit322)) + int(_root.visit323)) + int(_root.visit324)) + int(_root.visit331)) + int(_root.visit332)) + int(_root.visit333)) + int(_root.visit341)) + int(_root.visit342)) + int(_root.visit343)) + int(_root.visit344)) + int(_root.visit351)) + int(_root.visit352)) + int(_root.visit353)) + int(_root.visit354)) + int(_root.visit361)) + int(_root.visit362)) + int(_root.visit363)) + int(_root.visit371)) + int(_root.visit372)) + int(_root.visit373)) + int(_root.visit374)) + int(_root.visit375)) + int(_root.visit381)) + int(_root.visit382)) + int(_root.visit383)) + int(_root.visit391)) + int(_root.visit392)) + int(_root.visit393)) + int(_root.visit394);
_root.round5visitcount = ((((((((((((((((((((((((((((((((int(_root.visit411) + int(_root.visit412)) + int(_root.visit413)) + int(_root.visit414)) + int(_root.visit421)) + int(_root.visit422)) + int(_root.visit423)) + int(_root.visit424)) + int(_root.visit431)) + int(_root.visit432)) + int(_root.visit433)) + int(_root.visit441)) + int(_root.visit442)) + int(_root.visit443)) + int(_root.visit451)) + int(_root.visit452)) + int(_root.visit453)) + int(_root.visit461)) + int(_root.visit462)) + int(_root.visit463)) + int(_root.visit471)) + int(_root.visit472)) + int(_root.visit473)) + int(_root.visit474)) + int(_root.visit481)) + int(_root.visit482)) + int(_root.visit483)) + int(_root.visit484)) + int(_root.visit485)) + int(_root.visit491)) + int(_root.visit492)) + int(_root.visit493)) + int(_root.visit494)) + int(_root.visit495);
_root.round6visitcount = (((((((((((((((((((((((((((((((((((((((((((int(_root.visit511) + int(_root.visit512)) + int(_root.visit513)) + int(_root.visit514)) + int(_root.visit515)) + int(_root.visit521)) + int(_root.visit522)) + int(_root.visit523)) + int(_root.visit524)) + int(_root.visit525)) + int(_root.visit531)) + int(_root.visit532)) + int(_root.visit533)) + int(_root.visit534)) + int(_root.visit535)) + int(_root.visit541)) + int(_root.visit542)) + int(_root.visit543)) + int(_root.visit544)) + int(_root.visit545)) + int(_root.visit551)) + int(_root.visit552)) + int(_root.visit553)) + int(_root.visit554)) + int(_root.visit555)) + int(_root.visit561)) + int(_root.visit562)) + int(_root.visit563)) + int(_root.visit564)) + int(_root.visit565)) + int(_root.visit571)) + int(_root.visit572)) + int(_root.visit573)) + int(_root.visit574)) + int(_root.visit575)) + int(_root.visit581)) + int(_root.visit582)) + int(_root.visit583)) + int(_root.visit584)) + int(_root.visit585)) + int(_root.visit591)) + int(_root.visit592)) + int(_root.visit593)) + int(_root.visit594)) + int(_root.visit595);
_root.round7visitcount = (((((((((((((((((((((((((((((((((((((int(_root.visit611) + int(_root.visit612)) + int(_root.visit613)) + int(_root.visit614)) + int(_root.visit621)) + int(_root.visit622)) + int(_root.visit623)) + int(_root.visit624)) + int(_root.visit631)) + int(_root.visit632)) + int(_root.visit633)) + int(_root.visit634)) + int(_root.visit635)) + int(_root.visit641)) + int(_root.visit642)) + int(_root.visit643)) + int(_root.visit644)) + int(_root.visit651)) + int(_root.visit652)) + int(_root.visit653)) + int(_root.visit654)) + int(_root.visit655)) + int(_root.visit661)) + int(_root.visit662)) + int(_root.visit663)) + int(_root.visit664)) + int(_root.visit671)) + int(_root.visit672)) + int(_root.visit673)) + int(_root.visit674)) + int(_root.visit675)) + int(_root.visit681)) + int(_root.visit682)) + int(_root.visit683)) + int(_root.visit691)) + int(_root.visit692)) + int(_root.visit693)) + int(_root.visit694)) + int(_root.visit695);
_root.round8visitcount = ((((((((((((((((((((((((((((((((((((((int(_root.visit711) + int(_root.visit712)) + int(_root.visit713)) + int(_root.visit714)) + int(_root.visit721)) + int(_root.visit722)) + int(_root.visit723)) + int(_root.visit724)) + int(_root.visit725)) + int(_root.visit731)) + int(_root.visit732)) + int(_root.visit733)) + int(_root.visit734)) + int(_root.visit735)) + int(_root.visit741)) + int(_root.visit742)) + int(_root.visit743)) + int(_root.visit744)) + int(_root.visit751)) + int(_root.visit752)) + int(_root.visit753)) + int(_root.visit754)) + int(_root.visit761)) + int(_root.visit762)) + int(_root.visit763)) + int(_root.visit764)) + int(_root.visit765)) + int(_root.visit771)) + int(_root.visit772)) + int(_root.visit773)) + int(_root.visit774)) + int(_root.visit775)) + int(_root.visit776)) + int(_root.visit781)) + int(_root.visit782)) + int(_root.visit783)) + int(_root.visit784)) + int(_root.visit791)) + int(_root.visit792)) + int(_root.visit793);
_root.round9visitcount = (((((((((((((((((((((((((((((((((((((((int(_root.visit811) + int(_root.visit812)) + int(_root.visit813)) + int(_root.visit814)) + int(_root.visit821)) + int(_root.visit822)) + int(_root.visit823)) + int(_root.visit824)) + int(_root.visit825)) + int(_root.visit831)) + int(_root.visit832)) + int(_root.visit833)) + int(_root.visit834)) + int(_root.visit835)) + int(_root.visit841)) + int(_root.visit842)) + int(_root.visit843)) + int(_root.visit844)) + int(_root.visit845)) + int(_root.visit851)) + int(_root.visit852)) + int(_root.visit853)) + int(_root.visit854)) + int(_root.visit855)) + int(_root.visit861)) + int(_root.visit862)) + int(_root.visit863)) + int(_root.visit864)) + int(_root.visit871)) + int(_root.visit872)) + int(_root.visit873)) + int(_root.visit874)) + int(_root.visit875)) + int(_root.visit881)) + int(_root.visit882)) + int(_root.visit883)) + int(_root.visit884)) + int(_root.visit891)) + int(_root.visit892)) + int(_root.visit893)) + int(_root.visit894);
_root.round10visitcount = ((((((((((((((((((((((((((((((((((((((((((((int(_root.visit911) + int(_root.visit912)) + int(_root.visit913)) + int(_root.visit914)) + int(_root.visit915)) + int(_root.visit921)) + int(_root.visit922)) + int(_root.visit923)) + int(_root.visit924)) + int(_root.visit931)) + int(_root.visit932)) + int(_root.visit933)) + int(_root.visit934)) + int(_root.visit935)) + int(_root.visit936)) + int(_root.visit941)) + int(_root.visit942)) + int(_root.visit943)) + int(_root.visit944)) + int(_root.visit945)) + int(_root.visit951)) + int(_root.visit952)) + int(_root.visit953)) + int(_root.visit954)) + int(_root.visit955)) + int(_root.visit956)) + int(_root.visit957)) + int(_root.visit961)) + int(_root.visit962)) + int(_root.visit963)) + int(_root.visit964)) + int(_root.visit965)) + int(_root.visit971)) + int(_root.visit972)) + int(_root.visit973)) + int(_root.visit974)) + int(_root.visit975)) + int(_root.visit981)) + int(_root.visit982)) + int(_root.visit983)) + int(_root.visit984)) + int(_root.visit985)) + int(_root.visit991)) + int(_root.visit992)) + int(_root.visit993)) + int(_root.visit994);
Symbol 1159 MovieClip Frame 12
stop();
Symbol 1159 MovieClip Frame 13
stop();
Symbol 1159 MovieClip Frame 14
stop();
Symbol 1159 MovieClip Frame 15
stop();
Symbol 1159 MovieClip Frame 16
stop();
Symbol 1159 MovieClip Frame 17
stop();
Symbol 1159 MovieClip Frame 18
stop();
Symbol 1159 MovieClip Frame 19
stop();
Symbol 1159 MovieClip Frame 20
stop();
Symbol 1159 MovieClip Frame 21
stop();
Symbol 1160 MovieClip Frame 1
stop();
Symbol 1160 MovieClip Frame 2
stop();
Symbol 1162 Button
on (rollOver) {
_root.buttonconsole._alpha = 100;
}
on (rollOut) {
_root.buttonconsole._alpha = 20;
}
on (release) {
_root.b1on = 1;
_root.buttonconsole.b1.gotoAndStop(2);
}
Symbol 1163 Button
on (rollOver) {
_root.buttonconsole._alpha = 100;
}
on (rollOut) {
_root.buttonconsole._alpha = 20;
}
on (release) {
_root.b1on = 0;
i = 0;
while (i < 400) {
_root["line" + i].removeMovieClip();
i++;
}
_root.buttonconsole.b1.gotoAndStop(1);
}
Symbol 1164 MovieClip Frame 1
stop();
Symbol 1164 MovieClip Frame 2
stop();
Symbol 1165 Button
on (rollOver) {
_root.buttonconsole._alpha = 100;
}
on (rollOut) {
_root.buttonconsole._alpha = 20;
}
on (release) {
_root.b2on = 1;
i = 0;
while (i < _root.planetcount) {
if (_root[(("visit" + (_root.currentround - 1)) + _root.currenthole) + (i + 1)] == 1) {
_root["planet" + (i + 1)].visitedmark.gotoAndStop(2);
} else {
_root["planet" + (i + 1)].visitedmark.gotoAndStop(3);
}
i++;
}
_root.buttonconsole.b2.gotoAndStop(2);
}
Symbol 1166 Button
on (rollOver) {
_root.buttonconsole._alpha = 100;
}
on (rollOut) {
_root.buttonconsole._alpha = 20;
}
on (release) {
_root.b2on = 0;
i = 0;
while (i < _root.planetcount) {
_root["planet" + (i + 1)].visitedmark.gotoAndStop(1);
i++;
}
_root.buttonconsole.b2.gotoAndStop(1);
}
Symbol 1167 MovieClip Frame 1
stop();
Symbol 1167 MovieClip Frame 2
stop();
Symbol 1168 Button
on (rollOver) {
_root.buttonconsole._alpha = 100;
}
on (rollOut) {
_root.buttonconsole._alpha = 20;
}
on (release) {
_root.b3on = 1;
_root.tangent.gotoAndStop(2);
_root.bouncearrow.gotoAndStop(2);
_root.directionarrow.gotoAndStop(2);
_root.reboundarrow.gotoAndStop(2);
_root.buttonconsole.b3.gotoAndStop(2);
}
Symbol 1169 Button
on (rollOver) {
_root.buttonconsole._alpha = 100;
}
on (rollOut) {
_root.buttonconsole._alpha = 20;
}
on (release) {
_root.b3on = 0;
_root.tangent.gotoAndStop(1);
_root.bouncearrow.gotoAndStop(1);
_root.directionarrow.gotoAndStop(1);
_root.reboundarrow.gotoAndStop(1);
_root.buttonconsole.b3.gotoAndStop(1);
}
Symbol 1170 MovieClip Frame 1
stop();
Symbol 1170 MovieClip Frame 2
stop();
Symbol 1171 Button
on (rollOver) {
_root.buttonconsole._alpha = 100;
}
on (rollOut) {
_root.buttonconsole._alpha = 20;
}
on (release) {
_root.finaloverlayused = 1;
_root.b4on = 1;
_root.holeinonespoth = _root["holeinonespots" + _root.currentround][_root.currenthole - 1];
_root.holeinonespotx = _root.holeinonespoth.substr(0, _root.holeinonespoth.indexOf(",", 0));
_root.holeinonespoty = _root.holeinonespoth.substr(_root.holeinonespoth.indexOf(",", 0) + 1);
_root.holeinonespot._x = _root.holeinonespotx;
_root.holeinonespot._y = _root.holeinonespoty;
_root.buttonconsole.b4.gotoAndStop(2);
}
Symbol 1172 Button
on (rollOver) {
_root.buttonconsole._alpha = 100;
}
on (rollOut) {
_root.buttonconsole._alpha = 20;
}
on (release) {
_root.b4on = 0;
_root.holeinonespot._x = -100;
_root.holeinonespot._y = -100;
_root.buttonconsole.b4.gotoAndStop(1);
}
Symbol 1173 MovieClip Frame 1
stop();
Symbol 1173 MovieClip Frame 2
stop();
Symbol 1179 Button
on (rollOver) {
_root.buttonconsole._alpha = 100;
}
on (rollOut) {
_root.buttonconsole._alpha = 20;
}
on (release) {
_root.b0on = 1;
i = 0;
while (i < _root.planetcount) {
_root["planet" + (i + 1)].visitedmark.massbox._alpha = 100;
_root["planet" + (i + 1)].flameicon.massbox._alpha = 100;
i++;
}
_root.buttonconsole.b0.gotoAndStop(2);
}
Symbol 1184 Button
on (rollOver) {
_root.buttonconsole._alpha = 100;
}
on (rollOut) {
_root.buttonconsole._alpha = 20;
}
on (release) {
_root.b0on = 0;
i = 0;
while (i < _root.planetcount) {
_root["planet" + (i + 1)].visitedmark.massbox._alpha = 0;
_root["planet" + (i + 1)].flameicon.massbox._alpha = 0;
i++;
}
_root.buttonconsole.b0.gotoAndStop(1);
}
Symbol 1185 MovieClip Frame 1
stop();
Symbol 1185 MovieClip Frame 2
stop();
Symbol 1188 Button
on (rollOver) {
_root.buttonconsole._alpha = 100;
}
on (rollOut) {
_root.buttonconsole._alpha = 20;
}
on (release) {
_root.bpon = 1;
_root.buttonconsole.bp.gotoAndStop(2);
}
Symbol 1191 Button
on (rollOver) {
_root.buttonconsole._alpha = 100;
}
on (rollOut) {
_root.buttonconsole._alpha = 20;
}
on (release) {
_root.bpon = 0;
i = 0;
while (i < _root.levelpl) {
_root["preview" + i].removeMovieClip();
i++;
}
_root.buttonconsole.bp.gotoAndStop(1);
}
Symbol 1192 MovieClip Frame 1
stop();
Symbol 1192 MovieClip Frame 2
stop();
Symbol 1196 Button
on (release) {
_root.soundmuted = 1;
_root.mutebutton.gotoAndStop(2);
}
Symbol 1199 Button
on (release) {
_root.soundmuted = 0;
_root.mutebutton.gotoAndStop(1);
}
Symbol 1200 MovieClip Frame 1
stop();
Symbol 1200 MovieClip Frame 2
stop();
Symbol 1204 MovieClip Frame 1
stop();
Symbol 1204 MovieClip Frame 2
stop();
Symbol 1213 Button
on (release) {
_root.attachMovie("quitholebox", "quitholebox", 21404);
_root.quitholebox._x = 0;
_root.quitholebox._y = 0;
_root.oobtl._x = -1000;
_root.oobt._x = -1000;
_root.oobtr._x = -1000;
_root.oobl._x = -1000;
_root.oobr._x = -1000;
_root.oobbl._x = -1000;
_root.oobb._x = -1000;
_root.oobbr._x = -1000;
_root.ballshow.removeMovieClip();
_root.targetshow.removeMovieClip();
}
Symbol 1216 Button
on (release) {
pl = 0;
while (pl <= _root.levelpl) {
_root["preview" + pl].removeMovieClip();
pl++;
}
_root.ball._x = _root.startx;
_root.ball._y = _root.starty;
_root.ball.oldx = _root.startx;
_root.ball.oldy = _root.starty;
_root.dograv = 0;
_root.oobtl._x = -1000;
_root.oobt._x = -1000;
_root.oobtr._x = -1000;
_root.oobl._x = -1000;
_root.oobr._x = -1000;
_root.oobbl._x = -1000;
_root.oobb._x = -1000;
_root.oobbr._x = -1000;
_root.trail1._x = _root.ball._x;
_root.trail1._y = _root.ball._y;
_root.trail2._x = _root.ball._x;
_root.trail2._y = _root.ball._y;
_root.trail3._x = _root.ball._x;
_root.trail3._y = _root.ball._y;
_root.resultstext = "Shot Aborted!";
_root.messages.gotoAndPlay(2);
_root.quitbutton.gotoAndStop(1);
}
Symbol 1217 MovieClip Frame 1
stop();
Symbol 1217 MovieClip Frame 2
stop();
Symbol 1223 Button
on (release) {
i = 0;
while (i < _root.totalplanetcount) {
_root["planet" + (i + 1)].removeMovieClip();
i++;
}
_root.totalplanetcount = 0;
_root.ballicon.removeMovieClip();
_root.gateicon.removeMovieClip();
_root.gatehitone = 0;
_root.hitone = 0;
}
Symbol 1226 Button
on (release) {
i = 0;
while (i < _root.totalplanetcount) {
_root["planet" + (i + 1)].removeMovieClip();
i++;
}
_root.editorpanel.removeMovieClip();
_root.ballicon.removeMovieClip();
_root.gateicon.removeMovieClip();
_root.gotoAndStop("unlockables");
}
Symbol 1231 Button
on (release) {
_root.gotoAndPlay("leveleditorplay");
}
Symbol 1234 Button
on (release) {
i = 0;
while (i < _root.totalplanetcount) {
_root["planet" + (i + 1)].removeMovieClip();
i++;
}
_root.gate1._x = -1000;
_root.gate2._x = -1000;
_root.ball._x = -1000;
_root.trail1._x = -1000;
_root.trail2._x = -1000;
_root.trail3._x = -1000;
_root.trail4._x = -1000;
i = 0;
while (i < _root.leveleditorplanetsetup.length) {
_root.loopcount = (_root.loopcount + _root.leveleditorplanetsetup[i]) + "|";
i++;
}
_root.planetcount = 0;
i = 4;
while (i < (_root.leveleditorplanetsetup.length - 1)) {
_root.planetcount++;
_root.attachMovie(_root.leveleditorplanetsetup[i] + "Dragable", "planet" + _root.planetcount, 400 + _root.planetcount);
_root["planet" + _root.planetcount]._x = _root.leveleditorplanetsetup[i + 1] + (_root["planet" + _root.planetcount]._width / 2);
_root["planet" + _root.planetcount]._y = _root.leveleditorplanetsetup[i + 2] + (_root["planet" + _root.planetcount]._width / 2);
i = i + 3;
}
i = 0;
while (i < 400) {
_root["line" + i].removeMovieClip();
i++;
}
_root.attachMovie("ballonplanet", "ballicon", 24000);
_root.ballicon._x = _root["planet" + _root.teeplanet]._x;
_root.ballicon._y = _root["planet" + _root.teeplanet]._y;
_root.ballicon.ballarrow.actualballarrow._y = 111 - (_root["planet" + _root.teeplanet]._width / 2);
_root.teeangle = (360 - _root.teeangle) + 90;
_root.ballicon.ballarrow._rotation = _root.teeangle;
_root.attachMovie("gateonplanet", "gateicon", 24010);
_root.gateicon._x = _root["planet" + _root.holeplanet]._x;
_root.gateicon._y = _root["planet" + _root.holeplanet]._y;
_root.gateicon.gatearrow.actualgatearrow._y = 111 - (_root["planet" + _root.holeplanet]._width / 2);
_root.holeangle = (360 - _root.holeangle) + 90;
_root.gateicon.gatearrow._rotation = _root.holeangle;
_root.gotoAndPlay("leveleditor");
}
Symbol 1235 Button
on (release) {
pl = 0;
while (pl <= _root.levelpl) {
_root["preview" + pl].removeMovieClip();
pl++;
}
_root.ball._x = _root.startx;
_root.ball._y = _root.starty;
_root.ball.oldx = _root.startx;
_root.ball.oldy = _root.starty;
_root.dograv = 0;
_root.trail1._x = _root.ball._x;
_root.trail1._y = _root.ball._y;
_root.trail2._x = _root.ball._x;
_root.trail2._y = _root.ball._y;
_root.trail3._x = _root.ball._x;
_root.trail3._y = _root.ball._y;
_root.resultstext = "Shot Aborted!";
_root.messages.gotoAndPlay(2);
_root.quitbutton.gotoAndStop(1);
}
Symbol 1236 MovieClip Frame 1
stop();
Symbol 1236 MovieClip Frame 2
stop();
Symbol 1240 Button
on (release) {
_root.medalcriteriabox.gotoAndStop(2);
}
Symbol 1241 Button
on (release) {
_root.donetutorial = 1;
_root.gotoAndPlay("selectlevel");
}
Symbol 1257 MovieClip Frame 1
stop();
Symbol 1257 MovieClip Frame 2
stop();
Symbol 1257 MovieClip Frame 3
stop();
Symbol 1257 MovieClip Frame 4
stop();
Symbol 1263 MovieClip Frame 1
stop();
Symbol 1263 MovieClip Frame 2
stop();
Symbol 1263 MovieClip Frame 3
stop();
Symbol 1263 MovieClip Frame 4
stop();
Symbol 1267 MovieClip Frame 1
stop();
Symbol 1267 MovieClip Frame 2
stop();
Symbol 1267 MovieClip Frame 3
stop();
Symbol 1267 MovieClip Frame 4
stop();
Symbol 1267 MovieClip Frame 5
stop();
Symbol 1277 Button
on (release) {
_root.achievebox.gotoAndStop(1);
}
Symbol 1280 MovieClip Frame 1
stop();
Symbol 1280 MovieClip Frame 2
_root.hackboxx = _root.achievebox.hackbox._x;
if (_root.achievementdifference == 1) {
_root.achievebox.hackbox._x = -63.3;
} else {
_root.achievebox.hackbox._x = -6000;
}
stop();
Symbol 1283 Button
on (release) {
_root.medalcriteriabox.gotoAndStop(1);
}
Symbol 1293 MovieClip Frame 1
stop();
Symbol 1293 MovieClip Frame 2
stop();