STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228109
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2561 · P5121

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/89938658?noj=FRM89938658-8DC" width="1" height="1"></div>

Happy Tree Friends - Petunia Balance.swf

This is the info page for
Flash #24642

(Click the ID number above for more basic data on this flash file.)


Text
www.htfgames.com

Petunia Balance

Part 13

PLAY

Play

Play again

Highscore

Time:

Your Best:

00:00:00

00:00:00
00:00:00

Time:

Best:

Highscore works on htfgames.com only!

Score:

Name:

Send

Send

Login

Login

Please Login
Firs!

Ok

Ok

ok

LOAD

you must reload this
page to send
further scores!

du musst diese seite
neu laden wenn du
weitere punkte
senden möchtest!

ActionScript [AS1/AS2]

Instance of Symbol 46 MovieClip in Frame 1
//component parameters onClipEvent (initialize) { xin_motion_val = "Down"; xin_alphatype_val = "Yes"; xout_motion_val = "Down"; xout_alphatype_val = "Yes"; perc_req_val = 100; show_perc_val = "Yes"; slow_factor_val = 0.2; init_action_val = "_root.stop();"; play_action_val = "_root.play();"; }
Frame 2
stop();
Frame 3
Frame 4
stop();
Instance of Symbol 84 MovieClip "restart" in Frame 4
onClipEvent (enterFrame) { if (this._alpha >= 100) { this.btimer2.text = _root.UNI_ROOT.btime_txt; trace(_root.UNI_ROOT.btime_txt); } }
Instance of Symbol 89 MovieClip "UNI_ROOT" in Frame 4
onClipEvent (load) { STARTx = this._x; STARTy = _root.wheel._y; STARTy_dude = _root.dude._y; jumping = 0; jump_vel = 0; charge_time = 16; max_charge = -22; jump_charge = max_charge / charge_time; gravity = 1.8; rot_limit = 90; max_difficulty = 7.5; difficulty_init = 0; difficulty = difficulty_init; tightness_init = 100; tightness = tightness_init; tightness_max = 30; difficulty_buffer = 120; tightness_add = (tightness_max - tightness) / difficulty_buffer; diff_add = (max_difficulty - difficulty) / difficulty_buffer; accn = 0; arms_factor = -0.75; bs_max = 14; bs_min = 11; min_timeout = -700; max_timeout = -1500; circ = _root.wheel._height * 3.14159; wheel_r = _root.wheel._width / 2; ball_r = _root.ball._width / 2; elasticity = -0.075; this._y = -50; fadein_speed = 6; fadeout_speed = 10; time_init = new Date(); _root.restart._visible = false; _root.restart._alpha = 0; best_ms = 0; best_sub = 0; indicator_fade = 10; indicator_fade_in = 5; _root.ball_indicator._alpha = 0; reset_ball(); cheat = false; } onClipEvent (enterFrame) { if (_root._currentframe == 5) { _root.btime_submit.text = btime_txt; } else { nowx = _root._xmouse; if (_root.wheel._y == STARTy) { accn = this._x - nowx; } distance = this._x - STARTx; time_now = new Date(); diff_ms = time_now.getTime() - time_init.getTime(); if (diff_ms > best_ms) { best_ms = diff_ms; } mins = Math.floor(diff_ms / 60000); secs = Math.floor(diff_ms / 1000) % 60; msecs = Math.floor(diff_ms / 100) % 10; bmins = Math.floor(best_ms / 60000); bsecs = Math.floor(best_ms / 1000) % 60; bmsecs = Math.floor(best_ms / 100) % 10; if (mins < 10) { mp = "0"; } else { mp = ""; } if (secs < 10) { sp = "0"; } else { sp = ""; } if (bmins < 10) { bmp = "0"; } else { bmp = ""; } if (bsecs < 10) { bsp = "0"; } else { bsp = ""; } time_txt = mp.concat(mins.toString(), ":", sp, secs.toString(), ":", msecs.toString()); btime_txt = bmp.concat(bmins.toString(), ":", bsp, bsecs.toString(), ":", bmsecs.toString()); wheel_rot = 360 * (distance / circ); wheel_rot_rad = ((wheel_rot / 360) * 2) * 3.141593; if (difficulty < max_difficulty) { difficulty = difficulty + diff_add; tightness = tightness + tightness_add; } guy_rot = _root.dude._rotation; guy_rot_rad = ((guy_rot / 360) * 2) * 3.141593; rotation_fall_add = difficulty * Math.sin(guy_rot_rad); guy_rot = guy_rot + (accn / tightness); guy_rot = guy_rot + rotation_fall_add; if (cold < minimum_distance) { hit = 1; } else { hit = 0; } if (((guy_rot > rot_limit) || (guy_rot < (-rot_limit))) || (hit == 1)) { guy_rot = rot_limit; this._y = -60; time_init = new Date(); reset_ball(); } if (this._y == -50) { if (_root.wheel._y < Math.floor(STARTy)) { if ((STARTy - _root.wheel._y) <= jump_vel) { _root.wheel._y = STARTy; _root.dude._y = STARTy_dude; _root.SHADOW._alpha = 100; jump_vel = 0; jumping = 0; } else { _root.SHADOW._alpha = 100 - ((STARTy - _root.wheel._y) / 2.2); _root.wheel._y = _root.wheel._y + jump_vel; _root.dude._y = _root.dude._y + jump_vel; jump_vel = jump_vel + gravity; } } else { _root.dude._rotation = guy_rot; _root.dude.right_arm._rotation = (guy_rot * arms_factor) * 0.7; _root.dude.left_arm._rotation = guy_rot * arms_factor; } this._x = this._x + (accn * elasticity); _root.wheel._x = this._x; _root.SHADOW._x = this._x; _root.dude._x = this._x; _root.wheel._rotation = wheel_rot; if (_root.restart._alpha > 0) { _root.restart._alpha = _root.restart._alpha - fadeout_speed; } else { _root.restart._visible = false; } _root.timer.text = time_txt; _root.btimer.text = btime_txt; _root.restart.btimer2.text = btime_txt; } else if (_root.restart._alpha < 120) { _root.restart._visible = true; _root.dude.play(); _root.restart._alpha = _root.restart._alpha + fadein_speed; difficulty = difficulty_init; tightness = tightness_init; jump_vel = 0; } else { time_init = new Date(); } } }
Instance of Symbol 168 MovieClip "dude" in Frame 4
/* no clip actions */
Frame 5
function setListe() { prev_mc._visible = 0; prev_mc._visible = 1; prev_mc.ladeDaten(); prev_mc.ladeDaten(); } function setSpieler() { var _local1 = this; fvorname = vorname_txt.text; fnachname = nachname_txt.text; fpunkte = punkte_txt.text; ficon = stern_mc._currentframe; loadVariables (x + new Date().getTime(), _local1, "POST"); status_txt.text = "Lade Daten!"; _local1.onData = function () { if (eintrag) { delete eintrag; } else { this.gotoAndPlay(7); status_txt.text = "Fehler !"; delete eintrag; } }; } function nextIcon() { stern_mc.nextFrame(); } function prevIcon() { if (stern_mc._currentframe > 2) { stern_mc.prevFrame(); } } mein_xml = new XML(); mein_xml.ignoreWhite = true; status_txt.text = "Lade Eintr\u00E4ge!"; mein_xml.load("http://www.htfgames.com/highscore/shark/ausgabe.php?" + new Date().getTime()); loadVariables ("http://www.htfgames.com/highscore/shark/ausgabe.php?", "", "POST"); loadVariables ("http://www.htfgames.com/highscore/login/login.php?", "", "POST"); mein_xml.onLoad = function (signal) { if (signal) { status_txt.text = ""; setListe(); } }; schreiben_btn.onRelease = function () { prev_mc._visible = 0; prev_mc._visible = 1; gotoAndPlay (7); vorname_txt.restrict = "A-Za-z\u00F6\u00E4\u00FC\u00D6\u00C4\u00DC\u00DF"; nachname_txt.restrict = "A-Za-z\u00F6\u00E4\u00FC\u00D6\u00C4\u00DC\u00DF"; punkte_txt.restrict = "0-5"; }; prev_mc._visible = 0; prev_btn.onRelease = function () { prev_mc._visible = !prev_mc._visible; prev_mc._visible = !prev_mc._visible; }; stop(); loadMovieNum ("http://www.htfgames.com/games/shark/werb/werb2.swf", 10); stop();
Instance of Symbol 198 MovieClip "login" in Frame 5
onClipEvent (enterFrame) { if (_root.logid == 1) { _root.login.gotoAndStop(2); } else { _root.login.gotoAndStop(1); } }
Frame 6
stop();
Frame 7
function setListe() { prev_mc._visible = 0; high_mc._visible = 1; prev_mc.ladeDaten(); high_mc.ladeDaten(); } mein_xml = new XML(); mein_xml.ignoreWhite = true; status_txt.text = "Lade Eintr\u00E4ge!"; mein_xml.load("http://www.htfgames.com/highscore/shark/ausgabe.php?" + new Date().getTime()); mein_xml.onLoad = function (signal) { if (signal) { status_txt.text = ""; setListe(); } }; stop();
Frame 8
stop();
Symbol 8 MovieClip Frame 1
stop();
Symbol 23 MovieClip Frame 1
stop();
Symbol 23 MovieClip Frame 2
stop();
Instance of Symbol 9 MovieClip in Symbol 23 MovieClip Frame 2
onClipEvent (enterFrame) { zAuge = random(50); if (zAuge == 30) { l.play(); r.play(); } }
Symbol 23 MovieClip Frame 3
stop();
Symbol 23 MovieClip Frame 4
stop();
Symbol 23 MovieClip Frame 5
stop();
Symbol 23 MovieClip Frame 6
stop();
Symbol 23 MovieClip Frame 7
stop();
Symbol 23 MovieClip Frame 8
stop();
Symbol 23 MovieClip Frame 9
stop();
Symbol 23 MovieClip Frame 10
stop();
Symbol 23 MovieClip Frame 11
stop();
Symbol 23 MovieClip Frame 12
stop();
Symbol 23 MovieClip Frame 13
stop();
Symbol 23 MovieClip Frame 14
stop();
Symbol 46 MovieClip Frame 1
stop();
Instance of Symbol 45 MovieClip "swfloader" in Symbol 46 MovieClip Frame 1
onClipEvent (load) { function strip_spaces(str) { var _local2 = str; var _local3 = new String(""); var _local1 = 0; while (_local1 < _local2.length) { if ((_local2.charAt(_local1) != " ") && (_local2.charAt(_local1) != ";")) { _local3 = _local3 + _local2.charAt(_local1); } _local1++; } return(_local3); } function simple_script(action, timeline) { action = strip_spaces(action); if ((action.length > 0) && ((action.indexOf(")") != -1) && (action.indexOf("(") != -1))) { var _local3 = action.split("."); var timeline_action = _local3.pop(); var first_paren = timeline_action.indexOf("("); var second_paren = timeline_action.indexOf(")"); var timeline_function = timeline_action.substr(0, first_paren); var function_parameter = timeline_action.substr(first_paren + 1, second_paren - (first_paren + 1)); var _local2 = timeline; var _local1 = 0; while (_local1 < _local3.length) { _local2 = _local2[_local3[_local1]]; _local1++; } if (function_parameter.indexOf("\"") != -1) { function_parameter = function_parameter.substr(1, function_parameter.length - 2); } _local2[timeline_function](function_parameter); } } function execute_action() { var _local1 = _parent; unloaded = true; _local1._visible = false; simple_script(_local1.play_action_val, _local1); } _parent.anim.gotoAndStop(1); simple_script(_parent.init_action_val, _parent); var done = false; var unloaded = false; var orig_x = _parent._x; var orig_y = _parent._y; var dist_x = (_parent._x + ((_parent._width * 2) / 3)); var dist_y = (_parent._y + ((_parent._height * 2) / 3)); var orig_a = _parent._alpha; var accel_jump = 0.75; var slow_factor = _parent.slow_factor_val; var speed_factor = (1 + (slow_factor / (1 - slow_factor))); var ready = false; var perc_fadeout = 0; _parent.perc._x = _parent.anim._x - (_parent.perc._width / 2); _parent.perc._y = _parent.anim._y - (_parent.perc._height / 2); if (slow_factor < 1) { switch (_parent.xin_motion_val) { case "Up" : _parent._y = orig_y + (dist_y * 2); break; case "Down" : _parent._y = orig_y - (dist_y * 2); break; case "Left" : _parent._x = orig_x + (dist_x * 2); break; case "Right" : _parent._x = orig_x - (dist_x * 2); break; case "Toward" : _parent._xscale = (_parent._yscale = 1); break; case "None" : _parent._alpha = 0; } } else { ready = true; } } onClipEvent (enterFrame) { if (unloaded) { return(undefined); } if (!ready) { switch (_parent.xin_motion_val) { case "Toward" : _parent._xscale = _parent._xscale + ((100 - _parent._xscale) * slow_factor); _parent._yscale = _parent._xscale; if (_parent.xin_alphatype_val == "Yes") { _parent._alpha = Math.round((orig_a / 100) * Math.max(0, Math.min(_parent._xscale, 100))); } if (Math.abs(100 - _parent._xscale) < 0.5) { _parent._xscale = (_parent._yscale = 100); _parent._alpha = orig_a; ready = true; } break; default : _parent._x = _parent._x + ((orig_x - _parent._x) * slow_factor); _parent._y = _parent._y + ((orig_y - _parent._y) * slow_factor); if (_parent.xin_alphatype_val == "Yes") { if (_parent.xin_motion_val == "None") { _parent._alpha = _parent._alpha + ((orig_a - _parent._alpha) * slow_factor); } else if (Math.abs(orig_x - _parent._x) > Math.abs(orig_y - _parent._y)) { _parent._alpha = 100 - Math.round(((orig_a / 100) * (Math.min(dist_x, Math.abs(_parent._x - orig_x)) / dist_x)) * 100); } else { _parent._alpha = 100 - Math.round(((orig_a / 100) * (Math.min(dist_y, Math.abs(_parent._y - orig_y)) / dist_y)) * 100); } } if (!(((_parent.xin_motion_val == "None") && (Math.abs(_parent._alpha - orig_a) <= 1)) || (((_parent.xin_motion_val != "None") && (Math.abs(_parent._y - orig_y) < 0.5)) && (Math.abs(_parent._x - orig_x) < 0.5)))) { break; } _parent._x = orig_x; _parent._y = orig_y; _parent._alpha = orig_a; ready = true; } } else if (!done) { var rl = _root.getBytesLoaded(); var rt = (_root.getBytesTotal() * (_parent.perc_req_val / 100)); if ((rl > 10) && (rt > 10)) { rl = Math.min(rl, rt); var new_frame = (_parent.anim._currentframe + Math.ceil(((_parent.anim._totalframes * (rl / rt)) - _parent.anim._currentframe) / 4)); new_frame = Math.max(1, new_frame); if (_parent.show_perc_val == "Yes") { _parent.perc.text = Math.round(((new_frame - 1) / (_parent.anim._totalframes - 1)) * 100) + " %"; } if (new_frame != _parent.anim._currentframe) { _parent.anim.gotoAndStop(new_frame); } if ((_parent.anim._totalframes == _parent.anim._currentframe) && (rl >= rt)) { done = true; } } } else if (slow_factor < 1) { switch (_parent.xout_motion_val) { case "Up" : if (_parent._y >= orig_y) { _parent._y = orig_y - accel_jump; } _parent._y = orig_y - (Math.abs(_parent._y - orig_y) * speed_factor); perc_fadeout = Math.round((Math.min(dist_y, Math.abs(_parent._y - orig_y)) / dist_y) * 100); if (_parent._y < (orig_y - (dist_y * 2))) { execute_action(); } break; case "Right" : if (_parent._x <= orig_x) { _parent._x = orig_x + accel_jump; } _parent._x = orig_x + (Math.abs(_parent._x - orig_x) * speed_factor); perc_fadeout = Math.round((Math.min(dist_x, Math.abs(_parent._x - orig_x)) / dist_x) * 100); if (_parent._x > (orig_x + (dist_x * 2))) { execute_action(); } break; case "Left" : if (_parent._x >= orig_x) { _parent._x = orig_x - accel_jump; } _parent._x = orig_x - (Math.abs(_parent._x - orig_x) * speed_factor); perc_fadeout = Math.round((Math.min(dist_x, Math.abs(_parent._x - orig_x)) / dist_x) * 100); if (_parent._x < (orig_x - (dist_x * 2))) { execute_action(); } break; case "Away" : if ((_parent._xscale >= 100) || (_parent._yscale >= 100)) { _parent._xscale = (_parent._yscale = 100 - accel_jump); } _parent._xscale = (_parent._yscale = Math.max(0.5, 100 - ((100 - _parent._yscale) * speed_factor))); perc_fadeout = 100 - Math.round(Math.max(0, Math.min(_parent._xscale, 100))); if (_parent._xscale < 1) { execute_action(); } break; default : perc_fadeout = perc_fadeout + ((100 - perc_fadeout) * slow_factor); if (Math.abs(perc_fadeout - 100) > 1) { break; } execute_action(); } if (!(_parent.xout_alphatype_val === "Yes")) { } else { _parent._alpha = (orig_a / 100) * (100 - perc_fadeout); } } else { execute_action(); } }
Symbol 75 Button
on (press) { gotoAndStop (4); }
Symbol 80 Button
on (release) { unloadMovieNum (10); stopAllSounds(); _root.UNI_ROOT._y = -50; x = _root._xmouse; _root.UNI_ROOT._x = x; _root.wheel._x = x; _root.SHADOW._x = x; _root.dude._x = x - 5; _root.dude.gotoAndStop(1); _root.dude._rotation = -0.5; _root.jump_charge.gotoAndStop(1); }
Symbol 81 Button
on (release) { stopAllSounds(); _root.dude.gotoAndStop(1); unloadMovieNum (10); _root.gotoAndStop(5); }
Symbol 84 MovieClip Frame 1
loadMovieNum ("http://www.htfgames.com/games/shark/werb/werb1.swf", 10);
Symbol 168 MovieClip Frame 1
stop();
Symbol 168 MovieClip Frame 2
_root.dude._rotation = -0.5;
Symbol 168 MovieClip Frame 100
stop();
Symbol 186 Button
on (release) { setSpieler(); senden_btn._visible = false; }
Symbol 191 Button
on (release) { getURL ("javascript:winOpen('http://www.htfgames.com/member/member.php', 770, 600 ); void(0);"); }
Symbol 197 Button
on (release) { _root.gotoAndPlay(7); stopAllSounds(); }
Symbol 198 MovieClip Frame 1
stop();
Symbol 198 MovieClip Frame 2
stop();
Symbol 204 MovieClip Frame 1
function ladeDaten() { news_xml = _parent.mein_xml.firstChild.childNodes; initNavigation(); setListe(); } function setListe() { var _local1 = this; i = aktAnzeige; while (i < maxAnzeige) { nName = "newsclip" + j; attachMovie("newsclip", nName, j++); if (news_xml[i] != undefined) { _local1[nName]._x = 15; _local1[nName]._y = ((_local1[nName]._height * j) * 1.2) - 15; _local1[nName].nr_txt.text = i + 1; _local1[nName].name_txt.text = news_xml[i].attributes.vorname; _local1[nName].ver_txt.text = news_xml[i].attributes.nachname; _local1[nName].punkte_txt.text = news_xml[i].firstChild; _local1[nName].stern_mc.gotoAndStop(news_xml[i].attributes.icon); _local1[nName].useHandCursor = false; } else { _local1[nName].removeMovieClip(); } i++; } if (anzahl <= (aktAnzeige + max)) { anzeige_txt.text = ((aktAnzeige + 1) + " / ") + anzahl; } else if (anzahl != 0) { anzeige_txt.text = ((aktAnzeige + 1) + " / ") + (aktAnzeige + max); } if (anzahl == 0) { anzeige_txt.text = "0 / 0"; } gesamt_txt.text = "Gesamt: " + anzahl; } function initNavigation() { j = 0; anzahl = news_xml.length; max = 5; maxAnzeige = 5; aktAnzeige = 0; } butVor.onRelease = function () { if (aktAnzeige < (anzahl - max)) { j = 0; aktAnzeige = aktAnzeige + max; maxAnzeige = maxAnzeige + max; setListe(); } }; butZuruck.onRelease = function () { if (aktAnzeige > 1) { j = 0; aktAnzeige = aktAnzeige - max; maxAnzeige = maxAnzeige - max; setListe(); } };
Symbol 207 MovieClip Frame 23
stop();
Symbol 208 Button
on (release) { unloadMovieNum (10); _root.gotoAndPlay(3); }

Library Items

Symbol 1 GraphicUsed by:26
Symbol 2 FontUsed by:3 4 24 25 39 205
Symbol 3 EditableTextUses:2Used by:26
Symbol 4 EditableTextUses:2Used by:26
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClipUses:5Used by:23
Symbol 7 GraphicUsed by:8 23
Symbol 8 MovieClipUses:7Used by:9
Symbol 9 MovieClipUses:8Used by:23
Symbol 10 GraphicUsed by:23
Symbol 11 GraphicUsed by:23
Symbol 12 GraphicUsed by:23
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:23
Symbol 15 GraphicUsed by:23
Symbol 16 GraphicUsed by:23
Symbol 17 GraphicUsed by:23
Symbol 18 GraphicUsed by:23
Symbol 19 GraphicUsed by:23
Symbol 20 GraphicUsed by:23
Symbol 21 GraphicUsed by:23
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClipUses:6 9 10 11 12 7 14 15 16 17 18 19 20 21 22Used by:26
Symbol 24 EditableTextUses:2Used by:26
Symbol 25 EditableTextUses:2Used by:26
Symbol 26 MovieClip [newsclip]Uses:1 3 4 23 24 25
Symbol 27 GraphicUsed by:Timeline
Symbol 28 GraphicUsed by:Timeline
Symbol 29 GraphicUsed by:Timeline
Symbol 30 BitmapUsed by:31
Symbol 31 GraphicUses:30Used by:43
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:32Used by:43
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:34Used by:43
Symbol 36 GraphicUsed by:43
Symbol 37 ShapeTweeningUsed by:43
Symbol 38 GraphicUsed by:43
Symbol 39 TextUses:2Used by:43
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:40Used by:43
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:31 33 35 36 37 38 39 41 42Used by:46
Symbol 44 MovieClipUsed by:46
Symbol 45 MovieClipUsed by:46
Symbol 46 MovieClipUses:43 44 45Used by:Timeline
Symbol 47 GraphicUsed by:Timeline
Symbol 48 GraphicUsed by:Timeline
Symbol 49 GraphicUsed by:Timeline
Symbol 50 GraphicUsed by:66 168
Symbol 51 GraphicUsed by:66 168
Symbol 52 GraphicUsed by:66
Symbol 53 GraphicUsed by:66
Symbol 54 GraphicUsed by:66
Symbol 55 GraphicUsed by:66 168
Symbol 56 GraphicUsed by:66
Symbol 57 GraphicUsed by:66
Symbol 58 GraphicUsed by:66
Symbol 59 GraphicUsed by:66
Symbol 60 GraphicUsed by:66
Symbol 61 GraphicUsed by:66
Symbol 62 GraphicUsed by:66 168
Symbol 63 GraphicUsed by:66
Symbol 64 GraphicUsed by:66
Symbol 65 GraphicUsed by:66 168
Symbol 66 MovieClipUses:50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65Used by:105  Timeline
Symbol 67 GraphicUsed by:Timeline
Symbol 68 FontUsed by:69 70 178 179 183 184 188 189 192 193 194 196 209 210
Symbol 69 TextUses:68Used by:Timeline
Symbol 70 TextUses:68Used by:Timeline
Symbol 71 FontUsed by:72 74 82 83
Symbol 72 TextUses:71Used by:75
Symbol 73 GraphicUsed by:75
Symbol 74 TextUses:71Used by:75
Symbol 75 ButtonUses:72 73 74Used by:Timeline
Symbol 76 GraphicUsed by:80 81 208
Symbol 77 GraphicUsed by:80 81 208
Symbol 78 GraphicUsed by:80 81 208
Symbol 79 GraphicUsed by:80 81 208
Symbol 80 ButtonUses:76 77 78 79Used by:84
Symbol 81 ButtonUses:76 77 78 79Used by:84
Symbol 82 TextUses:71Used by:84  Timeline
Symbol 83 TextUses:71Used by:84
Symbol 84 MovieClipUses:80 81 82 83Used by:Timeline
Symbol 85 GraphicUsed by:Timeline
Symbol 86 BitmapUsed by:87
Symbol 87 GraphicUses:86Used by:88
Symbol 88 MovieClipUses:87Used by:Timeline
Symbol 89 MovieClipUsed by:Timeline
Symbol 90 FontUsed by:91 92
Symbol 91 TextUses:90Used by:Timeline
Symbol 92 TextUses:90Used by:Timeline
Symbol 93 GraphicUsed by:94
Symbol 94 MovieClipUses:93Used by:95
Symbol 95 MovieClipUses:94Used by:103
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:103 169
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:100
Symbol 100 MovieClipUses:99Used by:103
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClipUses:101Used by:103 169
Symbol 103 MovieClipUses:95 97 100 102Used by:Timeline
Symbol 104 GraphicUsed by:105 168
Symbol 105 MovieClipUses:66 104Used by:106
Symbol 106 MovieClipUses:105Used by:168
Symbol 107 GraphicUsed by:168
Symbol 108 GraphicUsed by:168
Symbol 109 GraphicUsed by:168
Symbol 110 GraphicUsed by:168
Symbol 111 SoundUsed by:168
Symbol 112 GraphicUsed by:168
Symbol 113 GraphicUsed by:168
Symbol 114 GraphicUsed by:168
Symbol 115 GraphicUsed by:168
Symbol 116 GraphicUsed by:168
Symbol 117 GraphicUsed by:168
Symbol 118 GraphicUsed by:168
Symbol 119 GraphicUsed by:168
Symbol 120 GraphicUsed by:168
Symbol 121 GraphicUsed by:168
Symbol 122 GraphicUsed by:168
Symbol 123 GraphicUsed by:168
Symbol 124 GraphicUsed by:168
Symbol 125 GraphicUsed by:168
Symbol 126 GraphicUsed by:168
Symbol 127 GraphicUsed by:168
Symbol 128 GraphicUsed by:168
Symbol 129 GraphicUsed by:168
Symbol 130 GraphicUsed by:168
Symbol 131 GraphicUsed by:168
Symbol 132 GraphicUsed by:168
Symbol 133 GraphicUsed by:168
Symbol 134 GraphicUsed by:168
Symbol 135 GraphicUsed by:168
Symbol 136 GraphicUsed by:168
Symbol 137 GraphicUsed by:168
Symbol 138 GraphicUsed by:168
Symbol 139 GraphicUsed by:168
Symbol 140 GraphicUsed by:168
Symbol 141 GraphicUsed by:163 168
Symbol 142 GraphicUsed by:168
Symbol 143 GraphicUsed by:168
Symbol 144 GraphicUsed by:168
Symbol 145 GraphicUsed by:168
Symbol 146 SoundUsed by:168
Symbol 147 GraphicUsed by:168
Symbol 148 GraphicUsed by:168
Symbol 149 GraphicUsed by:168
Symbol 150 GraphicUsed by:163 168
Symbol 151 GraphicUsed by:168
Symbol 152 GraphicUsed by:168
Symbol 153 GraphicUsed by:163 168
Symbol 154 GraphicUsed by:163 168
Symbol 155 GraphicUsed by:163 168
Symbol 156 GraphicUsed by:168
Symbol 157 SoundUsed by:168
Symbol 158 GraphicUsed by:168
Symbol 159 GraphicUsed by:168
Symbol 160 GraphicUsed by:168
Symbol 161 GraphicUsed by:168
Symbol 162 GraphicUsed by:168
Symbol 163 MovieClipUses:150 141 153 154 155Used by:164
Symbol 164 MovieClipUses:163Used by:168
Symbol 165 GraphicUsed by:166
Symbol 166 MovieClipUses:165Used by:167
Symbol 167 MovieClipUses:166Used by:168
Symbol 168 MovieClipUses:106 104 107 108 109 110 111 112 113 114 115 116 117 118 119 65 120 121 122 123 124 125 126 127 128 129 55 130 51 131 132 133 134 135 136 137 138 139 140 62 141 142 143 144 145 146 147 148 149 150 151 50 152 153 154 155 156 157 158 159 160 161 162 164 167Used by:Timeline
Symbol 169 MovieClipUses:97 102Used by:Timeline
Symbol 170 FontUsed by:171 172 173 174
Symbol 171 EditableTextUses:170Used by:Timeline
Symbol 172 EditableTextUses:170Used by:Timeline
Symbol 173 TextUses:170Used by:Timeline
Symbol 174 TextUses:170Used by:Timeline
Symbol 175 GraphicUsed by:Timeline
Symbol 176 FontUsed by:177
Symbol 177 TextUses:176Used by:Timeline
Symbol 178 TextUses:68Used by:Timeline
Symbol 179 TextUses:68Used by:Timeline
Symbol 180 FontUsed by:181 182
Symbol 181 EditableTextUses:180Used by:Timeline
Symbol 182 EditableTextUses:180Used by:Timeline
Symbol 183 TextUses:68Used by:186
Symbol 184 TextUses:68Used by:186
Symbol 185 GraphicUsed by:186
Symbol 186 ButtonUses:183 184 185Used by:Timeline
Symbol 187 GraphicUsed by:198
Symbol 188 TextUses:68Used by:191
Symbol 189 TextUses:68Used by:191
Symbol 190 GraphicUsed by:191
Symbol 191 ButtonUses:188 189 190Used by:198
Symbol 192 TextUses:68Used by:198
Symbol 193 TextUses:68Used by:197
Symbol 194 TextUses:68Used by:197
Symbol 195 GraphicUsed by:197
Symbol 196 TextUses:68Used by:197
Symbol 197 ButtonUses:193 194 195 196Used by:198
Symbol 198 MovieClipUses:187 191 192 197Used by:Timeline
Symbol 199 GraphicUsed by:201 203
Symbol 200 GraphicUsed by:201
Symbol 201 ButtonUses:199 200Used by:204
Symbol 202 GraphicUsed by:203
Symbol 203 ButtonUses:199 202Used by:204
Symbol 204 MovieClipUses:201 203Used by:Timeline
Symbol 205 EditableTextUses:2Used by:206
Symbol 206 MovieClipUses:205Used by:207
Symbol 207 MovieClipUses:206Used by:Timeline
Symbol 208 ButtonUses:76 77 78 79Used by:Timeline
Symbol 209 TextUses:68Used by:Timeline
Symbol 210 TextUses:68Used by:Timeline

Instance Names

"restart"Frame 4Symbol 84 MovieClip
"SHADOW"Frame 4Symbol 88 MovieClip
"UNI_ROOT"Frame 4Symbol 89 MovieClip
"dude"Frame 4Symbol 168 MovieClip
"btimer"Frame 4Symbol 171 EditableText
"timer"Frame 4Symbol 172 EditableText
"vorname_txt"Frame 5Symbol 181 EditableText
"punkte_txt"Frame 5Symbol 182 EditableText
"senden_btn"Frame 5Symbol 186 Button
"login"Frame 5Symbol 198 MovieClip
"high_mc"Frame 5Symbol 204 MovieClip
"prev_mc"Frame 5Symbol 204 MovieClip
"l"Symbol 9 MovieClip Frame 1Symbol 8 MovieClip
"r"Symbol 9 MovieClip Frame 1Symbol 8 MovieClip
"punkte_txt"Symbol 26 MovieClip [newsclip] Frame 1Symbol 3 EditableText
"ver_txt"Symbol 26 MovieClip [newsclip] Frame 1Symbol 4 EditableText
"stern_mc"Symbol 26 MovieClip [newsclip] Frame 1Symbol 23 MovieClip
"name_txt"Symbol 26 MovieClip [newsclip] Frame 1Symbol 24 EditableText
"nr_txt"Symbol 26 MovieClip [newsclip] Frame 1Symbol 25 EditableText
"anim"Symbol 46 MovieClip Frame 1Symbol 43 MovieClip
"perc"Symbol 46 MovieClip Frame 1Symbol 44 MovieClip
"swfloader"Symbol 46 MovieClip Frame 1Symbol 45 MovieClip
"butVor"Symbol 204 MovieClip Frame 1Symbol 201 Button
"butZuruck"Symbol 204 MovieClip Frame 1Symbol 203 Button

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 26 as "newsclip"

Labels

"high"Frame 5

Dynamic Text Variables

_root.maxoSymbol 171 EditableText"00:00:00"
nameSymbol 181 EditableText""
_root.maxoSymbol 182 EditableText""




http://swfchan.com/5/24642/info.shtml
Created: 24/5 -2019 17:34:37 Last modified: 24/5 -2019 17:34:37 Server time: 08/05 -2024 21:42:54