STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229672 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2596 · P5191 |
This is the info page for Flash #42614 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
LOADING GAME |
NETSTUPIDITY NETWORK |
Fill Tool |
Circle Tool |
Square Tool |
Undo |
Clear Picture |
onClipEv ent (load) { // original color is white var mc_colo r = new Color (this); mc_colo r.setRG B (255 << 16 | 255 << 8 | 255); } onClipEv ent (mouseD own) { // check if clicking on this piece if (this.hit Test (_root._ xmouse, _root._ ymouse, true) && _root.m y_painte r.tool == "fill") { // clicked on this piece so take care of actions when clicked _root.m y_painte r.on_clic k (this); } } |
ActionScript [AS1/AS2]
Frame 2stop(); function painter() { this.depth = 0; this.color_picker_red = 0; this.color_picker_green = 0; this.color_picker_blue = 0; this.line_thickness = 0; this.tool = "fill"; this.new_mouse_x = (this.old_mouse_x = _root._xmouse); this.new_mouse_y = (this.old_mouse_y = _root._ymouse); this.history = new Array(); } fscommand ("allowscale", false); Math.trans = (Math.PI/180); painter.prototype.reset_picture = function () { this.depth = 0; this.remove_coloring(); this.remove_duplicates(); this.history = new Array(); }; painter.prototype.remove_duplicates = function () { for (var j in _root.coloring_picture) { if (_root.coloring_picture[j] != _level0.coloring_picture.picture_outline) { _root.coloring_picture[j].removeMovieClip(); } } for (var k in _root.stamp_preview) { _root.stamp_preview[k].removeMovieClip(); } }; painter.prototype.remove_coloring = function () { var piece_color; for (var j in _root.coloring_picture.sub) { piece_color = new Color(_root.coloring_picture.sub[j]); piece_color.setRGB(16777215); } }; painter.prototype.update_depth = function () { this.depth++; }; painter.prototype.change_line_thickness = function (thickness) { this.line_thickness = thickness; }; painter.prototype.set_movie_color = function (mc) { var mc_color = new Color(mc); mc_color.setRGB(((this.color_picker_red << 16) | (this.color_picker_green << 8)) | this.color_picker_blue); }; painter.prototype.draw_line = function () { var distance; var angle; var x1; var x2; var y1; var y2; x1 = this.new_mouse_x; y1 = this.new_mouse_y; x2 = this.old_mouse_x; y2 = this.old_mouse_y; _root.coloring_picture.attachMovie("line", "line" + this.depth, this.depth); _root.coloring_picture["line" + this.depth].gotoAndStop(this.line_thickness + 1); if (this.tool != "eraser") { this.set_movie_color(_root.coloring_picture["line" + this.depth]); } else { _root.coloring_picture["line" + this.depth].gotoAndStop(4); var scale = ((this.line_thickness * 3) + 1); _root.coloring_picture["line" + this.depth].left_tip._width = scale; _root.coloring_picture["line" + this.depth].left_tip._height = scale; _root.coloring_picture["line" + this.depth].right_tip._width = scale; _root.coloring_picture["line" + this.depth].right_tip._height = scale; _root.coloring_picture["line" + this.depth].middle._height = scale; } if ((this.line_thickness == 0) && (this.tool != "eraser")) { _root.coloring_picture["line" + this.depth]._x = x1; _root.coloring_picture["line" + this.depth]._y = y1; _root.coloring_picture["line" + this.depth]._xscale = x2 - x1; _root.coloring_picture["line" + this.depth]._yscale = y2 - y1; } else { distance = Math.sqrt(((x1 - x2) * (x1 - x2)) + ((y1 - y2) * (y1 - y2))); angle = Math.atan2(y2 - y1, x2 - x1) / Math.trans; _root.coloring_picture["line" + this.depth]._x = x1; _root.coloring_picture["line" + this.depth]._y = y1; _root.coloring_picture["line" + this.depth].middle._width = distance; _root.coloring_picture["line" + this.depth].right_tip._x = distance; _root.coloring_picture["line" + this.depth]._rotation = angle; } this.update_depth(); }; painter.prototype.change_color = function (red, green, blue) { this.color_picker_red = red; this.color_picker_green = green; this.color_picker_blue = 0; }; painter.prototype.change_piece_color = function (piece) { this.set_movie_color(piece); }; painter.prototype.mouse_tracker = function (first) { if (first) { this.new_mouse_x = (this.old_mouse_x = _root._xmouse); this.new_mouse_y = (this.old_mouse_y = _root._ymouse); } else { this.old_mouse_x = this.new_mouse_x; this.old_mouse_y = this.new_mouse_y; this.new_mouse_x = _root._xmouse; this.new_mouse_y = _root._ymouse; } }; painter.prototype.on_click = function (whos_calling) { for (var z in _root.stamp_preview) { if (_root.stamp_preview[z].hitTest(_root._xmouse, _root._ymouse, true)) { return(undefined); } } if (whos_calling != null) { var temp_object = new Color(whos_calling); this.history.push(new Array(whos_calling, temp_object.getRGB())); } else { this.history.push("other"); } this.mouse_tracker(true); this.update_depth(); if ((this.tool == "pen") || (this.tool == "eraser")) { this.mouse_tracker(true); } else if (this.tool == "fill") { this.change_piece_color(whos_calling); } else if (this.tool == "circle") { _root.coloring_picture.attachMovie("circle", "circle" + this.depth, this.depth); _root.coloring_picture["circle" + this.depth]._x = this.old_mouse_x; _root.coloring_picture["circle" + this.depth]._y = this.old_mouse_y; this.set_movie_color(_root.coloring_picture["circle" + this.depth]); } else if (this.tool == "rectangle") { _root.coloring_picture.attachMovie("rectangle", "rectangle" + this.depth, this.depth); _root.coloring_picture["rectangle" + this.depth]._x = this.old_mouse_x; _root.coloring_picture["rectangle" + this.depth]._y = this.old_mouse_y; this.set_movie_color(_root.coloring_picture["rectangle" + this.depth]); } else if (this.tool == "text_stamp") { this.update_depth(); _root.coloring_picture.attachMovie("text_stamp", "text_stamp" + this.depth, this.depth); _root.coloring_picture["text_stamp" + this.depth].text = _root.stamp_text.text; this.set_movie_color(_root.coloring_picture["text_stamp" + this.depth]); } }; painter.prototype.on_unclick = function () { if (this.tool == "line") { this.new_mouse_x = _root._xmouse; this.new_mouse_y = _root._ymouse; this.draw_line(); } else if ((this.tool == "circle") || (this.tool == "rectangle")) { this.update_depth(); } else if (this.tool == "text_stamp") { this.update_depth(); } }; painter.prototype.on_click_drag = function () { if ((this.tool == "pen") || (this.tool == "eraser")) { this.mouse_tracker(false); this.draw_line(); } else if (this.tool == "line") { this.new_mouse_x = _root._xmouse; this.new_mouse_y = _root._ymouse; this.draw_line(); this.depth--; } else if (this.tool == "circle") { _root.coloring_picture["circle" + this.depth]._xscale = _root._xmouse - this.old_mouse_x; _root.coloring_picture["circle" + this.depth]._yscale = _root._ymouse - this.old_mouse_y; } else if (this.tool == "rectangle") { _root.coloring_picture["rectangle" + this.depth]._xscale = _root._xmouse - this.old_mouse_x; _root.coloring_picture["rectangle" + this.depth]._yscale = _root._ymouse - this.old_mouse_y; } else if (this.tool == "text_stamp") { _root.coloring_picture["text_stamp" + this.depth]._x = _root._xmouse; _root.coloring_picture["text_stamp" + this.depth]._y = _root._ymouse; } }; painter.prototype.change_tool = function (new_tool) { this.tool = new_tool; }; painter.prototype.undo = function () { var num_times = 0; var temp = new Array(); if (this.history[this.history.length - 1] == "other") { this.history.pop(); for (var j in _root.coloring_picture) { if ((_root.coloring_picture[j] != _level0.coloring_picture.picture_outline) && (num_times < 2)) { _root.coloring_picture[j].removeMovieClip(); num_times++; } } } else if (typeof(this.history[this.history.length - 1]) == "movieclip") { var _mc = this.history.pop(); _mc.removeMovieClip(); } else { var a_col = new Color(this.history[this.history.length - 1][0]); a_col.setRGB(this.history[this.history.length - 1][1]); this.history.pop(); } }; my_painter = new painter();Instance of Symbol 248 MovieClip "coloring_picture" in Frame 2onClipEvent (load) { drag = false; } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_parent.my_painter.tool != "fill")) { drag = true; _parent.my_painter.on_click(); } } onClipEvent (mouseUp) { drag = false; if (this.hittest(_root._xmouse, _root._ymouse, true) && (_parent.my_painter.tool != "fill")) { _parent.my_painter.on_unclick(); } } onClipEvent (enterFrame) { if (drag && (_parent.my_painter.tool != "fill")) { _parent.my_painter.on_click_drag(); } }Instance of Symbol 289 MovieClip "text_stamp_color" in Frame 2onClipEvent (enterFrame) { }Symbol 6 MovieClip [line] Frame 1stop();Symbol 17 MovieClip Frame 1Stage.scaleMode = "noScale"; fscommand ("trapallkeys", true); Stage.showMenu = false; this.uu = _root._url; var a = _root._url.split("/"); var i = 0; while (i < a.length) { if (a[i] == "files") { _root.gid = a[i + 1]; } i++; } if ((a[2] == "www.netstupidity.com") || (a[2] == "netstupidity.com")) { _root.ligin = 1; } _root.__url = "http://www.netstupidity.com/games/hof/"; _root.loadVariables((_root.__url + "hof_bsc.php?id=") + _root.gid); _root.prc = 0; this.onEnterFrame = function () { var ld = _root.getBytesLoaded(); var tt = _root.getBytesTotal(); var pr = ((100 * ld) / tt); this.pasek._xscale = pr; var b = Math.round(pr / 20); if (pr >= 100) { this.onEnterFrame = null; this._parent.play(); } };Symbol 31 MovieClip Frame 140stop();Symbol 70 MovieClip Frame 1this.t = getTimer(); this.tm = 0; this.onEnterFrame = function () { if (_root._framesloaded < 2) { this.t = getTimer(); return(undefined); } this.tm = this.tm + (getTimer() - this.t); var tt = Math.round(this.tm / 33); if (tt < 1) { this.stop(); } else { this.t = getTimer(); if (tt >= 145) { this.onEnterFrame = null; this.gotoAndStop(145); _root.play(); } else { this.gotoAndStop(tt); } } }; stop();Symbol 73 MovieClip Frame 1_root.stop(); stop();Symbol 73 MovieClip Frame 2stop();Instance of Symbol 78 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 80 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 82 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 84 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 86 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 88 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 90 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 92 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 94 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 96 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 98 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 100 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 102 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 104 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 106 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 108 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 110 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 112 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 114 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 116 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 118 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 120 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 122 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 124 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 126 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 128 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 130 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 132 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 134 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 139 MovieClip in Symbol 158 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 141 MovieClip in Symbol 158 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 143 MovieClip in Symbol 158 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 145 MovieClip in Symbol 158 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 147 MovieClip in Symbol 158 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 149 MovieClip in Symbol 158 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 151 MovieClip in Symbol 158 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 153 MovieClip in Symbol 158 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 155 MovieClip in Symbol 158 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 162 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 164 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 166 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 168 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 170 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 172 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 174 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 176 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 178 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 180 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 182 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 184 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 186 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 188 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 190 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 192 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 194 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 196 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 198 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 200 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 202 MovieClip in Symbol 203 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 206 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 208 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 210 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 212 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 214 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 216 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 218 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 220 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 222 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 224 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 226 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 228 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 230 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 232 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 234 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 236 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 238 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 240 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 242 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 244 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Instance of Symbol 246 MovieClip in Symbol 247 MovieClip Frame 1onClipEvent (load) { var mc_color = new Color(this); mc_color.setRGB(16777215); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (_root.my_painter.tool == "fill")) { _root.my_painter.on_click(this); } }Symbol 248 MovieClip Frame 1stop();Symbol 248 MovieClip Frame 2stop();Symbol 248 MovieClip Frame 3stop();Symbol 248 MovieClip Frame 4stop();Symbol 251 Buttonon (release) { var left = 0; if (stamp_preview._currentframe > (left + 1)) { stamp_preview.prevFrame(); } }Symbol 252 Buttonon (release) { var right = stamp_preview._totalframes; if (stamp_preview._currentframe < right) { stamp_preview.nextFrame(); } }Symbol 260 Buttonon (press) { this.gotoAndStop(1); _parent.picture_options.gotoAndStop(1); } on (release, releaseOutside) { _parent.my_painter.change_tool("fill"); }Symbol 265 Buttonon (press) { this.gotoAndStop(2); _parent.picture_options.gotoAndStop(1); } on (release, releaseOutside) { _parent.my_painter.change_tool("circle"); }Symbol 270 Buttonon (press) { this.gotoAndStop(3); _parent.picture_options.gotoAndStop(1); } on (release, releaseOutside) { _parent.my_painter.change_tool("rectangle"); }Symbol 271 MovieClip Frame 1stop();Symbol 276 Buttonon (release) { _parent.my_painter.undo(); }Symbol 281 Buttonon (release) { _parent.my_painter.reset_picture(); }Symbol 286 Buttonon (press) { _root.cover_all_white.gotoAndStop(2); } on (release) { printNum (_level0, "bmovie"); _root._x = -50; loadMovieNum ("resume_button.swf", 10); }Symbol 287 MovieClip Frame 1stop();Symbol 291 Buttonon (release) { my_painter.color_picker_red = 0; my_painter.color_picker_green = 0; my_painter.color_picker_blue = 0; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 293 Buttonon (release) { my_painter.color_picker_red = 153; my_painter.color_picker_green = 153; my_painter.color_picker_blue = 153; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 295 Buttonon (release) { my_painter.color_picker_red = 204; my_painter.color_picker_green = 204; my_painter.color_picker_blue = 204; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 297 Buttonon (release) { my_painter.color_picker_red = 255; my_painter.color_picker_green = 255; my_painter.color_picker_blue = 255; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 299 Buttonon (release) { my_painter.color_picker_red = 255; my_painter.color_picker_green = 0; my_painter.color_picker_blue = 0; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 301 Buttonon (release) { my_painter.color_picker_red = 255; my_painter.color_picker_green = 153; my_painter.color_picker_blue = 51; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 303 Buttonon (release) { my_painter.color_picker_red = 255; my_painter.color_picker_green = 204; my_painter.color_picker_blue = 102; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 305 Buttonon (release) { my_painter.color_picker_red = 255; my_painter.color_picker_green = 255; my_painter.color_picker_blue = 0; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 307 Buttonon (release) { my_painter.color_picker_red = 0; my_painter.color_picker_green = 187; my_painter.color_picker_blue = 0; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 309 Buttonon (release) { my_painter.color_picker_red = 0; my_painter.color_picker_green = 255; my_painter.color_picker_blue = 0; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 311 Buttonon (release) { my_painter.color_picker_red = 255; my_painter.color_picker_green = 204; my_painter.color_picker_blue = 255; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 313 Buttonon (release) { my_painter.color_picker_red = 255; my_painter.color_picker_green = 102; my_painter.color_picker_blue = 255; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 315 Buttonon (release) { my_painter.color_picker_red = 0; my_painter.color_picker_green = 0; my_painter.color_picker_blue = 255; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 317 Buttonon (release) { my_painter.color_picker_red = 0; my_painter.color_picker_green = 153; my_painter.color_picker_blue = 255; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 319 Buttonon (release) { my_painter.color_picker_red = 153; my_painter.color_picker_green = 0; my_painter.color_picker_blue = 153; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 321 Buttonon (release) { my_painter.color_picker_red = 153; my_painter.color_picker_green = 51; my_painter.color_picker_blue = 255; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 323 Buttonon (release) { my_painter.color_picker_red = 153; my_painter.color_picker_green = 153; my_painter.color_picker_blue = 255; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 325 Buttonon (release) { my_painter.color_picker_red = 133; my_painter.color_picker_green = 102; my_painter.color_picker_blue = 67; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 327 Buttonon (release) { my_painter.color_picker_red = 196; my_painter.color_picker_green = 138; my_painter.color_picker_blue = 46; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 329 Buttonon (release) { my_painter.color_picker_red = 153; my_painter.color_picker_green = 0; my_painter.color_picker_blue = 0; my_painter.set_movie_color(_root.text_stamp_color); }Symbol 330 Buttonon (release) { picture_preview.prevFrame(); var right = (picture_preview._currentframe * 3); var left = ((picture_preview._currentframe - 1) * 3); }Symbol 331 Buttonon (release) { picture_preview.nextFrame(); var right = (picture_preview._currentframe * 3); var left = ((picture_preview._currentframe - 1) * 3); }Symbol 334 Buttonon (release) { _parent.my_painter.reset_picture(); _parent.coloring_picture.gotoAndStop(this._currentframe); }Symbol 340 MovieClip Frame 1stop();Symbol 365 MovieClip Frame 1stop();Instance of Symbol 343 MovieClip in Symbol 365 MovieClip Frame 1onClipEvent (load) { width = 58; height = 55; } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._name.indexOf("logo") == -1)) { _root.depth++; this.duplicateMovieClip("logo" + _root.depth, _root.depth); this._parent["logo" + _root.depth].startDrag(true, 156, 19, 574, 432); this._parent["logo" + _root.depth]._width = width; this._parent["logo" + _root.depth]._height = height; _root.my_painter.history.push(this._parent["logo" + _root.depth]); } else if (this.hitTest(_root._xmouse, _root._ymouse, true)) { this.startDrag(); } } onClipEvent (mouseUp) { this.stopDrag(); this._parent["logo" + _root.depth].stopDrag(); }Instance of Symbol 345 MovieClip in Symbol 365 MovieClip Frame 2onClipEvent (load) { width = 59; height = 54; } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._name.indexOf("logo") == -1)) { _root.depth++; this.duplicateMovieClip("logo" + _root.depth, _root.depth); this._parent["logo" + _root.depth].startDrag(true, 156, 19, 574, 432); this._parent["logo" + _root.depth]._width = width; this._parent["logo" + _root.depth]._height = height; _root.my_painter.history.push(this._parent["logo" + _root.depth]); } else if (this.hitTest(_root._xmouse, _root._ymouse, true)) { this.startDrag(); } } onClipEvent (mouseUp) { this.stopDrag(); this._parent["logo" + _root.depth].stopDrag(); }Instance of Symbol 347 MovieClip in Symbol 365 MovieClip Frame 3onClipEvent (load) { width = 56; height = 58; } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._name.indexOf("logo") == -1)) { _root.depth++; this.duplicateMovieClip("logo" + _root.depth, _root.depth); this._parent["logo" + _root.depth].startDrag(true, 156, 19, 574, 432); this._parent["logo" + _root.depth]._width = width; this._parent["logo" + _root.depth]._height = height; _root.my_painter.history.push(this._parent["logo" + _root.depth]); } else if (this.hitTest(_root._xmouse, _root._ymouse, true)) { this.startDrag(); } } onClipEvent (mouseUp) { this.stopDrag(); this._parent["logo" + _root.depth].stopDrag(); }Instance of Symbol 349 MovieClip in Symbol 365 MovieClip Frame 4onClipEvent (load) { width = 51; height = 51; } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._name.indexOf("logo") == -1)) { _root.depth++; this.duplicateMovieClip("logo" + _root.depth, _root.depth); this._parent["logo" + _root.depth].startDrag(true, 156, 19, 574, 432); this._parent["logo" + _root.depth]._width = width; this._parent["logo" + _root.depth]._height = height; _root.my_painter.history.push(this._parent["logo" + _root.depth]); } else if (this.hitTest(_root._xmouse, _root._ymouse, true)) { this.startDrag(); } } onClipEvent (mouseUp) { this.stopDrag(); this._parent["logo" + _root.depth].stopDrag(); }Instance of Symbol 352 MovieClip in Symbol 365 MovieClip Frame 5onClipEvent (load) { width = 61; height = 41; } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._name.indexOf("logo") == -1)) { _root.depth++; this.duplicateMovieClip("logo" + _root.depth, _root.depth); this._parent["logo" + _root.depth].startDrag(true, 156, 19, 574, 432); this._parent["logo" + _root.depth]._width = width; this._parent["logo" + _root.depth]._height = height; _root.my_painter.history.push(this._parent["logo" + _root.depth]); } else if (this.hitTest(_root._xmouse, _root._ymouse, true)) { this.startDrag(); } } onClipEvent (mouseUp) { this.stopDrag(); this._parent["logo" + _root.depth].stopDrag(); }Instance of Symbol 355 MovieClip in Symbol 365 MovieClip Frame 6onClipEvent (load) { width = 80; height = 52; } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._name.indexOf("logo") == -1)) { _root.depth++; this.duplicateMovieClip("logo" + _root.depth, _root.depth); this._parent["logo" + _root.depth].startDrag(true, 156, 19, 574, 432); this._parent["logo" + _root.depth]._width = width; this._parent["logo" + _root.depth]._height = height; _root.my_painter.history.push(this._parent["logo" + _root.depth]); } else if (this.hitTest(_root._xmouse, _root._ymouse, true)) { this.startDrag(); } } onClipEvent (mouseUp) { this.stopDrag(); this._parent["logo" + _root.depth].stopDrag(); }Instance of Symbol 358 MovieClip in Symbol 365 MovieClip Frame 7onClipEvent (load) { width = 93; height = 58; } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._name.indexOf("logo") == -1)) { _root.depth++; this.duplicateMovieClip("logo" + _root.depth, _root.depth); this._parent["logo" + _root.depth].startDrag(true, 156, 19, 574, 432); this._parent["logo" + _root.depth]._width = width; this._parent["logo" + _root.depth]._height = height; _root.my_painter.history.push(this._parent["logo" + _root.depth]); } else if (this.hitTest(_root._xmouse, _root._ymouse, true)) { this.startDrag(); } } onClipEvent (mouseUp) { this.stopDrag(); this._parent["logo" + _root.depth].stopDrag(); }Instance of Symbol 361 MovieClip in Symbol 365 MovieClip Frame 8onClipEvent (load) { width = 88; height = 36; } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._name.indexOf("logo") == -1)) { _root.depth++; this.duplicateMovieClip("logo" + _root.depth, _root.depth); this._parent["logo" + _root.depth].startDrag(true, 156, 19, 574, 432); this._parent["logo" + _root.depth]._width = width; this._parent["logo" + _root.depth]._height = height; _root.my_painter.history.push(this._parent["logo" + _root.depth]); } else if (this.hitTest(_root._xmouse, _root._ymouse, true)) { this.startDrag(); } } onClipEvent (mouseUp) { this.stopDrag(); this._parent["logo" + _root.depth].stopDrag(); }Instance of Symbol 364 MovieClip in Symbol 365 MovieClip Frame 9onClipEvent (load) { width = 39; height = 37; } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._name.indexOf("logo") == -1)) { _root.depth++; this.duplicateMovieClip("logo" + _root.depth, _root.depth); this._parent["logo" + _root.depth].startDrag(true, 156, 19, 574, 432); this._parent["logo" + _root.depth]._width = width; this._parent["logo" + _root.depth]._height = height; _root.my_painter.history.push(this._parent["logo" + _root.depth]); } else if (this.hitTest(_root._xmouse, _root._ymouse, true)) { this.startDrag(); } } onClipEvent (mouseUp) { this.stopDrag(); this._parent["logo" + _root.depth].stopDrag(); }Symbol 369 MovieClip Frame 1this._visible = _root.ligin == undefined; this.onPress = function () { getURL ("http://www.netstupidity.com"); };Symbol 371 MovieClip Frame 1stop();
Library Items
Symbol 1 Graphic | Used by:6 | |
Symbol 2 Graphic | Used by:3 7 | |
Symbol 3 MovieClip | Uses:2 | Used by:6 |
Symbol 4 Graphic | Used by:5 8 73 334 | |
Symbol 5 MovieClip | Uses:4 | Used by:6 |
Symbol 6 MovieClip [line] | Uses:1 3 5 | |
Symbol 7 MovieClip [circle] | Uses:2 | |
Symbol 8 MovieClip [rectangle] | Uses:4 | |
Symbol 9 Font | Used by:10 | |
Symbol 10 EditableText | Uses:9 | Used by:11 |
Symbol 11 MovieClip [text_stamp] | Uses:10 | |
Symbol 12 Font | Used by:13 14 | |
Symbol 13 Text | Uses:12 | Used by:17 |
Symbol 14 Text | Uses:12 | Used by:17 |
Symbol 15 Graphic | Used by:16 31 | |
Symbol 16 MovieClip | Uses:15 | Used by:17 |
Symbol 17 MovieClip | Uses:13 14 16 | Used by:73 |
Symbol 18 Graphic | Used by:31 | |
Symbol 19 Graphic | Used by:31 | |
Symbol 20 Graphic | Used by:31 | |
Symbol 21 Graphic | Used by:31 | |
Symbol 22 Graphic | Used by:31 | |
Symbol 23 Graphic | Used by:31 | |
Symbol 24 Graphic | Used by:31 | |
Symbol 25 Graphic | Used by:31 | |
Symbol 26 Graphic | Used by:31 | |
Symbol 27 Graphic | Used by:31 | |
Symbol 28 Graphic | Used by:31 | |
Symbol 29 Graphic | Used by:31 | |
Symbol 30 Graphic | Used by:31 | |
Symbol 31 MovieClip | Uses:18 19 20 21 22 23 24 25 26 27 15 28 29 30 | Used by:70 |
Symbol 32 Bitmap | Used by:33 | |
Symbol 33 Graphic | Uses:32 | Used by:70 |
Symbol 34 Graphic | Used by:70 | |
Symbol 35 Graphic | Used by:70 | |
Symbol 36 Bitmap | Used by:37 | |
Symbol 37 Graphic | Uses:36 | Used by:70 |
Symbol 38 Bitmap | Used by:39 | |
Symbol 39 Graphic | Uses:38 | Used by:70 |
Symbol 40 Bitmap | Used by:41 | |
Symbol 41 Graphic | Uses:40 | Used by:70 |
Symbol 42 Bitmap | Used by:43 | |
Symbol 43 Graphic | Uses:42 | Used by:70 |
Symbol 44 Bitmap | Used by:45 | |
Symbol 45 Graphic | Uses:44 | Used by:70 |
Symbol 46 Bitmap | Used by:47 | |
Symbol 47 Graphic | Uses:46 | Used by:70 |
Symbol 48 Bitmap | Used by:49 | |
Symbol 49 Graphic | Uses:48 | Used by:70 |
Symbol 50 Bitmap | Used by:51 | |
Symbol 51 Graphic | Uses:50 | Used by:70 |
Symbol 52 Bitmap | Used by:53 | |
Symbol 53 Graphic | Uses:52 | Used by:70 |
Symbol 54 Bitmap | Used by:55 | |
Symbol 55 Graphic | Uses:54 | Used by:70 |
Symbol 56 Bitmap | Used by:57 | |
Symbol 57 Graphic | Uses:56 | Used by:70 |
Symbol 58 Bitmap | Used by:59 | |
Symbol 59 Graphic | Uses:58 | Used by:70 |
Symbol 60 Bitmap | Used by:61 | |
Symbol 61 Graphic | Uses:60 | Used by:70 |
Symbol 62 Bitmap | Used by:63 | |
Symbol 63 Graphic | Uses:62 | Used by:70 |
Symbol 64 Bitmap | Used by:65 | |
Symbol 65 Graphic | Uses:64 | Used by:70 |
Symbol 66 Bitmap | Used by:67 | |
Symbol 67 Graphic | Uses:66 | Used by:70 |
Symbol 68 Bitmap | Used by:69 | |
Symbol 69 Graphic | Uses:68 | Used by:70 |
Symbol 70 MovieClip | Uses:31 33 34 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 | Used by:71 |
Symbol 71 MovieClip | Uses:70 | Used by:73 |
Symbol 72 Sound | Used by:73 | |
Symbol 73 MovieClip | Uses:4 17 71 72 | Used by:Timeline |
Symbol 74 Graphic | Used by:Timeline | |
Symbol 75 Graphic | Used by:248 | |
Symbol 76 Graphic | Used by:135 | |
Symbol 77 Graphic | Used by:78 | |
Symbol 78 MovieClip | Uses:77 | Used by:135 |
Symbol 79 Graphic | Used by:80 | |
Symbol 80 MovieClip | Uses:79 | Used by:135 |
Symbol 81 Graphic | Used by:82 | |
Symbol 82 MovieClip | Uses:81 | Used by:135 |
Symbol 83 Graphic | Used by:84 | |
Symbol 84 MovieClip | Uses:83 | Used by:135 |
Symbol 85 Graphic | Used by:86 | |
Symbol 86 MovieClip | Uses:85 | Used by:135 |
Symbol 87 Graphic | Used by:88 | |
Symbol 88 MovieClip | Uses:87 | Used by:135 |
Symbol 89 Graphic | Used by:90 | |
Symbol 90 MovieClip | Uses:89 | Used by:135 |
Symbol 91 Graphic | Used by:92 | |
Symbol 92 MovieClip | Uses:91 | Used by:135 |
Symbol 93 Graphic | Used by:94 | |
Symbol 94 MovieClip | Uses:93 | Used by:135 |
Symbol 95 Graphic | Used by:96 | |
Symbol 96 MovieClip | Uses:95 | Used by:135 |
Symbol 97 Graphic | Used by:98 | |
Symbol 98 MovieClip | Uses:97 | Used by:135 |
Symbol 99 Graphic | Used by:100 | |
Symbol 100 MovieClip | Uses:99 | Used by:135 |
Symbol 101 Graphic | Used by:102 | |
Symbol 102 MovieClip | Uses:101 | Used by:135 |
Symbol 103 Graphic | Used by:104 | |
Symbol 104 MovieClip | Uses:103 | Used by:135 |
Symbol 105 Graphic | Used by:106 | |
Symbol 106 MovieClip | Uses:105 | Used by:135 |
Symbol 107 Graphic | Used by:108 | |
Symbol 108 MovieClip | Uses:107 | Used by:135 |
Symbol 109 Graphic | Used by:110 | |
Symbol 110 MovieClip | Uses:109 | Used by:135 |
Symbol 111 Graphic | Used by:112 | |
Symbol 112 MovieClip | Uses:111 | Used by:135 |
Symbol 113 Graphic | Used by:114 | |
Symbol 114 MovieClip | Uses:113 | Used by:135 |
Symbol 115 Graphic | Used by:116 | |
Symbol 116 MovieClip | Uses:115 | Used by:135 |
Symbol 117 Graphic | Used by:118 | |
Symbol 118 MovieClip | Uses:117 | Used by:135 |
Symbol 119 Graphic | Used by:120 | |
Symbol 120 MovieClip | Uses:119 | Used by:135 |
Symbol 121 Graphic | Used by:122 | |
Symbol 122 MovieClip | Uses:121 | Used by:135 |
Symbol 123 Graphic | Used by:124 | |
Symbol 124 MovieClip | Uses:123 | Used by:135 |
Symbol 125 Graphic | Used by:126 | |
Symbol 126 MovieClip | Uses:125 | Used by:135 |
Symbol 127 Graphic | Used by:128 | |
Symbol 128 MovieClip | Uses:127 | Used by:135 |
Symbol 129 Graphic | Used by:130 | |
Symbol 130 MovieClip | Uses:129 | Used by:135 |
Symbol 131 Graphic | Used by:132 | |
Symbol 132 MovieClip | Uses:131 | Used by:135 |
Symbol 133 Graphic | Used by:134 | |
Symbol 134 MovieClip | Uses:133 | Used by:135 |
Symbol 135 MovieClip | Uses:76 78 80 82 84 86 88 90 92 94 96 98 100 102 104 106 108 110 112 114 116 118 120 122 124 126 128 130 132 134 | Used by:248 |
Symbol 136 Graphic | Used by:248 | |
Symbol 137 Graphic | Used by:158 | |
Symbol 138 Graphic | Used by:139 | |
Symbol 139 MovieClip | Uses:138 | Used by:158 |
Symbol 140 Graphic | Used by:141 | |
Symbol 141 MovieClip | Uses:140 | Used by:158 |
Symbol 142 Graphic | Used by:143 | |
Symbol 143 MovieClip | Uses:142 | Used by:158 |
Symbol 144 Graphic | Used by:145 | |
Symbol 145 MovieClip | Uses:144 | Used by:158 |
Symbol 146 Graphic | Used by:147 | |
Symbol 147 MovieClip | Uses:146 | Used by:158 |
Symbol 148 Graphic | Used by:149 | |
Symbol 149 MovieClip | Uses:148 | Used by:158 |
Symbol 150 Graphic | Used by:151 | |
Symbol 151 MovieClip | Uses:150 | Used by:158 |
Symbol 152 Graphic | Used by:153 | |
Symbol 153 MovieClip | Uses:152 | Used by:158 |
Symbol 154 Graphic | Used by:155 | |
Symbol 155 MovieClip | Uses:154 | Used by:158 |
Symbol 156 Graphic | Used by:157 | |
Symbol 157 MovieClip | Uses:156 | Used by:158 |
Symbol 158 MovieClip | Uses:137 139 141 143 145 147 149 151 153 155 157 | Used by:248 |
Symbol 159 Graphic | Used by:248 | |
Symbol 160 Graphic | Used by:203 | |
Symbol 161 Graphic | Used by:162 | |
Symbol 162 MovieClip | Uses:161 | Used by:203 |
Symbol 163 Graphic | Used by:164 | |
Symbol 164 MovieClip | Uses:163 | Used by:203 |
Symbol 165 Graphic | Used by:166 | |
Symbol 166 MovieClip | Uses:165 | Used by:203 |
Symbol 167 Graphic | Used by:168 | |
Symbol 168 MovieClip | Uses:167 | Used by:203 |
Symbol 169 Graphic | Used by:170 | |
Symbol 170 MovieClip | Uses:169 | Used by:203 |
Symbol 171 Graphic | Used by:172 | |
Symbol 172 MovieClip | Uses:171 | Used by:203 |
Symbol 173 Graphic | Used by:174 | |
Symbol 174 MovieClip | Uses:173 | Used by:203 |
Symbol 175 Graphic | Used by:176 | |
Symbol 176 MovieClip | Uses:175 | Used by:203 |
Symbol 177 Graphic | Used by:178 | |
Symbol 178 MovieClip | Uses:177 | Used by:203 |
Symbol 179 Graphic | Used by:180 | |
Symbol 180 MovieClip | Uses:179 | Used by:203 |
Symbol 181 Graphic | Used by:182 | |
Symbol 182 MovieClip | Uses:181 | Used by:203 |
Symbol 183 Graphic | Used by:184 | |
Symbol 184 MovieClip | Uses:183 | Used by:203 |
Symbol 185 Graphic | Used by:186 | |
Symbol 186 MovieClip | Uses:185 | Used by:203 |
Symbol 187 Graphic | Used by:188 | |
Symbol 188 MovieClip | Uses:187 | Used by:203 |
Symbol 189 Graphic | Used by:190 | |
Symbol 190 MovieClip | Uses:189 | Used by:203 |
Symbol 191 Graphic | Used by:192 | |
Symbol 192 MovieClip | Uses:191 | Used by:203 |
Symbol 193 Graphic | Used by:194 | |
Symbol 194 MovieClip | Uses:193 | Used by:203 |
Symbol 195 Graphic | Used by:196 | |
Symbol 196 MovieClip | Uses:195 | Used by:203 |
Symbol 197 Graphic | Used by:198 | |
Symbol 198 MovieClip | Uses:197 | Used by:203 |
Symbol 199 Graphic | Used by:200 | |
Symbol 200 MovieClip | Uses:199 | Used by:203 |
Symbol 201 Graphic | Used by:202 | |
Symbol 202 MovieClip | Uses:201 | Used by:203 |
Symbol 203 MovieClip | Uses:160 162 164 166 168 170 172 174 176 178 180 182 184 186 188 190 192 194 196 198 200 202 | Used by:248 |
Symbol 204 Graphic | Used by:248 | |
Symbol 205 Graphic | Used by:206 | |
Symbol 206 MovieClip | Uses:205 | Used by:247 |
Symbol 207 Graphic | Used by:208 | |
Symbol 208 MovieClip | Uses:207 | Used by:247 |
Symbol 209 Graphic | Used by:210 | |
Symbol 210 MovieClip | Uses:209 | Used by:247 |
Symbol 211 Graphic | Used by:212 | |
Symbol 212 MovieClip | Uses:211 | Used by:247 |
Symbol 213 Graphic | Used by:214 | |
Symbol 214 MovieClip | Uses:213 | Used by:247 |
Symbol 215 Graphic | Used by:216 | |
Symbol 216 MovieClip | Uses:215 | Used by:247 |
Symbol 217 Graphic | Used by:218 | |
Symbol 218 MovieClip | Uses:217 | Used by:247 |
Symbol 219 Graphic | Used by:220 | |
Symbol 220 MovieClip | Uses:219 | Used by:247 |
Symbol 221 Graphic | Used by:222 | |
Symbol 222 MovieClip | Uses:221 | Used by:247 |
Symbol 223 Graphic | Used by:224 | |
Symbol 224 MovieClip | Uses:223 | Used by:247 |
Symbol 225 Graphic | Used by:226 | |
Symbol 226 MovieClip | Uses:225 | Used by:247 |
Symbol 227 Graphic | Used by:228 | |
Symbol 228 MovieClip | Uses:227 | Used by:247 |
Symbol 229 Graphic | Used by:230 | |
Symbol 230 MovieClip | Uses:229 | Used by:247 |
Symbol 231 Graphic | Used by:232 | |
Symbol 232 MovieClip | Uses:231 | Used by:247 |
Symbol 233 Graphic | Used by:234 | |
Symbol 234 MovieClip | Uses:233 | Used by:247 |
Symbol 235 Graphic | Used by:236 | |
Symbol 236 MovieClip | Uses:235 | Used by:247 |
Symbol 237 Graphic | Used by:238 | |
Symbol 238 MovieClip | Uses:237 | Used by:247 |
Symbol 239 Graphic | Used by:240 | |
Symbol 240 MovieClip | Uses:239 | Used by:247 |
Symbol 241 Graphic | Used by:242 | |
Symbol 242 MovieClip | Uses:241 | Used by:247 |
Symbol 243 Graphic | Used by:244 | |
Symbol 244 MovieClip | Uses:243 | Used by:247 |
Symbol 245 Graphic | Used by:246 | |
Symbol 246 MovieClip | Uses:245 | Used by:247 |
Symbol 247 MovieClip | Uses:206 208 210 212 214 216 218 220 222 224 226 228 230 232 234 236 238 240 242 244 246 | Used by:248 |
Symbol 248 MovieClip | Uses:75 135 136 158 159 203 204 247 | Used by:Timeline |
Symbol 249 Graphic | Used by:Timeline | |
Symbol 250 Graphic | Used by:251 252 330 331 | |
Symbol 251 Button | Uses:250 | Used by:Timeline |
Symbol 252 Button | Uses:250 | Used by:Timeline |
Symbol 253 Graphic | Used by:260 265 270 271 276 281 286 287 | |
Symbol 254 Graphic | Used by:260 265 270 271 276 281 286 287 | |
Symbol 255 Graphic | Used by:260 | |
Symbol 256 Graphic | Used by:260 | |
Symbol 257 Font | Used by:258 263 268 274 279 284 | |
Symbol 258 Text | Uses:257 | Used by:260 |
Symbol 259 Graphic | Used by:260 | |
Symbol 260 Button | Uses:255 253 256 258 254 259 | Used by:271 |
Symbol 261 Graphic | Used by:265 | |
Symbol 262 Graphic | Used by:265 | |
Symbol 263 Text | Uses:257 | Used by:265 |
Symbol 264 Graphic | Used by:265 | |
Symbol 265 Button | Uses:261 253 262 263 254 264 | Used by:271 |
Symbol 266 Graphic | Used by:270 | |
Symbol 267 Graphic | Used by:270 | |
Symbol 268 Text | Uses:257 | Used by:270 |
Symbol 269 Graphic | Used by:270 | |
Symbol 270 Button | Uses:266 253 267 268 254 269 | Used by:271 |
Symbol 271 MovieClip | Uses:253 254 260 265 270 | Used by:Timeline |
Symbol 272 Graphic | Used by:276 | |
Symbol 273 Graphic | Used by:276 | |
Symbol 274 Text | Uses:257 | Used by:276 |
Symbol 275 Graphic | Used by:276 | |
Symbol 276 Button | Uses:272 253 273 274 254 275 | Used by:287 |
Symbol 277 Graphic | Used by:281 | |
Symbol 278 Graphic | Used by:281 | |
Symbol 279 Text | Uses:257 | Used by:281 |
Symbol 280 Graphic | Used by:281 | |
Symbol 281 Button | Uses:277 253 278 279 254 280 | Used by:287 |
Symbol 282 Graphic | Used by:286 | |
Symbol 283 Graphic | Used by:286 | |
Symbol 284 Text | Uses:257 | Used by:286 |
Symbol 285 Graphic | Used by:286 | |
Symbol 286 Button | Uses:282 253 283 284 254 285 | Used by:287 |
Symbol 287 MovieClip | Uses:253 276 281 286 254 | Used by:Timeline |
Symbol 288 Graphic | Used by:289 | |
Symbol 289 MovieClip | Uses:288 | Used by:Timeline |
Symbol 290 Graphic | Used by:291 | |
Symbol 291 Button | Uses:290 | Used by:Timeline |
Symbol 292 Graphic | Used by:293 | |
Symbol 293 Button | Uses:292 | Used by:Timeline |
Symbol 294 Graphic | Used by:295 | |
Symbol 295 Button | Uses:294 | Used by:Timeline |
Symbol 296 Graphic | Used by:297 | |
Symbol 297 Button | Uses:296 | Used by:Timeline |
Symbol 298 Graphic | Used by:299 | |
Symbol 299 Button | Uses:298 | Used by:Timeline |
Symbol 300 Graphic | Used by:301 | |
Symbol 301 Button | Uses:300 | Used by:Timeline |
Symbol 302 Graphic | Used by:303 | |
Symbol 303 Button | Uses:302 | Used by:Timeline |
Symbol 304 Graphic | Used by:305 | |
Symbol 305 Button | Uses:304 | Used by:Timeline |
Symbol 306 Graphic | Used by:307 | |
Symbol 307 Button | Uses:306 | Used by:Timeline |
Symbol 308 Graphic | Used by:309 | |
Symbol 309 Button | Uses:308 | Used by:Timeline |
Symbol 310 Graphic | Used by:311 | |
Symbol 311 Button | Uses:310 | Used by:Timeline |
Symbol 312 Graphic | Used by:313 | |
Symbol 313 Button | Uses:312 | Used by:Timeline |
Symbol 314 Graphic | Used by:315 | |
Symbol 315 Button | Uses:314 | Used by:Timeline |
Symbol 316 Graphic | Used by:317 | |
Symbol 317 Button | Uses:316 | Used by:Timeline |
Symbol 318 Graphic | Used by:319 | |
Symbol 319 Button | Uses:318 | Used by:Timeline |
Symbol 320 Graphic | Used by:321 | |
Symbol 321 Button | Uses:320 | Used by:Timeline |
Symbol 322 Graphic | Used by:323 | |
Symbol 323 Button | Uses:322 | Used by:Timeline |
Symbol 324 Graphic | Used by:325 | |
Symbol 325 Button | Uses:324 | Used by:Timeline |
Symbol 326 Graphic | Used by:327 | |
Symbol 327 Button | Uses:326 | Used by:Timeline |
Symbol 328 Graphic | Used by:329 | |
Symbol 329 Button | Uses:328 | Used by:Timeline |
Symbol 330 Button | Uses:250 | Used by:Timeline |
Symbol 331 Button | Uses:250 | Used by:Timeline |
Symbol 332 Graphic | Used by:340 | |
Symbol 333 Graphic | Used by:340 | |
Symbol 334 Button | Uses:4 | Used by:340 |
Symbol 335 Graphic | Used by:340 | |
Symbol 336 Font | Used by:337 | |
Symbol 337 Text | Uses:336 | Used by:340 |
Symbol 338 Graphic | Used by:340 | |
Symbol 339 Graphic | Used by:340 | |
Symbol 340 MovieClip | Uses:332 333 334 335 337 338 339 | Used by:Timeline |
Symbol 341 Graphic | Used by:365 | |
Symbol 342 Graphic | Used by:343 | |
Symbol 343 MovieClip | Uses:342 | Used by:365 |
Symbol 344 Graphic | Used by:345 | |
Symbol 345 MovieClip | Uses:344 | Used by:365 |
Symbol 346 Graphic | Used by:347 | |
Symbol 347 MovieClip | Uses:346 | Used by:365 |
Symbol 348 Graphic | Used by:349 | |
Symbol 349 MovieClip | Uses:348 | Used by:365 |
Symbol 350 Graphic | Used by:351 | |
Symbol 351 MovieClip | Uses:350 | Used by:352 |
Symbol 352 MovieClip | Uses:351 | Used by:365 |
Symbol 353 Graphic | Used by:354 | |
Symbol 354 MovieClip | Uses:353 | Used by:355 |
Symbol 355 MovieClip | Uses:354 | Used by:365 |
Symbol 356 Graphic | Used by:357 | |
Symbol 357 MovieClip | Uses:356 | Used by:358 |
Symbol 358 MovieClip | Uses:357 | Used by:365 |
Symbol 359 Graphic | Used by:360 | |
Symbol 360 MovieClip | Uses:359 | Used by:361 |
Symbol 361 MovieClip | Uses:360 | Used by:365 |
Symbol 362 Graphic | Used by:363 | |
Symbol 363 MovieClip | Uses:362 | Used by:364 |
Symbol 364 MovieClip | Uses:363 | Used by:365 |
Symbol 365 MovieClip | Uses:341 343 345 347 349 352 355 358 361 364 | Used by:Timeline |
Symbol 366 Graphic | Used by:369 | |
Symbol 367 Graphic | Used by:369 | |
Symbol 368 Graphic | Used by:369 | |
Symbol 369 MovieClip | Uses:366 367 368 | Used by:Timeline |
Symbol 370 Graphic | Used by:371 | |
Symbol 371 MovieClip | Uses:370 | Used by:Timeline |
Instance Names
"coloring_picture" | Frame 2 | Symbol 248 MovieClip |
"tool_options" | Frame 2 | Symbol 271 MovieClip |
"picture_options" | Frame 2 | Symbol 287 MovieClip |
"text_stamp_color" | Frame 2 | Symbol 289 MovieClip |
"picture_preview" | Frame 2 | Symbol 340 MovieClip |
"stamp_preview" | Frame 2 | Symbol 365 MovieClip |
"cover_all_white" | Frame 2 | Symbol 371 MovieClip |
"left_tip" | Symbol 6 MovieClip [line] Frame 2 | Symbol 3 MovieClip |
"middle" | Symbol 6 MovieClip [line] Frame 2 | Symbol 5 MovieClip |
"right_tip" | Symbol 6 MovieClip [line] Frame 2 | Symbol 3 MovieClip |
"pasek" | Symbol 17 MovieClip Frame 1 | Symbol 16 MovieClip |
"sub" | Symbol 248 MovieClip Frame 1 | Symbol 135 MovieClip |
"sub" | Symbol 248 MovieClip Frame 2 | Symbol 158 MovieClip |
"sub" | Symbol 248 MovieClip Frame 3 | Symbol 203 MovieClip |
Special Tags
ExportAssets (56) | Timeline Frame 1 | Symbol 6 as "line" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "circle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 8 as "rectangle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "text_stamp" |
Labels
"#p" | Frame 2 |
Dynamic Text Variables
text | Symbol 10 EditableText | "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30" |
|