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

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

tudeprinsen.swf

This is the info page for
Flash #194430

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


Text
MOR!

PAPA

send

Modtager mail

Dit navn

ActionScript [AS1/AS2]

Frame 1
background_music = new Sound(); background_music.attachSound("background_music"); background_music.start(0, 99); stop();
Frame 2
_root.crash_vehicle = false; crash.track_a = false; crash.track_b = false; crash.track_c = false; attachMovie("frame", "frame", 4500); frame._x = 0; frame._y = 0; frame._width = 480; frame._height = 660; _root.attachMovie("get_ready", "get_ready", 4998); get_ready._x = 180; get_ready._y = 350; _root.attachMovie("scoreboard", "scoreboard", 4999); scoreboard._x = 396; scoreboard._y = 432; track_layout = new Array(1002, 1001, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 2001, 2101, 2102, 2103, 2201, 1001, 1002, 1003, 3001, 3101, 3102, 3103, 3201, 1005, 1006, 1003, 1004, 3001, 3102, 3201, 2001, 2103, 2201, 1005, 1010, 3001, 3101, 3102, 3201, 3001, 3101, 3201, 2001, 2201, 3001, 3101, 3201, 1007); crash = new Array(); crash.track_a = false; crash.track_b = false; crash.track_c = false; speed = 1; score = 0; track._x = 0; track._y = 0; car._x = 180; car._y = 550; module_depth = 1000; module_counter = 0; last_module = "track_c"; lanes_occupied = new Array(false, false, false, false); vehicle_depth = 2000; vehicles_from_top = new Array("standard", "ambulance", "stationcar", "stationcar_2", "wagon", "standard_2"); vehicles_from_bottom = new Array("bus", "barbie", "barbie_car_2", "standard_3", "standard_4", "stationcar_3", "stationcar_4", "truck", "wagon_2"); lane_coordinates = new Array(110, 156, 202, 248); object_depth = 1500; objects = new Array("flowers", "kleenex", "smokes", "wine"); active_objects = new Array(); talking_heads = new Array(); ticks_left_to_play = 600; total_track = 211 * track_layout.length; _root.attachMovie("storck", "my_storck", 6000); storck = my_storck; storck._y = 120; storck_position = ticks_left_to_play; insert_object = function () { lane = random(4); if (((lane == 0) || (lane == 3)) && (last_called_module < 2000)) { object_name = "object_" + object_depth; if (track.attachMovie(objects[random(4)], object_name, object_depth)) { mc = track[object_name]; mc._x = lane_coordinates[lane]; mc._y = 0; active_objects[object_depth] = object_name; } object_depth++; } }; insert_talking_head = function () { if (_root.talking_heads.length > 0) { head = _root.talking_heads.pop(); _root.talking_heads.splice(0); _root.attachMovie(head, "instance", 5000); mc = instance; mc._x = 375; mc._y = 250; mc._xscale = 150; mc._yscale = 150; _root.ticks_since_last_head = 0; _root.is_mary_mad = false; } _root.ticks_since_last_head++; if (_root.ticks_since_last_head > 200) { _root.talking_heads.push("mary_sad"); } }; insert_vehicle = function () { lane = random(4); if (lanes_occupied[lane] == false) { if ((lane == 0) || (lane == 3)) { if (random(2) == 0) { vehicle = vehicles_from_bottom[random(9)]; vehicle_start = "bottom"; } else { vehicle = vehicles_from_top[random(6)]; vehicle_start = "top"; } } else { vehicle = vehicles_from_top[random(6)]; vehicle_start = "top"; } if (((vehicle_start == "top") && ((lane == 1) || (lane == 2))) && ((last_called_module > 2000) || (next_to_last_called_module > 2000))) { } else { vehicle_name = "vehicle_" + vehicle_depth; if (attachMovie(vehicle, vehicle_name, vehicle_depth, {lane:lane})) { lanes_occupied[lane] = true; } mc = eval (vehicle_name); mc._x = (lane_coordinates[lane] - 10) + random(20); if (vehicle_start == "top") { mc._y = 100; } else { mc._y = 600; } vehicle_depth++; } } };
Instance of Symbol 252 MovieClip [car] "car" in Frame 2
onClipEvent (enterFrame) { if (Key.isDown(37)) { this._x = (this._x - 5) - (_root.speed / 4); } if (Key.isDown(39)) { this._x = (this._x + 5) + (_root.speed / 4); } if (Key.isDown(38)) { if (this._y > 25) { this._y = this._y - (_root.speed * 0.5); } if (_root.speed < 15) { _root.speed = _root.speed + 0.75; } } if (Key.isDown(40)) { if (this._y < 590) { this._y = this._y + (_root.speed * 1.5); } if (_root.speed > 5) { _root.speed - 0.75; } } }
Frame 3
ticks_left_to_play--; if (ticks_left_to_play < storck_position) { storck_position = ticks_left_to_play; } storck._x = ((600 - storck_position) * 485) / 600; if (ticks_left_to_play < 0) { gotoAndPlay (9); } if (total_track < 0) { gotoAndStop (6); stop(); } if (crash.track_a == true) { if (crash.track_b == true) { if (crash.track_c == true) { gotoAndPlay (9); } } } if (speed > 15) { speed = speed - 0.15; } if (_root.crash_vehicle == true) { gotoAndPlay (9); } ticks_since_last_object++; if (ticks_since_last_object > 20) { ticks_since_last_object = 0; insert_object(); } ticks_since_last_vehicle++; if (ticks_since_last_vehicle > 5) { ticks_since_last_vehicle = 0; insert_vehicle(); } insert_talking_head(); track._y = track._y + speed; total_track = total_track - speed; score++; if (track._y > 186) { for (j in active_objects) { mc = track["object_" + j]; mc._y = mc._y + 212; if (mc._y > 1000) { mc.removeMovieClip(); } } track._y = -25; if ((!track_layout[module_counter]) > 0) { trace("completed"); } else { next_module = "track_" + track_layout[module_counter]; mc = track[last_module]; mc.removeMovieClip(); track.attachMovie(next_module, last_module, module_depth); module_counter++; module_depth++; _root.next_to_last_called_module = _root.last_called_module; _root.last_called_module = track_layout[module_counter]; } if (last_module == "track_c") { first_module = "track_c"; middle_module = "track_a"; last_module = "track_b"; track.track_a._y = 211; track.track_b._y = 422; track.track_c._y = 0; } else if (last_module == "track_b") { first_module = "track_b"; middle_module = "track_c"; last_module = "track_a"; track.track_a._y = 422; track.track_b._y = 0; track.track_c._y = 211; } else if (last_module == "track_a") { first_module = "track_a"; middle_module = "track_b"; last_module = "track_c"; track.track_a._y = 0; track.track_b._y = 211; track.track_c._y = 422; } track.track_a._yscale = 63; track.track_a._xscale = 63; track.track_b._yscale = 63; track.track_b._xscale = 63; track.track_c._yscale = 63; track.track_c._xscale = 63; track.track_a._x = 29; track.track_b._x = 29; track.track_c._x = 29; }
Frame 4
gotoAndPlay (3);
Frame 5
stopAllSounds(); for (name in _root) { if (typeof(_root[name]) == "movieclip") { unloadMovie (name); } } delete crash; delete crash_vehicle;
Frame 6
score = (score + (ticks_left_to_play * 5)) + 500; for (name in _root) { if (typeof(_root[name]) == "movieclip") { if (name.substr(0, 7) == "vehicle") { unloadMovie (name); } } } unloadMovie ("storck"); unloadMovie ("my_storck"); unloadMovie ("scoreboard"); unloadMovie ("get_ready"); unloadMovie ("frame"); unloadMovie ("instance"); i = 0; while (i < 20) { attachMovie("hearts", "heart_" + i, i + 1000); i++; } if (score > score_best) { score_best = score; } if (score_best > score_to_beat) { score_to_beat = 0; } if (score_to_beat > 0) { attachMovie("winner_challenged", "winner", 999); } else { attachMovie("winner", "winner", 999); }
Frame 8
gotoAndPlay (7);
Frame 9
stopAllSounds(); for (name in _root) { if (typeof(_root[name]) == "movieclip") { unloadMovie (name); } } s = new Sound(); s.attachSound("slut_prut"); s.start(); s.onSoundComplete = function () { background_music.start(0, 99); }; delete crash; delete crash_vehicle;
Frame 10
if (score > score_best) { score_best = score; } if (score_best > score_to_beat) { score_to_beat = 0; } if (score_to_beat > 0) { attachMovie("looser_challenged", "looser", 1000); } else { attachMovie("looser", "looser", 1000); } stop();
Frame 11
loadVariables ((((("tudeprinsen.php?score=" + score_best) + "&email=") + recipient_email) + "&challenger=") + challenger_name, "_root");
Instance of Symbol 14 MovieClip in Symbol 15 MovieClip [track_2201] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip [track_2103] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 19 MovieClip in Symbol 23 MovieClip [track_2102] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 19 MovieClip in Symbol 26 MovieClip [track_2101] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 28 MovieClip in Symbol 29 MovieClip [track_2001] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 33 MovieClip in Symbol 34 MovieClip [track_3103] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 33 MovieClip in Symbol 37 MovieClip [track_3102] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 33 MovieClip in Symbol 40 MovieClip [track_3101] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 44 MovieClip in Symbol 45 MovieClip [track_3201] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 49 MovieClip in Symbol 50 MovieClip [track_3001] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 54 MovieClip in Symbol 55 MovieClip [track_1002] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 54 MovieClip in Symbol 58 MovieClip [track_1010] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 54 MovieClip in Symbol 61 MovieClip [track_1009] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 54 MovieClip in Symbol 64 MovieClip [track_1008] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 54 MovieClip in Symbol 67 MovieClip [track_1007] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 54 MovieClip in Symbol 70 MovieClip [track_1006] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 54 MovieClip in Symbol 73 MovieClip [track_1005] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 54 MovieClip in Symbol 76 MovieClip [track_1004] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 54 MovieClip in Symbol 79 MovieClip [track_1003] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 54 MovieClip in Symbol 82 MovieClip [track_1001] Frame 1
onClipEvent (enterFrame) { if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash[_parent._name] = false; } else { _root.crash[_parent._name] = true; } }
Instance of Symbol 84 MovieClip in Symbol 85 MovieClip [barbie_car_2] Frame 1
onClipEvent (enterFrame) { if (this._y < -500) { _root.lanes_occupied[_parent.lane] = false; unloadMovie (_parent); } if ((Math.abs(_parent._x - _root.car._x) < 100) and (Math.abs((1008 + this._y) - (_root.car._y + 336)) < 200)) { if (_root.speed > 5) { _root.speed--; } if (_root.is_mary_mad != true) { _root.talking_heads.push("barbie_face"); } } this._y = this._y - 5; if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } }
Instance of Symbol 87 MovieClip in Symbol 88 MovieClip [barbie] Frame 1
onClipEvent (enterFrame) { if (this._y < -500) { _root.lanes_occupied[_parent.lane] = false; unloadMovie (_parent); } if ((Math.abs(_parent._x - _root.car._x) < 100) and (Math.abs((1008 + this._y) - (_root.car._y + 336)) < 200)) { if (_root.speed > 5) { _root.speed--; } if (_root.is_mary_mad != true) { _root.talking_heads.push("mary_mad"); } } this._y = this._y - 5; if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } }
Instance of Symbol 90 MovieClip in Symbol 91 MovieClip [stationcar_4] Frame 1
onClipEvent (enterFrame) { if (this._y < -500) { _root.lanes_occupied[_parent.lane] = false; unloadMovie (_parent); } this._y = this._y - 6; if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } }
Instance of Symbol 93 MovieClip in Symbol 94 MovieClip [wagon_2] Frame 1
onClipEvent (enterFrame) { if (this._y < -500) { _root.lanes_occupied[_parent.lane] = false; unloadMovie (_parent); } this._y = this._y - 6; if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } }
Instance of Symbol 96 MovieClip in Symbol 97 MovieClip [truck] Frame 1
onClipEvent (enterFrame) { if (this._y < -500) { _root.lanes_occupied[_parent.lane] = false; unloadMovie (_parent); } this._y = this._y - 6; if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } }
Instance of Symbol 99 MovieClip in Symbol 100 MovieClip [standard_4] Frame 1
onClipEvent (enterFrame) { if (this._y < -500) { _root.lanes_occupied[_parent.lane] = false; unloadMovie (_parent); } this._y = this._y - 6; if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } }
Instance of Symbol 102 MovieClip in Symbol 103 MovieClip [stationcar_3] Frame 1
onClipEvent (enterFrame) { if (this._y < -500) { _root.lanes_occupied[_parent.lane] = false; unloadMovie (_parent); } this._y = this._y - 6; if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } }
Instance of Symbol 105 MovieClip in Symbol 106 MovieClip [standard_3] Frame 1
onClipEvent (enterFrame) { if (this._y < -500) { _root.lanes_occupied[_parent.lane] = false; unloadMovie (_parent); } this._y = this._y - 6; if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } }
Instance of Symbol 108 MovieClip in Symbol 109 MovieClip [bus] Frame 1
onClipEvent (enterFrame) { if (this._y < -500) { _root.lanes_occupied[_parent.lane] = false; unloadMovie (_parent); } this._y = this._y - 6; if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } }
Instance of Symbol 111 MovieClip in Symbol 112 MovieClip [ambulance] Frame 1
onClipEvent (enterFrame) { if (this._y > 600) { _root.lanes_occupied[_parent.lane] = false; unloadMovie (_parent); } this._y = this._y + (_root.speed * 1.2); if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } }
Instance of Symbol 114 MovieClip in Symbol 115 MovieClip [standard_2] Frame 1
onClipEvent (enterFrame) { if (this._y > 600) { _root.lanes_occupied[_parent.lane] = false; unloadMovie (_parent); } this._y = this._y + (_root.speed * 1.2); if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 10, _root.car._y + 25, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 10, _root.car._y - 25, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 10, _root.car._y + 25, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 10, _root.car._y - 25, true)) { _root.crash_vehicle = true; } }
Instance of Symbol 117 MovieClip in Symbol 118 MovieClip [stationcar_2] Frame 1
onClipEvent (enterFrame) { if (this._y > 600) { _root.lanes_occupied[_parent.lane] = false; unloadMovie (_parent); } this._y = this._y + (_root.speed * 1.2); if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } }
Instance of Symbol 120 MovieClip in Symbol 121 MovieClip [wagon] Frame 1
onClipEvent (enterFrame) { if (this._y < -500) { _root.lanes_occupied[_parent.lane] = false; unloadMovie (_parent); } this._y = this._y - 6; if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } }
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [stationcar] Frame 1
onClipEvent (enterFrame) { if (this._y > 600) { _root.lanes_occupied[_parent.lane] = false; unloadMovie (_parent); } this._y = this._y + (_root.speed * 1.2); if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } }
Instance of Symbol 126 MovieClip in Symbol 127 MovieClip [standard] Frame 1
onClipEvent (enterFrame) { if (this._y > 600) { _root.lanes_occupied[_parent.lane] = false; unloadMovie (_parent); } this._y = this._y + (_root.speed * 1.2); if (this.hittest(_root.car._x, _root.car._y, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x - 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y + 15, true)) { _root.crash_vehicle = true; } if (this.hittest(_root.car._x + 8, _root.car._y - 15, true)) { _root.crash_vehicle = true; } }
Symbol 130 MovieClip [kleenex] Frame 1
onEnterFrame = function () { if (this.hittest(_root.car._x, _root.car._y, true)) { hit = true; } if (this.hittest(_root.car._x - 10, _root.car._y + 20, true)) { hit = true; } if (this.hittest(_root.car._x - 10, _root.car._y - 20, true)) { hit = true; } if (this.hittest(_root.car._x + 10, _root.car._y + 20, true)) { hit = true; } if (this.hittest(_root.car._x + 10, _root.car._y - 20, true)) { hit = true; } if (hit == true) { _root.score = _root.score + 50; _root.speed = 20; index = substring(_parent._name, 8, 4); delete _root.active_objects[index]; unloadMovie (this); } };
Symbol 133 MovieClip [smokes] Frame 1
onEnterFrame = function () { if (this.hittest(_root.car._x, _root.car._y, true)) { hit = true; } if (this.hittest(_root.car._x - 10, _root.car._y + 25, true)) { hit = true; } if (this.hittest(_root.car._x - 10, _root.car._y - 25, true)) { hit = true; } if (this.hittest(_root.car._x + 10, _root.car._y + 25, true)) { hit = true; } if (this.hittest(_root.car._x + 10, _root.car._y - 25, true)) { hit = true; } if (hit == true) { _root.score = _root.score + 50; _root.ticks_left_to_play = _root.ticks_left_to_play + 25; index = substring(_parent._name, 8, 4); _root.talking_heads.push("mama"); delete _root.active_objects[index]; unloadMovie (this); } };
Symbol 136 MovieClip [wine] Frame 1
onEnterFrame = function () { if (this.hittest(_root.car._x, _root.car._y, true)) { hit = true; } if (this.hittest(_root.car._x - 10, _root.car._y + 25, true)) { hit = true; } if (this.hittest(_root.car._x - 10, _root.car._y - 25, true)) { hit = true; } if (this.hittest(_root.car._x + 10, _root.car._y + 25, true)) { hit = true; } if (this.hittest(_root.car._x + 10, _root.car._y - 25, true)) { hit = true; } if (hit == true) { _root.score = _root.score + 50; _root.ticks_left_to_play = _root.ticks_left_to_play + 25; index = substring(_parent._name, 8, 4); _root.talking_heads.push("papa"); delete _root.active_objects[index]; unloadMovie (this); } };
Symbol 139 MovieClip [flowers] Frame 1
onEnterFrame = function () { if (this.hittest(_root.car._x, _root.car._y, true)) { hit = true; } if (this.hittest(_root.car._x - 10, _root.car._y + 25, true)) { hit = true; } if (this.hittest(_root.car._x - 10, _root.car._y - 25, true)) { hit = true; } if (this.hittest(_root.car._x + 10, _root.car._y + 25, true)) { hit = true; } if (this.hittest(_root.car._x + 10, _root.car._y - 25, true)) { hit = true; } if (hit == true) { _root.score = _root.score + 10; _root.ticks_left_to_play = _root.ticks_left_to_play + 100; index = substring(_parent._name, 8, 4); delete _root.active_objects[index]; unloadMovie (this); } };
Symbol 144 MovieClip Frame 10
stop();
Symbol 147 MovieClip [mary_sad] Frame 1
ticks_counter = 0; mary_sad_voice = new Sound(); if (random(2) == 0) { mary_sad_voice.attachSound("mary_sad_1"); } else { mary_sad_voice.attachSound("mary_sad_2"); } mary_sad_voice.start();
Symbol 147 MovieClip [mary_sad] Frame 8
ticks_counter = ticks_counter + 8; if (ticks_counter > 100) { mary_sad_voice.stop("mary_sad_1"); mary_sad_voice.stop("mary_sad_2"); unloadMovie (this); } gotoAndPlay (2);
Symbol 153 MovieClip [barbie_face] Frame 1
_root.is_mary_mad = true; ticks_counter = 0; if (random(20) < 10) { frede_voice = new Sound(); frede_voice.attachSound("frede_1"); frede_voice.start(); } else { barbie_voice = new Sound(); barbie_voice.attachSound("barbie_1"); barbie_voice.start(); }
Symbol 153 MovieClip [barbie_face] Frame 14
ticks_counter = ticks_counter + 10; if (ticks_counter > 100) { mama_voice.stop("mama_1"); unloadMovie (this); } gotoAndPlay (2);
Symbol 163 MovieClip Frame 10
stop();
Symbol 166 MovieClip [mama] Frame 1
ticks_counter = 0; mama_voice = new Sound(); mama_voice.attachSound("mama_1"); mama_voice.start();
Symbol 166 MovieClip [mama] Frame 8
ticks_counter = ticks_counter + 5; if (ticks_counter > 100) { mama_voice.stop("mama_1"); unloadMovie (this); } gotoAndPlay (2);
Symbol 175 MovieClip Frame 10
stop();
Symbol 178 MovieClip [papa] Frame 1
ticks_counter = 0; papa_voice = new Sound(); papa_voice.attachSound("papa_1"); papa_voice.start();
Symbol 178 MovieClip [papa] Frame 8
ticks_counter = ticks_counter + 4; if (ticks_counter > 100) { papa_voice.stop("papa_1"); papa_voice.stop("papa_2"); unloadMovie (this); } gotoAndPlay (2);
Symbol 182 MovieClip [mary_mad] Frame 1
_root.is_mary_mad = true; ticks_counter = 0; mary_voice = new Sound(); if (random(2) == 0) { mary_voice.attachSound("mary_mad_1"); } else { mary_voice.attachSound("mary_mad_2"); } mary_voice.start();
Symbol 182 MovieClip [mary_mad] Frame 8
ticks_counter = ticks_counter + 5; if (ticks_counter > 100) { mary_voice.stop("mary_mad_1"); mary_voice.stop("mary_mad_2"); unloadMovie (this); } gotoAndPlay (2);
Symbol 190 MovieClip [storck] Frame 1
gotoAndPlay (1);
Symbol 192 Button [netstationen_button]
on (release) { getURL ("http://www.boomnet.dk", "_blank"); }
Symbol 193 Button [netstationen_button]
on (release) { getURL ("http://www.n.dk", "_blank"); }
Symbol 207 MovieClip [hearts] Frame 1
ticks = 0; base_x = random(480); this._y = -50; dy = 1 + (random(15) / 5); delay = random(50);
Symbol 207 MovieClip [hearts] Frame 2
ticks++;
Symbol 207 MovieClip [hearts] Frame 3
if (ticks < delay) { gotoAndPlay (2); }
Symbol 207 MovieClip [hearts] Frame 4
this._x = base_x + (20 * Math.sin(ticks / 50)); this._y = this._y + dy;
Symbol 207 MovieClip [hearts] Frame 5
ticks++; if (this._y < 690) { gotoAndPlay (4); }
Symbol 212 MovieClip [get_ready] Frame 1
ticks++;
Symbol 212 MovieClip [get_ready] Frame 2
if (ticks < 40) { gotoAndPlay (1); }
Symbol 212 MovieClip [get_ready] Frame 3
ticks++;
Symbol 212 MovieClip [get_ready] Frame 4
if (ticks < 60) { gotoAndPlay (3); }
Symbol 212 MovieClip [get_ready] Frame 5
ticks++;
Symbol 212 MovieClip [get_ready] Frame 6
if (ticks < 80) { gotoAndPlay (5); }
Symbol 212 MovieClip [get_ready] Frame 7
ticks++;
Symbol 212 MovieClip [get_ready] Frame 8
if (ticks < 95) { gotoAndPlay (7); } else { unloadMovie (this); }
Symbol 217 Button
on (release) { unloadMovie (this); _root.gotoAndPlay(2); }
Symbol 222 Button [button_send]
on (release) { _root.gotoAndPlay(11); }
Symbol 241 Button
on (release) { unloadMovie (this); for (name in _root) { if (typeof(_root[name]) == "movieclip") { if (name.substr(0, 5) == "heart") { unloadMovie (_root[name]); } } } _root.gotoAndPlay(2); }
Symbol 253 MovieClip [track] Frame 1
attachMovie("track_1001", "track_a", 11); attachMovie("track_1002", "track_b", 12); attachMovie("track_1003", "track_c", 13); track_a._width = 302; track_a._height = 212; track_a._x = 29; track_a._y = 0; track_b._width = 302; track_b._height = 212; track_b._x = 29; track_b._y = 211; track_c._width = 302; track_c._height = 212; track_c._x = 29; track_c._y = 422; stop();
Symbol 256 Button
on (release) { gotoAndPlay (2); }
Symbol 257 Button
on (release) { gotoAndPlay (2); }

Library Items

Symbol 1 Sound [slut_prut]
Symbol 2 Sound [papa_1]
Symbol 3 Sound [mary_sad_2]
Symbol 4 Sound [mary_sad_1]
Symbol 5 Sound [mary_mad_2]
Symbol 6 Sound [mary_mad_1]
Symbol 7 Sound [mama_1]
Symbol 8 Sound [frede_1]
Symbol 9 Sound [barbie_1]
Symbol 10 Sound [background_music]
Symbol 11 BitmapUsed by:12
Symbol 12 GraphicUses:11Used by:15
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:15
Symbol 15 MovieClip [track_2201]Uses:12 14
Symbol 16 BitmapUsed by:17
Symbol 17 GraphicUses:16Used by:20
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClipUses:18Used by:20 23 26
Symbol 20 MovieClip [track_2103]Uses:17 19
Symbol 21 BitmapUsed by:22
Symbol 22 GraphicUses:21Used by:23
Symbol 23 MovieClip [track_2102]Uses:22 19
Symbol 24 BitmapUsed by:25
Symbol 25 GraphicUses:24Used by:26 29
Symbol 26 MovieClip [track_2101]Uses:25 19
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:29
Symbol 29 MovieClip [track_2001]Uses:25 28
Symbol 30 BitmapUsed by:31
Symbol 31 GraphicUses:30Used by:34
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:32Used by:34 37 40
Symbol 34 MovieClip [track_3103]Uses:31 33
Symbol 35 BitmapUsed by:36
Symbol 36 GraphicUses:35Used by:37
Symbol 37 MovieClip [track_3102]Uses:36 33
Symbol 38 BitmapUsed by:39
Symbol 39 GraphicUses:38Used by:40
Symbol 40 MovieClip [track_3101]Uses:39 33
Symbol 41 BitmapUsed by:42
Symbol 42 GraphicUses:41Used by:45
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClipUses:43Used by:45
Symbol 45 MovieClip [track_3201]Uses:42 44
Symbol 46 BitmapUsed by:47
Symbol 47 GraphicUses:46Used by:50
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:48Used by:50
Symbol 50 MovieClip [track_3001]Uses:47 49
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:55
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:55 58 61 64 67 70 73 76 79 82
Symbol 55 MovieClip [track_1002]Uses:52 54
Symbol 56 BitmapUsed by:57
Symbol 57 GraphicUses:56Used by:58
Symbol 58 MovieClip [track_1010]Uses:57 54
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:61
Symbol 61 MovieClip [track_1009]Uses:60 54
Symbol 62 BitmapUsed by:63
Symbol 63 GraphicUses:62Used by:64
Symbol 64 MovieClip [track_1008]Uses:63 54
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:67
Symbol 67 MovieClip [track_1007]Uses:66 54
Symbol 68 BitmapUsed by:69
Symbol 69 GraphicUses:68Used by:70
Symbol 70 MovieClip [track_1006]Uses:69 54
Symbol 71 BitmapUsed by:72
Symbol 72 GraphicUses:71Used by:73
Symbol 73 MovieClip [track_1005]Uses:72 54
Symbol 74 BitmapUsed by:75
Symbol 75 GraphicUses:74Used by:76
Symbol 76 MovieClip [track_1004]Uses:75 54
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:79
Symbol 79 MovieClip [track_1003]Uses:78 54
Symbol 80 BitmapUsed by:81
Symbol 81 GraphicUses:80Used by:82
Symbol 82 MovieClip [track_1001]Uses:81 54
Symbol 83 GraphicUsed by:84
Symbol 84 MovieClipUses:83Used by:85
Symbol 85 MovieClip [barbie_car_2]Uses:84
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:88
Symbol 88 MovieClip [barbie]Uses:87
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClipUses:89Used by:91
Symbol 91 MovieClip [stationcar_4]Uses:90
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:94
Symbol 94 MovieClip [wagon_2]Uses:93
Symbol 95 GraphicUsed by:96
Symbol 96 MovieClipUses:95Used by:97
Symbol 97 MovieClip [truck]Uses:96
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:100
Symbol 100 MovieClip [standard_4]Uses:99
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClipUses:101Used by:103
Symbol 103 MovieClip [stationcar_3]Uses:102
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:104Used by:106
Symbol 106 MovieClip [standard_3]Uses:105
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClipUses:107Used by:109
Symbol 109 MovieClip [bus]Uses:108
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:110Used by:112
Symbol 112 MovieClip [ambulance]Uses:111
Symbol 113 GraphicUsed by:114
Symbol 114 MovieClipUses:113Used by:115
Symbol 115 MovieClip [standard_2]Uses:114
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClipUses:116Used by:118
Symbol 118 MovieClip [stationcar_2]Uses:117
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:119Used by:121
Symbol 121 MovieClip [wagon]Uses:120
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:122Used by:124
Symbol 124 MovieClip [stationcar]Uses:123
Symbol 125 GraphicUsed by:126
Symbol 126 MovieClipUses:125Used by:127
Symbol 127 MovieClip [standard]Uses:126
Symbol 128 GraphicUsed by:129
Symbol 129 MovieClipUses:128Used by:130
Symbol 130 MovieClip [kleenex]Uses:129
Symbol 131 GraphicUsed by:132
Symbol 132 MovieClipUses:131Used by:133
Symbol 133 MovieClip [smokes]Uses:132
Symbol 134 GraphicUsed by:135
Symbol 135 MovieClipUses:134Used by:136
Symbol 136 MovieClip [wine]Uses:135
Symbol 137 GraphicUsed by:138
Symbol 138 MovieClipUses:137Used by:139
Symbol 139 MovieClip [flowers]Uses:138
Symbol 140 GraphicUsed by:147
Symbol 141 GraphicUsed by:144
Symbol 142 GraphicUsed by:144
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClipUses:141 142 143Used by:147 182
Symbol 145 GraphicUsed by:147
Symbol 146 GraphicUsed by:147
Symbol 147 MovieClip [mary_sad]Uses:140 144 145 146
Symbol 148 GraphicUsed by:153
Symbol 149 GraphicUsed by:153
Symbol 150 GraphicUsed by:153
Symbol 151 GraphicUsed by:153
Symbol 152 GraphicUsed by:153
Symbol 153 MovieClip [barbie_face]Uses:148 149 150 151 152
Symbol 154 GraphicUsed by:166
Symbol 155 GraphicUsed by:163
Symbol 156 FontUsed by:157 169
Symbol 157 TextUses:156Used by:163
Symbol 158 GraphicUsed by:163
Symbol 159 GraphicUsed by:163
Symbol 160 GraphicUsed by:163
Symbol 161 GraphicUsed by:163
Symbol 162 GraphicUsed by:163
Symbol 163 MovieClipUses:155 157 158 159 160 161 162Used by:166
Symbol 164 GraphicUsed by:166
Symbol 165 GraphicUsed by:166
Symbol 166 MovieClip [mama]Uses:154 163 164 165
Symbol 167 GraphicUsed by:178
Symbol 168 GraphicUsed by:175
Symbol 169 TextUses:156Used by:175
Symbol 170 GraphicUsed by:175
Symbol 171 GraphicUsed by:175
Symbol 172 GraphicUsed by:175
Symbol 173 GraphicUsed by:175
Symbol 174 GraphicUsed by:175
Symbol 175 MovieClipUses:168 169 170 171 172 173 174Used by:178
Symbol 176 GraphicUsed by:178
Symbol 177 GraphicUsed by:178
Symbol 178 MovieClip [papa]Uses:167 175 176 177
Symbol 179 GraphicUsed by:182
Symbol 180 GraphicUsed by:182
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClip [mary_mad]Uses:179 144 180 181
Symbol 183 GraphicUsed by:190
Symbol 184 GraphicUsed by:190
Symbol 185 GraphicUsed by:190
Symbol 186 GraphicUsed by:190
Symbol 187 GraphicUsed by:190
Symbol 188 GraphicUsed by:190
Symbol 189 GraphicUsed by:190
Symbol 190 MovieClip [storck]Uses:183 184 185 186 187 188 189
Symbol 191 GraphicUsed by:192 193 250
Symbol 192 Button [netstationen_button]Uses:191Used by:201
Symbol 193 Button [netstationen_button]Uses:191Used by:201
Symbol 194 GraphicUsed by:201
Symbol 195 GraphicUsed by:201
Symbol 196 BitmapUsed by:198
Symbol 197 BitmapUsed by:198
Symbol 198 GraphicUses:196 197Used by:201
Symbol 199 BitmapUsed by:200
Symbol 200 GraphicUses:199Used by:201
Symbol 201 MovieClip [frame]Uses:194 195 198 193 192 200
Symbol 202 FontUsed by:203
Symbol 203 EditableTextUses:202Used by:204
Symbol 204 MovieClip [scoreboard]Uses:203
Symbol 205 Graphic [heart]Used by:206 207
Symbol 206 MovieClip [heart]Uses:205
Symbol 207 MovieClip [hearts]Uses:205
Symbol 208 GraphicUsed by:212
Symbol 209 GraphicUsed by:212
Symbol 210 GraphicUsed by:212
Symbol 211 GraphicUsed by:212
Symbol 212 MovieClip [get_ready]Uses:208 209 210 211
Symbol 213 BitmapUsed by:214
Symbol 214 GraphicUses:213Used by:232
Symbol 215 GraphicUsed by:217 241 256 257
Symbol 216 GraphicUsed by:217 241 256 257
Symbol 217 ButtonUses:215 216Used by:232 237
Symbol 218 GraphicUsed by:222 238
Symbol 219 FontUsed by:220
Symbol 220 TextUses:219Used by:222 238
Symbol 221 GraphicUsed by:222 238
Symbol 222 Button [button_send]Uses:218 220 221Used by:232 237 244 249
Symbol 223 GraphicUsed by:227
Symbol 224 FontUsed by:225 226
Symbol 225 EditableTextUses:224Used by:227
Symbol 226 EditableTextUses:224Used by:227
Symbol 227 MovieClipUses:223 225 226Used by:232 237 244 249
Symbol 228 GraphicUsed by:232 237
Symbol 229 FontUsed by:230 231 235 236 242 243 247 248
Symbol 230 EditableTextUses:229Used by:232
Symbol 231 EditableTextUses:229Used by:232
Symbol 232 MovieClip [looser_challenged]Uses:214 217 222 227 228 230 231
Symbol 233 BitmapUsed by:234
Symbol 234 GraphicUses:233Used by:237
Symbol 235 EditableTextUses:229Used by:237
Symbol 236 EditableTextUses:229Used by:237
Symbol 237 MovieClip [looser]Uses:234 227 217 222 228 235 236
Symbol 238 Button [button_send]Uses:218 220 221
Symbol 239 BitmapUsed by:240
Symbol 240 GraphicUses:239Used by:244
Symbol 241 ButtonUses:215 216Used by:244 249
Symbol 242 EditableTextUses:229Used by:244
Symbol 243 EditableTextUses:229Used by:244
Symbol 244 MovieClip [winner_challenged]Uses:240 241 222 242 243 227
Symbol 245 BitmapUsed by:246
Symbol 246 GraphicUses:245Used by:249
Symbol 247 EditableTextUses:229Used by:249
Symbol 248 EditableTextUses:229Used by:249
Symbol 249 MovieClip [winner]Uses:246 241 222 247 248 227
Symbol 250 Button [netstationen_button]Uses:191
Symbol 251 GraphicUsed by:252
Symbol 252 MovieClip [car]Uses:251Used by:Timeline
Symbol 253 MovieClip [track]Used by:Timeline
Symbol 254 BitmapUsed by:255
Symbol 255 GraphicUses:254Used by:Timeline
Symbol 256 ButtonUses:215 216Used by:Timeline
Symbol 257 ButtonUses:215 216Used by:Timeline

Instance Names

"button_start_frame1"Frame 1Symbol 256 Button
"track"Frame 2Symbol 253 MovieClip [track]
"car"Frame 2Symbol 252 MovieClip [car]
"netstationen"Symbol 201 MovieClip [frame] Frame 1Symbol 193 Button [netstationen_button]
"boomnet"Symbol 201 MovieClip [frame] Frame 1Symbol 192 Button [netstationen_button]

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "slut_prut"
ExportAssets (56)Timeline Frame 1Symbol 2 as "papa_1"
ExportAssets (56)Timeline Frame 1Symbol 3 as "mary_sad_2"
ExportAssets (56)Timeline Frame 1Symbol 4 as "mary_sad_1"
ExportAssets (56)Timeline Frame 1Symbol 5 as "mary_mad_2"
ExportAssets (56)Timeline Frame 1Symbol 6 as "mary_mad_1"
ExportAssets (56)Timeline Frame 1Symbol 7 as "mama_1"
ExportAssets (56)Timeline Frame 1Symbol 8 as "frede_1"
ExportAssets (56)Timeline Frame 1Symbol 9 as "barbie_1"
ExportAssets (56)Timeline Frame 1Symbol 10 as "background_music"
ExportAssets (56)Timeline Frame 1Symbol 15 as "track_2201"
ExportAssets (56)Timeline Frame 1Symbol 20 as "track_2103"
ExportAssets (56)Timeline Frame 1Symbol 23 as "track_2102"
ExportAssets (56)Timeline Frame 1Symbol 26 as "track_2101"
ExportAssets (56)Timeline Frame 1Symbol 29 as "track_2001"
ExportAssets (56)Timeline Frame 1Symbol 34 as "track_3103"
ExportAssets (56)Timeline Frame 1Symbol 37 as "track_3102"
ExportAssets (56)Timeline Frame 1Symbol 40 as "track_3101"
ExportAssets (56)Timeline Frame 1Symbol 45 as "track_3201"
ExportAssets (56)Timeline Frame 1Symbol 50 as "track_3001"
ExportAssets (56)Timeline Frame 1Symbol 55 as "track_1002"
ExportAssets (56)Timeline Frame 1Symbol 58 as "track_1010"
ExportAssets (56)Timeline Frame 1Symbol 61 as "track_1009"
ExportAssets (56)Timeline Frame 1Symbol 64 as "track_1008"
ExportAssets (56)Timeline Frame 1Symbol 67 as "track_1007"
ExportAssets (56)Timeline Frame 1Symbol 70 as "track_1006"
ExportAssets (56)Timeline Frame 1Symbol 73 as "track_1005"
ExportAssets (56)Timeline Frame 1Symbol 76 as "track_1004"
ExportAssets (56)Timeline Frame 1Symbol 79 as "track_1003"
ExportAssets (56)Timeline Frame 1Symbol 82 as "track_1001"
ExportAssets (56)Timeline Frame 1Symbol 85 as "barbie_car_2"
ExportAssets (56)Timeline Frame 1Symbol 88 as "barbie"
ExportAssets (56)Timeline Frame 1Symbol 91 as "stationcar_4"
ExportAssets (56)Timeline Frame 1Symbol 94 as "wagon_2"
ExportAssets (56)Timeline Frame 1Symbol 97 as "truck"
ExportAssets (56)Timeline Frame 1Symbol 100 as "standard_4"
ExportAssets (56)Timeline Frame 1Symbol 103 as "stationcar_3"
ExportAssets (56)Timeline Frame 1Symbol 106 as "standard_3"
ExportAssets (56)Timeline Frame 1Symbol 109 as "bus"
ExportAssets (56)Timeline Frame 1Symbol 112 as "ambulance"
ExportAssets (56)Timeline Frame 1Symbol 115 as "standard_2"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stationcar_2"
ExportAssets (56)Timeline Frame 1Symbol 121 as "wagon"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stationcar"
ExportAssets (56)Timeline Frame 1Symbol 127 as "standard"
ExportAssets (56)Timeline Frame 1Symbol 130 as "kleenex"
ExportAssets (56)Timeline Frame 1Symbol 133 as "smokes"
ExportAssets (56)Timeline Frame 1Symbol 136 as "wine"
ExportAssets (56)Timeline Frame 1Symbol 139 as "flowers"
ExportAssets (56)Timeline Frame 1Symbol 147 as "mary_sad"
ExportAssets (56)Timeline Frame 1Symbol 153 as "barbie_face"
ExportAssets (56)Timeline Frame 1Symbol 166 as "mama"
ExportAssets (56)Timeline Frame 1Symbol 178 as "papa"
ExportAssets (56)Timeline Frame 1Symbol 182 as "mary_mad"
ExportAssets (56)Timeline Frame 1Symbol 190 as "storck"
ExportAssets (56)Timeline Frame 1Symbol 192 as "netstationen_button"
ExportAssets (56)Timeline Frame 1Symbol 193 as "netstationen_button"
ExportAssets (56)Timeline Frame 1Symbol 193 as "netstationen_button"
ExportAssets (56)Timeline Frame 1Symbol 192 as "netstationen_button"
ExportAssets (56)Timeline Frame 1Symbol 201 as "frame"
ExportAssets (56)Timeline Frame 1Symbol 204 as "scoreboard"
ExportAssets (56)Timeline Frame 1Symbol 205 as "heart"
ExportAssets (56)Timeline Frame 1Symbol 206 as "heart"
ExportAssets (56)Timeline Frame 1Symbol 205 as "heart"
ExportAssets (56)Timeline Frame 1Symbol 205 as "heart"
ExportAssets (56)Timeline Frame 1Symbol 205 as "heart"
ExportAssets (56)Timeline Frame 1Symbol 205 as "heart"
ExportAssets (56)Timeline Frame 1Symbol 205 as "heart"
ExportAssets (56)Timeline Frame 1Symbol 205 as "heart"
ExportAssets (56)Timeline Frame 1Symbol 207 as "hearts"
ExportAssets (56)Timeline Frame 1Symbol 212 as "get_ready"
ExportAssets (56)Timeline Frame 1Symbol 222 as "button_send"
ExportAssets (56)Timeline Frame 1Symbol 232 as "looser_challenged"
ExportAssets (56)Timeline Frame 1Symbol 222 as "button_send"
ExportAssets (56)Timeline Frame 1Symbol 237 as "looser"
ExportAssets (56)Timeline Frame 1Symbol 238 as "button_send"
ExportAssets (56)Timeline Frame 1Symbol 222 as "button_send"
ExportAssets (56)Timeline Frame 1Symbol 244 as "winner_challenged"
ExportAssets (56)Timeline Frame 1Symbol 222 as "button_send"
ExportAssets (56)Timeline Frame 1Symbol 222 as "button_send"
ExportAssets (56)Timeline Frame 1Symbol 249 as "winner"
ExportAssets (56)Timeline Frame 1Symbol 250 as "netstationen_button"
ExportAssets (56)Timeline Frame 1Symbol 252 as "car"
ExportAssets (56)Timeline Frame 1Symbol 253 as "track"
ExportAssets (56)Timeline Frame 2Symbol 253 as "track"
ExportAssets (56)Timeline Frame 2Symbol 252 as "car"
ExportAssets (56)Timeline Frame 3Symbol 253 as "track"
ExportAssets (56)Timeline Frame 3Symbol 252 as "car"
ExportAssets (56)Timeline Frame 4Symbol 253 as "track"
ExportAssets (56)Timeline Frame 4Symbol 252 as "car"

Dynamic Text Variables

_root.scoreSymbol 203 EditableText""
_root.recipient_emailSymbol 225 EditableText"Modtager mail"
_root.challenger_nameSymbol 226 EditableText"Dit navn"
_root.score_to_beatSymbol 230 EditableText""
_root.scoreSymbol 231 EditableText""
_root.score_bestSymbol 235 EditableText""
_root.scoreSymbol 236 EditableText""
_root.score_to_beatSymbol 242 EditableText""
_root.scoreSymbol 243 EditableText""
_root.score_bestSymbol 247 EditableText""
_root.scoreSymbol 248 EditableText""




http://swfchan.com/39/194430/info.shtml
Created: 14/10 -2018 09:07:30 Last modified: 14/10 -2018 09:07:30 Server time: 02/05 -2024 23:32:44