STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229703 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2596 · P5192 |
This is the info page for Flash #121863 |
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 |
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]
Instance of Symbol 26 MovieClip in Frame 1onClipEvent (load) { xin_motion_val = "Toward"; xin_alphatype_val = "No"; xout_motion_val = "None"; xout_alphatype_val = "No"; perc_req_val = 100; show_perc_val = "Yes"; slow_factor_val = 0.2; init_action_val = "_root.stop();"; play_action_val = "_root.play();"; }Frame 186stop(); 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 /coloring_picture) { if (_root.coloring_picture[j] != _level0.coloring_picture.picture_outline) { _root.coloring_picture[j].removeMovieClip(); } } for (var k in /stamp_preview) { _root.stamp_preview[k].removeMovieClip(); } }; painter.prototype.remove_coloring = function () { var piece_color; for (var j in /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 /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 /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 275 MovieClip "coloring_picture" in Frame 186onClipEvent (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 316 MovieClip "text_stamp_color" in Frame 186onClipEvent (enterFrame) { }Symbol 6 MovieClip [line] Frame 1stop();Symbol 26 MovieClip Frame 1stop();Instance of Symbol 25 MovieClip "swfloader" in Symbol 26 MovieClip Frame 1onClipEvent (load) { function strip_spaces(str) { var _str = new String(""); var j = 0; while (j < str.length) { if ((str.charAt(j) != " ") && (str.charAt(j) != ";")) { _str = _str + str.charAt(j); } j++; } return(_str); } function simple_script(action, timeline) { action = strip_spaces(action); if ((0 < action.length) && ((action.indexOf(")") != -1) && (action.indexOf("(") != -1))) { var sections = action.split("."); var timeline_action = sections.pop(); var first_paren = timeline_action.indexOf("("); var second_paren = timeline_action.indexOf(")"); var timeline_function = timeline_action.substr(0, first_paren); var function_parameter = timeline_action.substr(first_paren + 1, second_paren - (first_paren + 1)); var timeline_reference = timeline; var j = 0; while (j < sections.length) { timeline_reference = timeline_reference[sections[j]]; j++; } if (function_parameter.indexOf("\"") != -1) { function_parameter = function_parameter.substr(1, function_parameter.length - 2); } timeline_reference[timeline_function](function_parameter); } } function execute_action() { unloaded = true; _parent._visible = false; simple_script(_parent.play_action_val, _parent); } _parent.anim.gotoAndStop(1); simple_script(_parent.init_action_val, _parent); var done = false; var unloaded = false; var orig_x = _parent._x; var orig_y = _parent._y; var dist_x = (_parent._x + ((_parent._width * 2) / 3)); var dist_y = (_parent._y + ((_parent._height * 2) / 3)); var orig_a = _parent._alpha; var accel_jump = 0.75; var slow_factor = _parent.slow_factor_val; var speed_factor = (1 + (slow_factor / (1 - slow_factor))); var ready = false; var perc_fadeout = 0; _parent.perc._x = _parent.anim._x - (_parent.perc._width / 2); _parent.perc._y = _parent.anim._y - (_parent.perc._height / 2); if (slow_factor < 1) { var _local1 = "Up"; switch (_parent.xin_motion_val) { case _local1 : _parent._y = orig_y + (dist_y * 2); break; case "Down" : _parent._y = orig_y - (dist_y * 2); break; case "Left" : _parent._x = orig_x + (dist_x * 2); break; case "Right" : _parent._x = orig_x - (dist_x * 2); break; case "Toward" : _parent._xscale = (_parent._yscale = 1); break; case "None" : _parent._alpha = 0; } } else { ready = true; } } onClipEvent (enterFrame) { if (unloaded) { return(undefined); } if (!ready) { var _local1 = "Toward"; switch (_parent.xin_motion_val) { case _local1 : _parent._xscale = _parent._xscale + ((100 - _parent._xscale) * slow_factor); _parent._yscale = _parent._xscale; if (_parent.xin_alphatype_val == "Yes") { _parent._alpha = Math.round((orig_a / 100) * Math.max(0, Math.min(_parent._xscale, 100))); } if (Math.abs(100 - _parent._xscale) < 0.5) { _parent._xscale = (_parent._yscale = 100); _parent._alpha = orig_a; ready = true; } break; default : _parent._x = _parent._x + ((orig_x - _parent._x) * slow_factor); _parent._y = _parent._y + ((orig_y - _parent._y) * slow_factor); if (_parent.xin_alphatype_val == "Yes") { if (_parent.xin_motion_val == "None") { _parent._alpha = _parent._alpha + ((orig_a - _parent._alpha) * slow_factor); } else if (Math.abs(orig_y - _parent._y) < Math.abs(orig_x - _parent._x)) { _parent._alpha = 100 - Math.round(((orig_a / 100) * (Math.min(dist_x, Math.abs(_parent._x - orig_x)) / dist_x)) * 100); } else { _parent._alpha = 100 - Math.round(((orig_a / 100) * (Math.min(dist_y, Math.abs(_parent._y - orig_y)) / dist_y)) * 100); } } if (!(((_parent.xin_motion_val == "None") && (1 >= Math.abs(_parent._alpha - orig_a))) || (((_parent.xin_motion_val != "None") && (Math.abs(_parent._y - orig_y) < 0.5)) && (Math.abs(_parent._x - orig_x) < 0.5)))) { break; } _parent._x = orig_x; _parent._y = orig_y; _parent._alpha = orig_a; ready = true; } } else if (!done) { var rl = _root.getBytesLoaded(); var rt = (_root.getBytesTotal() * (_parent.perc_req_val / 100)); if ((10 < rl) && (10 < rt)) { rl = Math.min(rl, rt); var new_frame = (_parent.anim._currentframe + Math.ceil(((_parent.anim._totalframes * (rl / rt)) - _parent.anim._currentframe) / 4)); new_frame = Math.max(1, new_frame); if (_parent.show_perc_val == "Yes") { _parent.perc.text = Math.round(((new_frame - 1) / (_parent.anim._totalframes - 1)) * 100) + " %"; } if (new_frame != _parent.anim._currentframe) { _parent.anim.gotoAndStop(new_frame); } if ((_parent.anim._totalframes == _parent.anim._currentframe) && (rl >= rt)) { done = true; } } } else if (slow_factor < 1) { var _local1 = "Down"; switch (_parent.xout_motion_val) { case _local1 : if (orig_y >= _parent._y) { _parent._y = orig_y + accel_jump; } _parent._y = orig_y + (Math.abs(_parent._y - orig_y) * speed_factor); perc_fadeout = Math.round((Math.min(dist_y, Math.abs(_parent._y - orig_y)) / dist_y) * 100); if ((orig_y + (dist_y * 2)) < _parent._y) { execute_action(); } break; case "Up" : if (_parent._y >= orig_y) { _parent._y = orig_y - accel_jump; } _parent._y = orig_y - (Math.abs(_parent._y - orig_y) * speed_factor); perc_fadeout = Math.round((Math.min(dist_y, Math.abs(_parent._y - orig_y)) / dist_y) * 100); if (_parent._y < (orig_y - (dist_y * 2))) { execute_action(); } break; case "Right" : if (orig_x >= _parent._x) { _parent._x = orig_x + accel_jump; } _parent._x = orig_x + (Math.abs(_parent._x - orig_x) * speed_factor); perc_fadeout = Math.round((Math.min(dist_x, Math.abs(_parent._x - orig_x)) / dist_x) * 100); if ((orig_x + (dist_x * 2)) < _parent._x) { execute_action(); } break; case "Left" : if (_parent._x >= orig_x) { _parent._x = orig_x - accel_jump; } _parent._x = orig_x - (Math.abs(_parent._x - orig_x) * speed_factor); perc_fadeout = Math.round((Math.min(dist_x, Math.abs(_parent._x - orig_x)) / dist_x) * 100); if (_parent._x < (orig_x - (dist_x * 2))) { execute_action(); } break; case "Away" : if ((_parent._xscale >= 100) || (_parent._yscale >= 100)) { _parent._xscale = (_parent._yscale = 100 - accel_jump); } _parent._xscale = (_parent._yscale = Math.max(0.5, 100 - ((100 - _parent._yscale) * speed_factor))); perc_fadeout = 100 - Math.round(Math.max(0, Math.min(_parent._xscale, 100))); if (_parent._xscale < 1) { execute_action(); } break; default : perc_fadeout = perc_fadeout + ((100 - perc_fadeout) * slow_factor); if (1 < Math.abs(perc_fadeout - 100)) { break; } execute_action(); } _local1 = "Yes"; if (!((_parent.xout_alphatype_val) === (_local1))) { } else { _parent._alpha = (orig_a / 100) * (100 - perc_fadeout); } } else { execute_action(); } }Instance of Symbol 105 MovieClip in Symbol 162 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 107 MovieClip in Symbol 162 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 109 MovieClip in Symbol 162 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 111 MovieClip in Symbol 162 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 113 MovieClip in Symbol 162 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 115 MovieClip in Symbol 162 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 117 MovieClip in Symbol 162 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 119 MovieClip in Symbol 162 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 121 MovieClip in Symbol 162 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 123 MovieClip in Symbol 162 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 125 MovieClip in Symbol 162 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 127 MovieClip in Symbol 162 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 129 MovieClip in Symbol 162 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 131 MovieClip in Symbol 162 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 133 MovieClip in Symbol 162 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 135 MovieClip in Symbol 162 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 137 MovieClip in Symbol 162 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 162 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 162 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 162 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 162 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 162 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 162 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 162 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 162 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 162 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 157 MovieClip in Symbol 162 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 159 MovieClip in Symbol 162 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 161 MovieClip in Symbol 162 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 185 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 185 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 185 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 185 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 185 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 185 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 185 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 185 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 185 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 189 MovieClip in Symbol 230 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 191 MovieClip in Symbol 230 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 193 MovieClip in Symbol 230 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 195 MovieClip in Symbol 230 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 197 MovieClip in Symbol 230 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 199 MovieClip in Symbol 230 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 201 MovieClip in Symbol 230 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 203 MovieClip in Symbol 230 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 205 MovieClip in Symbol 230 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 207 MovieClip in Symbol 230 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 209 MovieClip in Symbol 230 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 211 MovieClip in Symbol 230 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 213 MovieClip in Symbol 230 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 215 MovieClip in Symbol 230 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 217 MovieClip in Symbol 230 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 219 MovieClip in Symbol 230 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 221 MovieClip in Symbol 230 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 223 MovieClip in Symbol 230 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 225 MovieClip in Symbol 230 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 227 MovieClip in Symbol 230 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 229 MovieClip in Symbol 230 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 233 MovieClip in Symbol 274 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 235 MovieClip in Symbol 274 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 237 MovieClip in Symbol 274 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 239 MovieClip in Symbol 274 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 241 MovieClip in Symbol 274 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 243 MovieClip in Symbol 274 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 245 MovieClip in Symbol 274 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 247 MovieClip in Symbol 274 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 249 MovieClip in Symbol 274 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 251 MovieClip in Symbol 274 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 253 MovieClip in Symbol 274 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 255 MovieClip in Symbol 274 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 257 MovieClip in Symbol 274 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 259 MovieClip in Symbol 274 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 261 MovieClip in Symbol 274 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 263 MovieClip in Symbol 274 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 265 MovieClip in Symbol 274 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 267 MovieClip in Symbol 274 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 269 MovieClip in Symbol 274 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 271 MovieClip in Symbol 274 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 273 MovieClip in Symbol 274 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 275 MovieClip Frame 1stop();Symbol 275 MovieClip Frame 2stop();Symbol 275 MovieClip Frame 3stop();Symbol 275 MovieClip Frame 4stop();Symbol 278 Buttonon (release) { var left = 0; if ((left + 1) < stamp_preview._currentframe) { stamp_preview.prevFrame(); } }Symbol 279 Buttonon (release) { var right = stamp_preview._totalframes; if (stamp_preview._currentframe < right) { stamp_preview.nextFrame(); } }Symbol 287 Buttonon (press) { this.gotoAndStop(1); _parent.picture_options.gotoAndStop(1); } on (release, releaseOutside) { _parent.my_painter.change_tool("fill"); }Symbol 292 Buttonon (press) { this.gotoAndStop(2); _parent.picture_options.gotoAndStop(1); } on (release, releaseOutside) { _parent.my_painter.change_tool("circle"); }Symbol 297 Buttonon (press) { this.gotoAndStop(3); _parent.picture_options.gotoAndStop(1); } on (release, releaseOutside) { _parent.my_painter.change_tool("rectangle"); }Symbol 298 MovieClip Frame 1stop();Symbol 303 Buttonon (release) { _parent.my_painter.undo(); }Symbol 308 Buttonon (release) { _parent.my_painter.reset_picture(); }Symbol 313 Buttonon (press) { _root.cover_all_white.gotoAndStop(2); } on (release) { printNum (_level0, "bmovie"); _root._x = -50; loadMovieNum ("resume_button.swf", 10); }Symbol 314 MovieClip Frame 1stop();Symbol 318 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 320 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 322 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 324 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 326 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 328 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 330 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 332 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 334 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 336 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 338 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 340 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 342 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 344 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 346 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 348 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 350 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 352 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 354 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 356 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 357 Buttonon (release) { picture_preview.prevFrame(); var right = (picture_preview._currentframe * 3); var left = ((picture_preview._currentframe - 1) * 3); }Symbol 358 Buttonon (release) { picture_preview.nextFrame(); var right = (picture_preview._currentframe * 3); var left = ((picture_preview._currentframe - 1) * 3); }Symbol 361 Buttonon (release) { _parent.my_painter.reset_picture(); _parent.coloring_picture.gotoAndStop(this._currentframe); }Symbol 367 MovieClip Frame 1stop();Symbol 392 MovieClip Frame 1stop();Instance of Symbol 370 MovieClip in Symbol 392 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 372 MovieClip in Symbol 392 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 374 MovieClip in Symbol 392 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 376 MovieClip in Symbol 392 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 379 MovieClip in Symbol 392 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 382 MovieClip in Symbol 392 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 385 MovieClip in Symbol 392 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 388 MovieClip in Symbol 392 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 391 MovieClip in Symbol 392 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 394 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 361 | |
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 23 | |
Symbol 10 EditableText | Uses:9 | Used by:11 |
Symbol 11 MovieClip [text_stamp] | Uses:10 | |
Symbol 12 Graphic | Used by:13 | |
Symbol 13 MovieClip | Uses:12 | Used by:22 |
Symbol 14 Graphic | Used by:15 | |
Symbol 15 MovieClip | Uses:14 | Used by:22 |
Symbol 16 Graphic | Used by:22 | |
Symbol 17 ShapeTweening | Used by:22 | |
Symbol 18 Graphic | Used by:22 | |
Symbol 19 Graphic | Used by:20 | |
Symbol 20 MovieClip | Uses:19 | Used by:22 |
Symbol 21 Graphic | Used by:22 | |
Symbol 22 MovieClip | Uses:13 15 16 17 18 20 21 | Used by:26 |
Symbol 23 EditableText | Uses:9 | Used by:24 |
Symbol 24 MovieClip | Uses:23 | Used by:26 |
Symbol 25 MovieClip | Used by:26 | |
Symbol 26 MovieClip | Uses:22 24 25 | Used by:Timeline |
Symbol 27 Graphic | Used by:Timeline | |
Symbol 28 Graphic | Used by:Timeline | |
Symbol 29 Graphic | Used by:100 | |
Symbol 30 Graphic | Used by:100 | |
Symbol 31 Graphic | Used by:100 | |
Symbol 32 Graphic | Used by:100 | |
Symbol 33 Graphic | Used by:100 | |
Symbol 34 Graphic | Used by:100 | |
Symbol 35 Sound | Used by:100 | |
Symbol 36 Graphic | Used by:100 | |
Symbol 37 Graphic | Used by:100 | |
Symbol 38 Graphic | Used by:100 | |
Symbol 39 Graphic | Used by:100 | |
Symbol 40 Graphic | Used by:100 | |
Symbol 41 Graphic | Used by:100 | |
Symbol 42 Graphic | Used by:100 | |
Symbol 43 Graphic | Used by:100 | |
Symbol 44 Graphic | Used by:100 | |
Symbol 45 Graphic | Used by:100 | |
Symbol 46 Graphic | Used by:100 | |
Symbol 47 Graphic | Used by:100 | |
Symbol 48 Graphic | Used by:100 | |
Symbol 49 Sound | Used by:100 | |
Symbol 50 Graphic | Used by:100 | |
Symbol 51 Graphic | Used by:100 | |
Symbol 52 Graphic | Used by:100 | |
Symbol 53 Graphic | Used by:100 | |
Symbol 54 Graphic | Used by:100 | |
Symbol 55 Graphic | Used by:100 | |
Symbol 56 Graphic | Used by:100 | |
Symbol 57 Graphic | Used by:100 | |
Symbol 58 Graphic | Used by:100 | |
Symbol 59 Graphic | Used by:100 | |
Symbol 60 Graphic | Used by:100 | |
Symbol 61 Graphic | Used by:100 | |
Symbol 62 Graphic | Used by:100 | |
Symbol 63 Graphic | Used by:100 | |
Symbol 64 Graphic | Used by:100 | |
Symbol 65 Graphic | Used by:100 | |
Symbol 66 Graphic | Used by:100 | |
Symbol 67 Graphic | Used by:100 | |
Symbol 68 Graphic | Used by:100 | |
Symbol 69 Graphic | Used by:100 | |
Symbol 70 Graphic | Used by:100 | |
Symbol 71 Graphic | Used by:100 | |
Symbol 72 Graphic | Used by:100 | |
Symbol 73 Graphic | Used by:100 | |
Symbol 74 Graphic | Used by:100 | |
Symbol 75 Graphic | Used by:100 | |
Symbol 76 Graphic | Used by:100 | |
Symbol 77 Graphic | Used by:100 | |
Symbol 78 Graphic | Used by:100 | |
Symbol 79 Graphic | Used by:100 | |
Symbol 80 Graphic | Used by:100 | |
Symbol 81 Graphic | Used by:100 | |
Symbol 82 Graphic | Used by:100 | |
Symbol 83 Graphic | Used by:100 | |
Symbol 84 Graphic | Used by:100 | |
Symbol 85 Graphic | Used by:100 | |
Symbol 86 Graphic | Used by:100 | |
Symbol 87 Graphic | Used by:100 | |
Symbol 88 Graphic | Used by:100 | |
Symbol 89 Graphic | Used by:100 | |
Symbol 90 Graphic | Used by:100 | |
Symbol 91 Graphic | Used by:100 | |
Symbol 92 Graphic | Used by:100 | |
Symbol 93 Graphic | Used by:100 | |
Symbol 94 Graphic | Used by:100 | |
Symbol 95 Graphic | Used by:100 | |
Symbol 96 Graphic | Used by:100 | |
Symbol 97 Graphic | Used by:100 | |
Symbol 98 Graphic | Used by:100 | |
Symbol 99 Graphic | Used by:100 | |
Symbol 100 MovieClip | Uses:29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | Used by:Timeline |
Symbol 101 Graphic | Used by:Timeline | |
Symbol 102 Graphic | Used by:275 | |
Symbol 103 Graphic | Used by:162 | |
Symbol 104 Graphic | Used by:105 | |
Symbol 105 MovieClip | Uses:104 | Used by:162 |
Symbol 106 Graphic | Used by:107 | |
Symbol 107 MovieClip | Uses:106 | Used by:162 |
Symbol 108 Graphic | Used by:109 | |
Symbol 109 MovieClip | Uses:108 | Used by:162 |
Symbol 110 Graphic | Used by:111 | |
Symbol 111 MovieClip | Uses:110 | Used by:162 |
Symbol 112 Graphic | Used by:113 | |
Symbol 113 MovieClip | Uses:112 | Used by:162 |
Symbol 114 Graphic | Used by:115 | |
Symbol 115 MovieClip | Uses:114 | Used by:162 |
Symbol 116 Graphic | Used by:117 | |
Symbol 117 MovieClip | Uses:116 | Used by:162 |
Symbol 118 Graphic | Used by:119 | |
Symbol 119 MovieClip | Uses:118 | Used by:162 |
Symbol 120 Graphic | Used by:121 | |
Symbol 121 MovieClip | Uses:120 | Used by:162 |
Symbol 122 Graphic | Used by:123 | |
Symbol 123 MovieClip | Uses:122 | Used by:162 |
Symbol 124 Graphic | Used by:125 | |
Symbol 125 MovieClip | Uses:124 | Used by:162 |
Symbol 126 Graphic | Used by:127 | |
Symbol 127 MovieClip | Uses:126 | Used by:162 |
Symbol 128 Graphic | Used by:129 | |
Symbol 129 MovieClip | Uses:128 | Used by:162 |
Symbol 130 Graphic | Used by:131 | |
Symbol 131 MovieClip | Uses:130 | Used by:162 |
Symbol 132 Graphic | Used by:133 | |
Symbol 133 MovieClip | Uses:132 | Used by:162 |
Symbol 134 Graphic | Used by:135 | |
Symbol 135 MovieClip | Uses:134 | Used by:162 |
Symbol 136 Graphic | Used by:137 | |
Symbol 137 MovieClip | Uses:136 | Used by:162 |
Symbol 138 Graphic | Used by:139 | |
Symbol 139 MovieClip | Uses:138 | Used by:162 |
Symbol 140 Graphic | Used by:141 | |
Symbol 141 MovieClip | Uses:140 | Used by:162 |
Symbol 142 Graphic | Used by:143 | |
Symbol 143 MovieClip | Uses:142 | Used by:162 |
Symbol 144 Graphic | Used by:145 | |
Symbol 145 MovieClip | Uses:144 | Used by:162 |
Symbol 146 Graphic | Used by:147 | |
Symbol 147 MovieClip | Uses:146 | Used by:162 |
Symbol 148 Graphic | Used by:149 | |
Symbol 149 MovieClip | Uses:148 | Used by:162 |
Symbol 150 Graphic | Used by:151 | |
Symbol 151 MovieClip | Uses:150 | Used by:162 |
Symbol 152 Graphic | Used by:153 | |
Symbol 153 MovieClip | Uses:152 | Used by:162 |
Symbol 154 Graphic | Used by:155 | |
Symbol 155 MovieClip | Uses:154 | Used by:162 |
Symbol 156 Graphic | Used by:157 | |
Symbol 157 MovieClip | Uses:156 | Used by:162 |
Symbol 158 Graphic | Used by:159 | |
Symbol 159 MovieClip | Uses:158 | Used by:162 |
Symbol 160 Graphic | Used by:161 | |
Symbol 161 MovieClip | Uses:160 | Used by:162 |
Symbol 162 MovieClip | Uses:103 105 107 109 111 113 115 117 119 121 123 125 127 129 131 133 135 137 139 141 143 145 147 149 151 153 155 157 159 161 | Used by:275 |
Symbol 163 Graphic | Used by:275 | |
Symbol 164 Graphic | Used by:185 | |
Symbol 165 Graphic | Used by:166 | |
Symbol 166 MovieClip | Uses:165 | Used by:185 |
Symbol 167 Graphic | Used by:168 | |
Symbol 168 MovieClip | Uses:167 | Used by:185 |
Symbol 169 Graphic | Used by:170 | |
Symbol 170 MovieClip | Uses:169 | Used by:185 |
Symbol 171 Graphic | Used by:172 | |
Symbol 172 MovieClip | Uses:171 | Used by:185 |
Symbol 173 Graphic | Used by:174 | |
Symbol 174 MovieClip | Uses:173 | Used by:185 |
Symbol 175 Graphic | Used by:176 | |
Symbol 176 MovieClip | Uses:175 | Used by:185 |
Symbol 177 Graphic | Used by:178 | |
Symbol 178 MovieClip | Uses:177 | Used by:185 |
Symbol 179 Graphic | Used by:180 | |
Symbol 180 MovieClip | Uses:179 | Used by:185 |
Symbol 181 Graphic | Used by:182 | |
Symbol 182 MovieClip | Uses:181 | Used by:185 |
Symbol 183 Graphic | Used by:184 | |
Symbol 184 MovieClip | Uses:183 | Used by:185 |
Symbol 185 MovieClip | Uses:164 166 168 170 172 174 176 178 180 182 184 | Used by:275 |
Symbol 186 Graphic | Used by:275 | |
Symbol 187 Graphic | Used by:230 | |
Symbol 188 Graphic | Used by:189 | |
Symbol 189 MovieClip | Uses:188 | Used by:230 |
Symbol 190 Graphic | Used by:191 | |
Symbol 191 MovieClip | Uses:190 | Used by:230 |
Symbol 192 Graphic | Used by:193 | |
Symbol 193 MovieClip | Uses:192 | Used by:230 |
Symbol 194 Graphic | Used by:195 | |
Symbol 195 MovieClip | Uses:194 | Used by:230 |
Symbol 196 Graphic | Used by:197 | |
Symbol 197 MovieClip | Uses:196 | Used by:230 |
Symbol 198 Graphic | Used by:199 | |
Symbol 199 MovieClip | Uses:198 | Used by:230 |
Symbol 200 Graphic | Used by:201 | |
Symbol 201 MovieClip | Uses:200 | Used by:230 |
Symbol 202 Graphic | Used by:203 | |
Symbol 203 MovieClip | Uses:202 | Used by:230 |
Symbol 204 Graphic | Used by:205 | |
Symbol 205 MovieClip | Uses:204 | Used by:230 |
Symbol 206 Graphic | Used by:207 | |
Symbol 207 MovieClip | Uses:206 | Used by:230 |
Symbol 208 Graphic | Used by:209 | |
Symbol 209 MovieClip | Uses:208 | Used by:230 |
Symbol 210 Graphic | Used by:211 | |
Symbol 211 MovieClip | Uses:210 | Used by:230 |
Symbol 212 Graphic | Used by:213 | |
Symbol 213 MovieClip | Uses:212 | Used by:230 |
Symbol 214 Graphic | Used by:215 | |
Symbol 215 MovieClip | Uses:214 | Used by:230 |
Symbol 216 Graphic | Used by:217 | |
Symbol 217 MovieClip | Uses:216 | Used by:230 |
Symbol 218 Graphic | Used by:219 | |
Symbol 219 MovieClip | Uses:218 | Used by:230 |
Symbol 220 Graphic | Used by:221 | |
Symbol 221 MovieClip | Uses:220 | Used by:230 |
Symbol 222 Graphic | Used by:223 | |
Symbol 223 MovieClip | Uses:222 | Used by:230 |
Symbol 224 Graphic | Used by:225 | |
Symbol 225 MovieClip | Uses:224 | Used by:230 |
Symbol 226 Graphic | Used by:227 | |
Symbol 227 MovieClip | Uses:226 | Used by:230 |
Symbol 228 Graphic | Used by:229 | |
Symbol 229 MovieClip | Uses:228 | Used by:230 |
Symbol 230 MovieClip | Uses:187 189 191 193 195 197 199 201 203 205 207 209 211 213 215 217 219 221 223 225 227 229 | Used by:275 |
Symbol 231 Graphic | Used by:275 | |
Symbol 232 Graphic | Used by:233 | |
Symbol 233 MovieClip | Uses:232 | Used by:274 |
Symbol 234 Graphic | Used by:235 | |
Symbol 235 MovieClip | Uses:234 | Used by:274 |
Symbol 236 Graphic | Used by:237 | |
Symbol 237 MovieClip | Uses:236 | Used by:274 |
Symbol 238 Graphic | Used by:239 | |
Symbol 239 MovieClip | Uses:238 | Used by:274 |
Symbol 240 Graphic | Used by:241 | |
Symbol 241 MovieClip | Uses:240 | Used by:274 |
Symbol 242 Graphic | Used by:243 | |
Symbol 243 MovieClip | Uses:242 | Used by:274 |
Symbol 244 Graphic | Used by:245 | |
Symbol 245 MovieClip | Uses:244 | Used by:274 |
Symbol 246 Graphic | Used by:247 | |
Symbol 247 MovieClip | Uses:246 | Used by:274 |
Symbol 248 Graphic | Used by:249 | |
Symbol 249 MovieClip | Uses:248 | Used by:274 |
Symbol 250 Graphic | Used by:251 | |
Symbol 251 MovieClip | Uses:250 | Used by:274 |
Symbol 252 Graphic | Used by:253 | |
Symbol 253 MovieClip | Uses:252 | Used by:274 |
Symbol 254 Graphic | Used by:255 | |
Symbol 255 MovieClip | Uses:254 | Used by:274 |
Symbol 256 Graphic | Used by:257 | |
Symbol 257 MovieClip | Uses:256 | Used by:274 |
Symbol 258 Graphic | Used by:259 | |
Symbol 259 MovieClip | Uses:258 | Used by:274 |
Symbol 260 Graphic | Used by:261 | |
Symbol 261 MovieClip | Uses:260 | Used by:274 |
Symbol 262 Graphic | Used by:263 | |
Symbol 263 MovieClip | Uses:262 | Used by:274 |
Symbol 264 Graphic | Used by:265 | |
Symbol 265 MovieClip | Uses:264 | Used by:274 |
Symbol 266 Graphic | Used by:267 | |
Symbol 267 MovieClip | Uses:266 | Used by:274 |
Symbol 268 Graphic | Used by:269 | |
Symbol 269 MovieClip | Uses:268 | Used by:274 |
Symbol 270 Graphic | Used by:271 | |
Symbol 271 MovieClip | Uses:270 | Used by:274 |
Symbol 272 Graphic | Used by:273 | |
Symbol 273 MovieClip | Uses:272 | Used by:274 |
Symbol 274 MovieClip | Uses:233 235 237 239 241 243 245 247 249 251 253 255 257 259 261 263 265 267 269 271 273 | Used by:275 |
Symbol 275 MovieClip | Uses:102 162 163 185 186 230 231 274 | Used by:Timeline |
Symbol 276 Graphic | Used by:Timeline | |
Symbol 277 Graphic | Used by:278 279 357 358 | |
Symbol 278 Button | Uses:277 | Used by:Timeline |
Symbol 279 Button | Uses:277 | Used by:Timeline |
Symbol 280 Graphic | Used by:287 292 297 298 303 308 313 314 | |
Symbol 281 Graphic | Used by:287 292 297 298 303 308 313 314 | |
Symbol 282 Graphic | Used by:287 | |
Symbol 283 Graphic | Used by:287 | |
Symbol 284 Font | Used by:285 290 295 301 306 311 | |
Symbol 285 Text | Uses:284 | Used by:287 |
Symbol 286 Graphic | Used by:287 | |
Symbol 287 Button | Uses:282 280 283 285 281 286 | Used by:298 |
Symbol 288 Graphic | Used by:292 | |
Symbol 289 Graphic | Used by:292 | |
Symbol 290 Text | Uses:284 | Used by:292 |
Symbol 291 Graphic | Used by:292 | |
Symbol 292 Button | Uses:288 280 289 290 281 291 | Used by:298 |
Symbol 293 Graphic | Used by:297 | |
Symbol 294 Graphic | Used by:297 | |
Symbol 295 Text | Uses:284 | Used by:297 |
Symbol 296 Graphic | Used by:297 | |
Symbol 297 Button | Uses:293 280 294 295 281 296 | Used by:298 |
Symbol 298 MovieClip | Uses:280 281 287 292 297 | Used by:Timeline |
Symbol 299 Graphic | Used by:303 | |
Symbol 300 Graphic | Used by:303 | |
Symbol 301 Text | Uses:284 | Used by:303 |
Symbol 302 Graphic | Used by:303 | |
Symbol 303 Button | Uses:299 280 300 301 281 302 | Used by:314 |
Symbol 304 Graphic | Used by:308 | |
Symbol 305 Graphic | Used by:308 | |
Symbol 306 Text | Uses:284 | Used by:308 |
Symbol 307 Graphic | Used by:308 | |
Symbol 308 Button | Uses:304 280 305 306 281 307 | Used by:314 |
Symbol 309 Graphic | Used by:313 | |
Symbol 310 Graphic | Used by:313 | |
Symbol 311 Text | Uses:284 | Used by:313 |
Symbol 312 Graphic | Used by:313 | |
Symbol 313 Button | Uses:309 280 310 311 281 312 | Used by:314 |
Symbol 314 MovieClip | Uses:280 303 308 313 281 | Used by:Timeline |
Symbol 315 Graphic | Used by:316 | |
Symbol 316 MovieClip | Uses:315 | Used by:Timeline |
Symbol 317 Graphic | Used by:318 | |
Symbol 318 Button | Uses:317 | Used by:Timeline |
Symbol 319 Graphic | Used by:320 | |
Symbol 320 Button | Uses:319 | Used by:Timeline |
Symbol 321 Graphic | Used by:322 | |
Symbol 322 Button | Uses:321 | Used by:Timeline |
Symbol 323 Graphic | Used by:324 | |
Symbol 324 Button | Uses:323 | Used by:Timeline |
Symbol 325 Graphic | Used by:326 | |
Symbol 326 Button | Uses:325 | Used by:Timeline |
Symbol 327 Graphic | Used by:328 | |
Symbol 328 Button | Uses:327 | Used by:Timeline |
Symbol 329 Graphic | Used by:330 | |
Symbol 330 Button | Uses:329 | Used by:Timeline |
Symbol 331 Graphic | Used by:332 | |
Symbol 332 Button | Uses:331 | Used by:Timeline |
Symbol 333 Graphic | Used by:334 | |
Symbol 334 Button | Uses:333 | Used by:Timeline |
Symbol 335 Graphic | Used by:336 | |
Symbol 336 Button | Uses:335 | Used by:Timeline |
Symbol 337 Graphic | Used by:338 | |
Symbol 338 Button | Uses:337 | Used by:Timeline |
Symbol 339 Graphic | Used by:340 | |
Symbol 340 Button | Uses:339 | Used by:Timeline |
Symbol 341 Graphic | Used by:342 | |
Symbol 342 Button | Uses:341 | Used by:Timeline |
Symbol 343 Graphic | Used by:344 | |
Symbol 344 Button | Uses:343 | Used by:Timeline |
Symbol 345 Graphic | Used by:346 | |
Symbol 346 Button | Uses:345 | Used by:Timeline |
Symbol 347 Graphic | Used by:348 | |
Symbol 348 Button | Uses:347 | Used by:Timeline |
Symbol 349 Graphic | Used by:350 | |
Symbol 350 Button | Uses:349 | Used by:Timeline |
Symbol 351 Graphic | Used by:352 | |
Symbol 352 Button | Uses:351 | Used by:Timeline |
Symbol 353 Graphic | Used by:354 | |
Symbol 354 Button | Uses:353 | Used by:Timeline |
Symbol 355 Graphic | Used by:356 | |
Symbol 356 Button | Uses:355 | Used by:Timeline |
Symbol 357 Button | Uses:277 | Used by:Timeline |
Symbol 358 Button | Uses:277 | Used by:Timeline |
Symbol 359 Graphic | Used by:367 | |
Symbol 360 Graphic | Used by:367 | |
Symbol 361 Button | Uses:4 | Used by:367 |
Symbol 362 Graphic | Used by:367 | |
Symbol 363 Font | Used by:364 | |
Symbol 364 Text | Uses:363 | Used by:367 |
Symbol 365 Graphic | Used by:367 | |
Symbol 366 Graphic | Used by:367 | |
Symbol 367 MovieClip | Uses:359 360 361 362 364 365 366 | Used by:Timeline |
Symbol 368 Graphic | Used by:392 | |
Symbol 369 Graphic | Used by:370 | |
Symbol 370 MovieClip | Uses:369 | Used by:392 |
Symbol 371 Graphic | Used by:372 | |
Symbol 372 MovieClip | Uses:371 | Used by:392 |
Symbol 373 Graphic | Used by:374 | |
Symbol 374 MovieClip | Uses:373 | Used by:392 |
Symbol 375 Graphic | Used by:376 | |
Symbol 376 MovieClip | Uses:375 | Used by:392 |
Symbol 377 Graphic | Used by:378 | |
Symbol 378 MovieClip | Uses:377 | Used by:379 |
Symbol 379 MovieClip | Uses:378 | Used by:392 |
Symbol 380 Graphic | Used by:381 | |
Symbol 381 MovieClip | Uses:380 | Used by:382 |
Symbol 382 MovieClip | Uses:381 | Used by:392 |
Symbol 383 Graphic | Used by:384 | |
Symbol 384 MovieClip | Uses:383 | Used by:385 |
Symbol 385 MovieClip | Uses:384 | Used by:392 |
Symbol 386 Graphic | Used by:387 | |
Symbol 387 MovieClip | Uses:386 | Used by:388 |
Symbol 388 MovieClip | Uses:387 | Used by:392 |
Symbol 389 Graphic | Used by:390 | |
Symbol 390 MovieClip | Uses:389 | Used by:391 |
Symbol 391 MovieClip | Uses:390 | Used by:392 |
Symbol 392 MovieClip | Uses:368 370 372 374 376 379 382 385 388 391 | Used by:Timeline |
Symbol 393 Graphic | Used by:394 | |
Symbol 394 MovieClip | Uses:393 | Used by:Timeline |
Instance Names
"coloring_picture" | Frame 186 | Symbol 275 MovieClip |
"tool_options" | Frame 186 | Symbol 298 MovieClip |
"picture_options" | Frame 186 | Symbol 314 MovieClip |
"text_stamp_color" | Frame 186 | Symbol 316 MovieClip |
"picture_preview" | Frame 186 | Symbol 367 MovieClip |
"stamp_preview" | Frame 186 | Symbol 392 MovieClip |
"cover_all_white" | Frame 186 | Symbol 394 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 |
"anim" | Symbol 26 MovieClip Frame 1 | Symbol 22 MovieClip |
"perc" | Symbol 26 MovieClip Frame 1 | Symbol 24 MovieClip |
"swfloader" | Symbol 26 MovieClip Frame 1 | Symbol 25 MovieClip |
"sub" | Symbol 275 MovieClip Frame 1 | Symbol 162 MovieClip |
"sub" | Symbol 275 MovieClip Frame 2 | Symbol 185 MovieClip |
"sub" | Symbol 275 MovieClip Frame 3 | Symbol 230 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 186 |
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" |
text | Symbol 23 EditableText | "" |
|