STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229494 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2575 · P5149 |
This is the info page for Flash #113828 |
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 16stop(); 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 349 MovieClip "coloring_picture" in Frame 16onClipEvent (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 390 MovieClip "text_stamp_color" in Frame 16onClipEvent (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 90 MovieClip in Symbol 92 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 31 MovieClip in Symbol 109 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 33 MovieClip in Symbol 109 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 35 MovieClip in Symbol 109 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 37 MovieClip in Symbol 109 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 39 MovieClip in Symbol 109 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 41 MovieClip in Symbol 109 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 43 MovieClip in Symbol 109 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 45 MovieClip in Symbol 109 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 47 MovieClip in Symbol 109 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 49 MovieClip in Symbol 109 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 51 MovieClip in Symbol 109 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 53 MovieClip in Symbol 109 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 55 MovieClip in Symbol 109 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 57 MovieClip in Symbol 109 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 59 MovieClip in Symbol 109 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 61 MovieClip in Symbol 109 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 63 MovieClip in Symbol 109 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 65 MovieClip in Symbol 109 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 67 MovieClip in Symbol 109 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 69 MovieClip in Symbol 109 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 71 MovieClip in Symbol 109 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 73 MovieClip in Symbol 109 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 75 MovieClip in Symbol 109 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 77 MovieClip in Symbol 109 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 79 MovieClip in Symbol 109 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 81 MovieClip in Symbol 109 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 83 MovieClip in Symbol 109 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 85 MovieClip in Symbol 109 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 87 MovieClip in Symbol 109 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 109 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 109 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 109 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 109 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 109 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 109 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 109 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 109 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 109 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 196 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 163 MovieClip in Symbol 196 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 165 MovieClip in Symbol 196 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 167 MovieClip in Symbol 196 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 169 MovieClip in Symbol 196 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 171 MovieClip in Symbol 196 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 173 MovieClip in Symbol 196 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 175 MovieClip in Symbol 196 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 177 MovieClip in Symbol 196 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 179 MovieClip in Symbol 196 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 181 MovieClip in Symbol 196 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 183 MovieClip in Symbol 196 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 185 MovieClip in Symbol 196 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 187 MovieClip in Symbol 196 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 196 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 196 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 196 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 196 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 245 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 245 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 204 MovieClip in Symbol 245 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 245 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 245 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 245 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 245 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 245 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 245 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 245 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 245 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 245 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 245 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 245 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 245 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 245 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 245 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 245 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 245 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 245 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 245 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 245 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 245 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 300 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 300 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 300 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 300 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 300 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 300 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 300 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 300 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 300 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 300 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 300 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 300 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 300 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 275 MovieClip in Symbol 300 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 277 MovieClip in Symbol 300 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 279 MovieClip in Symbol 300 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 281 MovieClip in Symbol 300 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 283 MovieClip in Symbol 300 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 285 MovieClip in Symbol 300 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 287 MovieClip in Symbol 300 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 289 MovieClip in Symbol 300 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 291 MovieClip in Symbol 300 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 293 MovieClip in Symbol 300 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 295 MovieClip in Symbol 300 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 297 MovieClip in Symbol 300 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 299 MovieClip in Symbol 300 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 303 MovieClip in Symbol 348 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 305 MovieClip in Symbol 348 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 307 MovieClip in Symbol 348 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 309 MovieClip in Symbol 348 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 311 MovieClip in Symbol 348 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 313 MovieClip in Symbol 348 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 315 MovieClip in Symbol 348 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 317 MovieClip in Symbol 348 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 319 MovieClip in Symbol 348 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 321 MovieClip in Symbol 348 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 323 MovieClip in Symbol 348 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 325 MovieClip in Symbol 348 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 327 MovieClip in Symbol 348 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 329 MovieClip in Symbol 348 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 331 MovieClip in Symbol 348 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 333 MovieClip in Symbol 348 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 335 MovieClip in Symbol 348 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 337 MovieClip in Symbol 348 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 339 MovieClip in Symbol 348 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 341 MovieClip in Symbol 348 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 343 MovieClip in Symbol 348 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 345 MovieClip in Symbol 348 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 347 MovieClip in Symbol 348 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 349 MovieClip Frame 1stop();Symbol 349 MovieClip Frame 2stop();Symbol 349 MovieClip Frame 3stop();Symbol 349 MovieClip Frame 4stop();Symbol 349 MovieClip Frame 5stop();Symbol 352 Buttonon (release) { var left = 0; if ((left + 1) < stamp_preview._currentframe) { stamp_preview.prevFrame(); } }Symbol 353 Buttonon (release) { var right = stamp_preview._totalframes; if (stamp_preview._currentframe < right) { stamp_preview.nextFrame(); } }Symbol 361 Buttonon (press) { this.gotoAndStop(1); _parent.picture_options.gotoAndStop(1); } on (release, releaseOutside) { _parent.my_painter.change_tool("fill"); }Symbol 366 Buttonon (press) { this.gotoAndStop(2); _parent.picture_options.gotoAndStop(1); } on (release, releaseOutside) { _parent.my_painter.change_tool("circle"); }Symbol 371 Buttonon (press) { this.gotoAndStop(3); _parent.picture_options.gotoAndStop(1); } on (release, releaseOutside) { _parent.my_painter.change_tool("rectangle"); }Symbol 372 MovieClip Frame 1stop();Symbol 377 Buttonon (release) { _parent.my_painter.undo(); }Symbol 382 Buttonon (release) { _parent.my_painter.reset_picture(); }Symbol 387 Buttonon (press) { _root.cover_all_white.gotoAndStop(2); } on (release) { printNum (_level0, "bmovie"); _root._x = -50; loadMovieNum ("resume_button.swf", 10); }Symbol 388 MovieClip Frame 1stop();Symbol 392 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 394 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 396 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 398 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 400 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 402 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 404 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 406 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 408 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 410 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 412 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 414 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 416 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 418 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 420 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 422 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 424 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 426 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 428 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 430 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 431 Buttonon (release) { picture_preview.prevFrame(); var right = (picture_preview._currentframe * 3); var left = ((picture_preview._currentframe - 1) * 3); }Symbol 432 Buttonon (release) { picture_preview.nextFrame(); var right = (picture_preview._currentframe * 3); var left = ((picture_preview._currentframe - 1) * 3); }Symbol 435 Buttonon (release) { _parent.my_painter.reset_picture(); _parent.coloring_picture.gotoAndStop(this._currentframe); }Symbol 442 MovieClip Frame 1stop();Symbol 472 MovieClip Frame 1stop();Instance of Symbol 445 MovieClip in Symbol 472 MovieClip Frame 1onClipEvent (load) { width = 63; height = 45; } 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 448 MovieClip in Symbol 472 MovieClip Frame 2onClipEvent (load) { width = 64; 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 450 MovieClip in Symbol 472 MovieClip Frame 3onClipEvent (load) { width = 106; height = 98; } 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 452 MovieClip in Symbol 472 MovieClip Frame 4onClipEvent (load) { width = 107; height = 79; } 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 454 MovieClip in Symbol 472 MovieClip Frame 5onClipEvent (load) { width = 44; height = 60; } 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 456 MovieClip in Symbol 472 MovieClip Frame 6onClipEvent (load) { width = 54; height = 67; } 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 458 MovieClip in Symbol 472 MovieClip Frame 7onClipEvent (load) { width = 40; height = 65; } 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 460 MovieClip in Symbol 472 MovieClip Frame 8onClipEvent (load) { width = 50; height = 61; } 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 462 MovieClip in Symbol 472 MovieClip Frame 9onClipEvent (load) { width = 83; height = 50; } 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 464 MovieClip in Symbol 472 MovieClip Frame 10onClipEvent (load) { width = 67; height = 90; } 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 467 MovieClip in Symbol 472 MovieClip Frame 11onClipEvent (load) { width = 95; height = 85; } 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 469 MovieClip in Symbol 472 MovieClip Frame 12onClipEvent (load) { width = 77; height = 68; } 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 471 MovieClip in Symbol 472 MovieClip Frame 13onClipEvent (load) { width = 73; height = 74; } 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 474 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 435 Timeline | |
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:349 | |
Symbol 30 Graphic | Used by:31 | |
Symbol 31 MovieClip | Uses:30 | Used by:109 |
Symbol 32 Graphic | Used by:33 | |
Symbol 33 MovieClip | Uses:32 | Used by:109 |
Symbol 34 Graphic | Used by:35 | |
Symbol 35 MovieClip | Uses:34 | Used by:109 |
Symbol 36 Graphic | Used by:37 | |
Symbol 37 MovieClip | Uses:36 | Used by:109 |
Symbol 38 Graphic | Used by:39 | |
Symbol 39 MovieClip | Uses:38 | Used by:109 |
Symbol 40 Graphic | Used by:41 | |
Symbol 41 MovieClip | Uses:40 | Used by:109 |
Symbol 42 Graphic | Used by:43 | |
Symbol 43 MovieClip | Uses:42 | Used by:109 |
Symbol 44 Graphic | Used by:45 | |
Symbol 45 MovieClip | Uses:44 | Used by:109 |
Symbol 46 Graphic | Used by:47 | |
Symbol 47 MovieClip | Uses:46 | Used by:109 |
Symbol 48 Graphic | Used by:49 | |
Symbol 49 MovieClip | Uses:48 | Used by:109 |
Symbol 50 Graphic | Used by:51 | |
Symbol 51 MovieClip | Uses:50 | Used by:109 |
Symbol 52 Graphic | Used by:53 | |
Symbol 53 MovieClip | Uses:52 | Used by:109 |
Symbol 54 Graphic | Used by:55 | |
Symbol 55 MovieClip | Uses:54 | Used by:109 |
Symbol 56 Graphic | Used by:57 | |
Symbol 57 MovieClip | Uses:56 | Used by:109 |
Symbol 58 Graphic | Used by:59 | |
Symbol 59 MovieClip | Uses:58 | Used by:109 |
Symbol 60 Graphic | Used by:61 | |
Symbol 61 MovieClip | Uses:60 | Used by:109 |
Symbol 62 Graphic | Used by:63 | |
Symbol 63 MovieClip | Uses:62 | Used by:109 |
Symbol 64 Graphic | Used by:65 | |
Symbol 65 MovieClip | Uses:64 | Used by:109 |
Symbol 66 Graphic | Used by:67 | |
Symbol 67 MovieClip | Uses:66 | Used by:109 |
Symbol 68 Graphic | Used by:69 | |
Symbol 69 MovieClip | Uses:68 | Used by:109 |
Symbol 70 Graphic | Used by:71 | |
Symbol 71 MovieClip | Uses:70 | Used by:109 |
Symbol 72 Graphic | Used by:73 | |
Symbol 73 MovieClip | Uses:72 | Used by:109 |
Symbol 74 Graphic | Used by:75 | |
Symbol 75 MovieClip | Uses:74 | Used by:109 |
Symbol 76 Graphic | Used by:77 | |
Symbol 77 MovieClip | Uses:76 | Used by:109 |
Symbol 78 Graphic | Used by:79 | |
Symbol 79 MovieClip | Uses:78 | Used by:109 |
Symbol 80 Graphic | Used by:81 | |
Symbol 81 MovieClip | Uses:80 | Used by:109 |
Symbol 82 Graphic | Used by:83 | |
Symbol 83 MovieClip | Uses:82 | Used by:109 |
Symbol 84 Graphic | Used by:85 | |
Symbol 85 MovieClip | Uses:84 | Used by:109 |
Symbol 86 Graphic | Used by:87 | |
Symbol 87 MovieClip | Uses:86 | Used by:109 |
Symbol 88 Graphic | Used by:92 | |
Symbol 89 Graphic | Used by:90 | |
Symbol 90 MovieClip | Uses:89 | Used by:92 |
Symbol 91 Graphic | Used by:92 | |
Symbol 92 MovieClip | Uses:88 90 91 | Used by:109 |
Symbol 93 Graphic | Used by:94 | |
Symbol 94 MovieClip | Uses:93 | Used by:109 |
Symbol 95 Graphic | Used by:96 | |
Symbol 96 MovieClip | Uses:95 | Used by:109 |
Symbol 97 Graphic | Used by:98 | |
Symbol 98 MovieClip | Uses:97 | Used by:109 |
Symbol 99 Graphic | Used by:100 | |
Symbol 100 MovieClip | Uses:99 | Used by:109 |
Symbol 101 Graphic | Used by:102 | |
Symbol 102 MovieClip | Uses:101 | Used by:109 |
Symbol 103 Graphic | Used by:104 | |
Symbol 104 MovieClip | Uses:103 | Used by:109 |
Symbol 105 Graphic | Used by:106 | |
Symbol 106 MovieClip | Uses:105 | Used by:109 |
Symbol 107 Graphic | Used by:108 | |
Symbol 108 MovieClip | Uses:107 | Used by:109 |
Symbol 109 MovieClip | Uses:31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 92 94 96 98 100 102 104 106 108 | Used by:349 |
Symbol 110 Graphic | Used by:349 | |
Symbol 111 Graphic | Used by:196 | |
Symbol 112 Graphic | Used by:113 | |
Symbol 113 MovieClip | Uses:112 | Used by:196 |
Symbol 114 Graphic | Used by:115 | |
Symbol 115 MovieClip | Uses:114 | Used by:196 |
Symbol 116 Graphic | Used by:117 | |
Symbol 117 MovieClip | Uses:116 | Used by:196 |
Symbol 118 Graphic | Used by:119 | |
Symbol 119 MovieClip | Uses:118 | Used by:196 |
Symbol 120 Graphic | Used by:121 | |
Symbol 121 MovieClip | Uses:120 | Used by:196 |
Symbol 122 Graphic | Used by:123 | |
Symbol 123 MovieClip | Uses:122 | Used by:196 |
Symbol 124 Graphic | Used by:125 | |
Symbol 125 MovieClip | Uses:124 | Used by:196 |
Symbol 126 Graphic | Used by:127 | |
Symbol 127 MovieClip | Uses:126 | Used by:196 |
Symbol 128 Graphic | Used by:129 | |
Symbol 129 MovieClip | Uses:128 | Used by:196 |
Symbol 130 Graphic | Used by:131 | |
Symbol 131 MovieClip | Uses:130 | Used by:196 |
Symbol 132 Graphic | Used by:133 | |
Symbol 133 MovieClip | Uses:132 | Used by:196 |
Symbol 134 Graphic | Used by:135 | |
Symbol 135 MovieClip | Uses:134 | Used by:196 |
Symbol 136 Graphic | Used by:137 | |
Symbol 137 MovieClip | Uses:136 | Used by:196 |
Symbol 138 Graphic | Used by:139 | |
Symbol 139 MovieClip | Uses:138 | Used by:196 |
Symbol 140 Graphic | Used by:141 | |
Symbol 141 MovieClip | Uses:140 | Used by:196 |
Symbol 142 Graphic | Used by:143 | |
Symbol 143 MovieClip | Uses:142 | Used by:196 |
Symbol 144 Graphic | Used by:145 | |
Symbol 145 MovieClip | Uses:144 | Used by:196 |
Symbol 146 Graphic | Used by:147 | |
Symbol 147 MovieClip | Uses:146 | Used by:196 |
Symbol 148 Graphic | Used by:149 | |
Symbol 149 MovieClip | Uses:148 | Used by:196 |
Symbol 150 Graphic | Used by:151 | |
Symbol 151 MovieClip | Uses:150 | Used by:196 |
Symbol 152 Graphic | Used by:153 | |
Symbol 153 MovieClip | Uses:152 | Used by:196 |
Symbol 154 Graphic | Used by:155 | |
Symbol 155 MovieClip | Uses:154 | Used by:196 |
Symbol 156 Graphic | Used by:157 | |
Symbol 157 MovieClip | Uses:156 | Used by:196 |
Symbol 158 Graphic | Used by:159 | |
Symbol 159 MovieClip | Uses:158 | Used by:196 |
Symbol 160 Graphic | Used by:161 | |
Symbol 161 MovieClip | Uses:160 | Used by:196 |
Symbol 162 Graphic | Used by:163 | |
Symbol 163 MovieClip | Uses:162 | Used by:196 |
Symbol 164 Graphic | Used by:165 | |
Symbol 165 MovieClip | Uses:164 | Used by:196 |
Symbol 166 Graphic | Used by:167 | |
Symbol 167 MovieClip | Uses:166 | Used by:196 |
Symbol 168 Graphic | Used by:169 | |
Symbol 169 MovieClip | Uses:168 | Used by:196 |
Symbol 170 Graphic | Used by:171 | |
Symbol 171 MovieClip | Uses:170 | Used by:196 |
Symbol 172 Graphic | Used by:173 | |
Symbol 173 MovieClip | Uses:172 | Used by:196 |
Symbol 174 Graphic | Used by:175 | |
Symbol 175 MovieClip | Uses:174 | Used by:196 |
Symbol 176 Graphic | Used by:177 | |
Symbol 177 MovieClip | Uses:176 | Used by:196 |
Symbol 178 Graphic | Used by:179 | |
Symbol 179 MovieClip | Uses:178 | Used by:196 |
Symbol 180 Graphic | Used by:181 | |
Symbol 181 MovieClip | Uses:180 | Used by:196 |
Symbol 182 Graphic | Used by:183 | |
Symbol 183 MovieClip | Uses:182 | Used by:196 |
Symbol 184 Graphic | Used by:185 | |
Symbol 185 MovieClip | Uses:184 | Used by:196 |
Symbol 186 Graphic | Used by:187 | |
Symbol 187 MovieClip | Uses:186 | Used by:196 |
Symbol 188 Graphic | Used by:189 | |
Symbol 189 MovieClip | Uses:188 | Used by:196 |
Symbol 190 Graphic | Used by:191 | |
Symbol 191 MovieClip | Uses:190 | Used by:196 |
Symbol 192 Graphic | Used by:193 | |
Symbol 193 MovieClip | Uses:192 | Used by:196 |
Symbol 194 Graphic | Used by:195 | |
Symbol 195 MovieClip | Uses:194 | Used by:196 |
Symbol 196 MovieClip | Uses: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 163 165 167 169 171 173 175 177 179 181 183 185 187 189 191 193 195 | Used by:349 |
Symbol 197 Graphic | Used by:349 | |
Symbol 198 Graphic | Used by:245 | |
Symbol 199 Graphic | Used by:200 | |
Symbol 200 MovieClip | Uses:199 | Used by:245 |
Symbol 201 Graphic | Used by:202 | |
Symbol 202 MovieClip | Uses:201 | Used by:245 |
Symbol 203 Graphic | Used by:204 | |
Symbol 204 MovieClip | Uses:203 | Used by:245 |
Symbol 205 Graphic | Used by:206 | |
Symbol 206 MovieClip | Uses:205 | Used by:245 |
Symbol 207 Graphic | Used by:208 | |
Symbol 208 MovieClip | Uses:207 | Used by:245 |
Symbol 209 Graphic | Used by:210 | |
Symbol 210 MovieClip | Uses:209 | Used by:245 |
Symbol 211 Graphic | Used by:212 | |
Symbol 212 MovieClip | Uses:211 | Used by:245 |
Symbol 213 Graphic | Used by:214 | |
Symbol 214 MovieClip | Uses:213 | Used by:245 |
Symbol 215 Graphic | Used by:216 | |
Symbol 216 MovieClip | Uses:215 | Used by:245 |
Symbol 217 Graphic | Used by:218 | |
Symbol 218 MovieClip | Uses:217 | Used by:245 |
Symbol 219 Graphic | Used by:220 | |
Symbol 220 MovieClip | Uses:219 | Used by:245 |
Symbol 221 Graphic | Used by:222 | |
Symbol 222 MovieClip | Uses:221 | Used by:245 |
Symbol 223 Graphic | Used by:224 | |
Symbol 224 MovieClip | Uses:223 | Used by:245 |
Symbol 225 Graphic | Used by:226 | |
Symbol 226 MovieClip | Uses:225 | Used by:245 |
Symbol 227 Graphic | Used by:228 | |
Symbol 228 MovieClip | Uses:227 | Used by:245 |
Symbol 229 Graphic | Used by:230 | |
Symbol 230 MovieClip | Uses:229 | Used by:245 |
Symbol 231 Graphic | Used by:232 | |
Symbol 232 MovieClip | Uses:231 | Used by:245 |
Symbol 233 Graphic | Used by:234 | |
Symbol 234 MovieClip | Uses:233 | Used by:245 |
Symbol 235 Graphic | Used by:236 | |
Symbol 236 MovieClip | Uses:235 | Used by:245 |
Symbol 237 Graphic | Used by:238 | |
Symbol 238 MovieClip | Uses:237 | Used by:245 |
Symbol 239 Graphic | Used by:240 | |
Symbol 240 MovieClip | Uses:239 | Used by:245 |
Symbol 241 Graphic | Used by:242 | |
Symbol 242 MovieClip | Uses:241 | Used by:245 |
Symbol 243 Graphic | Used by:244 | |
Symbol 244 MovieClip | Uses:243 | Used by:245 |
Symbol 245 MovieClip | Uses:198 200 202 204 206 208 210 212 214 216 218 220 222 224 226 228 230 232 234 236 238 240 242 244 | Used by:349 |
Symbol 246 Graphic | Used by:349 | |
Symbol 247 Graphic | Used by:300 | |
Symbol 248 Graphic | Used by:249 | |
Symbol 249 MovieClip | Uses:248 | Used by:300 |
Symbol 250 Graphic | Used by:251 | |
Symbol 251 MovieClip | Uses:250 | Used by:300 |
Symbol 252 Graphic | Used by:253 | |
Symbol 253 MovieClip | Uses:252 | Used by:300 |
Symbol 254 Graphic | Used by:255 | |
Symbol 255 MovieClip | Uses:254 | Used by:300 |
Symbol 256 Graphic | Used by:257 | |
Symbol 257 MovieClip | Uses:256 | Used by:300 |
Symbol 258 Graphic | Used by:259 | |
Symbol 259 MovieClip | Uses:258 | Used by:300 |
Symbol 260 Graphic | Used by:261 | |
Symbol 261 MovieClip | Uses:260 | Used by:300 |
Symbol 262 Graphic | Used by:263 | |
Symbol 263 MovieClip | Uses:262 | Used by:300 |
Symbol 264 Graphic | Used by:265 | |
Symbol 265 MovieClip | Uses:264 | Used by:300 |
Symbol 266 Graphic | Used by:267 | |
Symbol 267 MovieClip | Uses:266 | Used by:300 |
Symbol 268 Graphic | Used by:269 | |
Symbol 269 MovieClip | Uses:268 | Used by:300 |
Symbol 270 Graphic | Used by:271 | |
Symbol 271 MovieClip | Uses:270 | Used by:300 |
Symbol 272 Graphic | Used by:273 | |
Symbol 273 MovieClip | Uses:272 | Used by:300 |
Symbol 274 Graphic | Used by:275 | |
Symbol 275 MovieClip | Uses:274 | Used by:300 |
Symbol 276 Graphic | Used by:277 | |
Symbol 277 MovieClip | Uses:276 | Used by:300 |
Symbol 278 Graphic | Used by:279 | |
Symbol 279 MovieClip | Uses:278 | Used by:300 |
Symbol 280 Graphic | Used by:281 | |
Symbol 281 MovieClip | Uses:280 | Used by:300 |
Symbol 282 Graphic | Used by:283 | |
Symbol 283 MovieClip | Uses:282 | Used by:300 |
Symbol 284 Graphic | Used by:285 | |
Symbol 285 MovieClip | Uses:284 | Used by:300 |
Symbol 286 Graphic | Used by:287 | |
Symbol 287 MovieClip | Uses:286 | Used by:300 |
Symbol 288 Graphic | Used by:289 | |
Symbol 289 MovieClip | Uses:288 | Used by:300 |
Symbol 290 Graphic | Used by:291 | |
Symbol 291 MovieClip | Uses:290 | Used by:300 |
Symbol 292 Graphic | Used by:293 | |
Symbol 293 MovieClip | Uses:292 | Used by:300 |
Symbol 294 Graphic | Used by:295 | |
Symbol 295 MovieClip | Uses:294 | Used by:300 |
Symbol 296 Graphic | Used by:297 | |
Symbol 297 MovieClip | Uses:296 | Used by:300 |
Symbol 298 Graphic | Used by:299 | |
Symbol 299 MovieClip | Uses:298 | Used by:300 |
Symbol 300 MovieClip | Uses:247 249 251 253 255 257 259 261 263 265 267 269 271 273 275 277 279 281 283 285 287 289 291 293 295 297 299 | Used by:349 |
Symbol 301 Graphic | Used by:349 | |
Symbol 302 Graphic | Used by:303 | |
Symbol 303 MovieClip | Uses:302 | Used by:348 |
Symbol 304 Graphic | Used by:305 | |
Symbol 305 MovieClip | Uses:304 | Used by:348 |
Symbol 306 Graphic | Used by:307 | |
Symbol 307 MovieClip | Uses:306 | Used by:348 |
Symbol 308 Graphic | Used by:309 | |
Symbol 309 MovieClip | Uses:308 | Used by:348 |
Symbol 310 Graphic | Used by:311 | |
Symbol 311 MovieClip | Uses:310 | Used by:348 |
Symbol 312 Graphic | Used by:313 | |
Symbol 313 MovieClip | Uses:312 | Used by:348 |
Symbol 314 Graphic | Used by:315 | |
Symbol 315 MovieClip | Uses:314 | Used by:348 |
Symbol 316 Graphic | Used by:317 | |
Symbol 317 MovieClip | Uses:316 | Used by:348 |
Symbol 318 Graphic | Used by:319 | |
Symbol 319 MovieClip | Uses:318 | Used by:348 |
Symbol 320 Graphic | Used by:321 | |
Symbol 321 MovieClip | Uses:320 | Used by:348 |
Symbol 322 Graphic | Used by:323 | |
Symbol 323 MovieClip | Uses:322 | Used by:348 |
Symbol 324 Graphic | Used by:325 | |
Symbol 325 MovieClip | Uses:324 | Used by:348 |
Symbol 326 Graphic | Used by:327 | |
Symbol 327 MovieClip | Uses:326 | Used by:348 |
Symbol 328 Graphic | Used by:329 | |
Symbol 329 MovieClip | Uses:328 | Used by:348 |
Symbol 330 Graphic | Used by:331 | |
Symbol 331 MovieClip | Uses:330 | Used by:348 |
Symbol 332 Graphic | Used by:333 | |
Symbol 333 MovieClip | Uses:332 | Used by:348 |
Symbol 334 Graphic | Used by:335 | |
Symbol 335 MovieClip | Uses:334 | Used by:348 |
Symbol 336 Graphic | Used by:337 | |
Symbol 337 MovieClip | Uses:336 | Used by:348 |
Symbol 338 Graphic | Used by:339 | |
Symbol 339 MovieClip | Uses:338 | Used by:348 |
Symbol 340 Graphic | Used by:341 | |
Symbol 341 MovieClip | Uses:340 | Used by:348 |
Symbol 342 Graphic | Used by:343 | |
Symbol 343 MovieClip | Uses:342 | Used by:348 |
Symbol 344 Graphic | Used by:345 | |
Symbol 345 MovieClip | Uses:344 | Used by:348 |
Symbol 346 Graphic | Used by:347 | |
Symbol 347 MovieClip | Uses:346 | Used by:348 |
Symbol 348 MovieClip | Uses:303 305 307 309 311 313 315 317 319 321 323 325 327 329 331 333 335 337 339 341 343 345 347 | Used by:349 |
Symbol 349 MovieClip | Uses:29 109 110 196 197 245 246 300 301 348 | Used by:Timeline |
Symbol 350 Graphic | Used by:Timeline | |
Symbol 351 Graphic | Used by:352 353 431 432 | |
Symbol 352 Button | Uses:351 | Used by:Timeline |
Symbol 353 Button | Uses:351 | Used by:Timeline |
Symbol 354 Graphic | Used by:361 366 371 372 377 382 387 388 | |
Symbol 355 Graphic | Used by:361 366 371 372 377 382 387 388 | |
Symbol 356 Graphic | Used by:361 | |
Symbol 357 Graphic | Used by:361 | |
Symbol 358 Font | Used by:359 364 369 375 380 385 | |
Symbol 359 Text | Uses:358 | Used by:361 |
Symbol 360 Graphic | Used by:361 | |
Symbol 361 Button | Uses:356 354 357 359 355 360 | Used by:372 |
Symbol 362 Graphic | Used by:366 | |
Symbol 363 Graphic | Used by:366 | |
Symbol 364 Text | Uses:358 | Used by:366 |
Symbol 365 Graphic | Used by:366 | |
Symbol 366 Button | Uses:362 354 363 364 355 365 | Used by:372 |
Symbol 367 Graphic | Used by:371 | |
Symbol 368 Graphic | Used by:371 | |
Symbol 369 Text | Uses:358 | Used by:371 |
Symbol 370 Graphic | Used by:371 | |
Symbol 371 Button | Uses:367 354 368 369 355 370 | Used by:372 |
Symbol 372 MovieClip | Uses:354 355 361 366 371 | Used by:Timeline |
Symbol 373 Graphic | Used by:377 | |
Symbol 374 Graphic | Used by:377 | |
Symbol 375 Text | Uses:358 | Used by:377 |
Symbol 376 Graphic | Used by:377 | |
Symbol 377 Button | Uses:373 354 374 375 355 376 | Used by:388 |
Symbol 378 Graphic | Used by:382 | |
Symbol 379 Graphic | Used by:382 | |
Symbol 380 Text | Uses:358 | Used by:382 |
Symbol 381 Graphic | Used by:382 | |
Symbol 382 Button | Uses:378 354 379 380 355 381 | Used by:388 |
Symbol 383 Graphic | Used by:387 | |
Symbol 384 Graphic | Used by:387 | |
Symbol 385 Text | Uses:358 | Used by:387 |
Symbol 386 Graphic | Used by:387 | |
Symbol 387 Button | Uses:383 354 384 385 355 386 | Used by:388 |
Symbol 388 MovieClip | Uses:354 377 382 387 355 | Used by:Timeline |
Symbol 389 Graphic | Used by:390 | |
Symbol 390 MovieClip | Uses:389 | Used by:Timeline |
Symbol 391 Graphic | Used by:392 | |
Symbol 392 Button | Uses:391 | Used by:Timeline |
Symbol 393 Graphic | Used by:394 | |
Symbol 394 Button | Uses:393 | Used by:Timeline |
Symbol 395 Graphic | Used by:396 | |
Symbol 396 Button | Uses:395 | Used by:Timeline |
Symbol 397 Graphic | Used by:398 | |
Symbol 398 Button | Uses:397 | Used by:Timeline |
Symbol 399 Graphic | Used by:400 | |
Symbol 400 Button | Uses:399 | Used by:Timeline |
Symbol 401 Graphic | Used by:402 | |
Symbol 402 Button | Uses:401 | Used by:Timeline |
Symbol 403 Graphic | Used by:404 | |
Symbol 404 Button | Uses:403 | Used by:Timeline |
Symbol 405 Graphic | Used by:406 | |
Symbol 406 Button | Uses:405 | Used by:Timeline |
Symbol 407 Graphic | Used by:408 | |
Symbol 408 Button | Uses:407 | Used by:Timeline |
Symbol 409 Graphic | Used by:410 | |
Symbol 410 Button | Uses:409 | Used by:Timeline |
Symbol 411 Graphic | Used by:412 | |
Symbol 412 Button | Uses:411 | Used by:Timeline |
Symbol 413 Graphic | Used by:414 | |
Symbol 414 Button | Uses:413 | Used by:Timeline |
Symbol 415 Graphic | Used by:416 | |
Symbol 416 Button | Uses:415 | Used by:Timeline |
Symbol 417 Graphic | Used by:418 | |
Symbol 418 Button | Uses:417 | Used by:Timeline |
Symbol 419 Graphic | Used by:420 | |
Symbol 420 Button | Uses:419 | Used by:Timeline |
Symbol 421 Graphic | Used by:422 | |
Symbol 422 Button | Uses:421 | Used by:Timeline |
Symbol 423 Graphic | Used by:424 | |
Symbol 424 Button | Uses:423 | Used by:Timeline |
Symbol 425 Graphic | Used by:426 | |
Symbol 426 Button | Uses:425 | Used by:Timeline |
Symbol 427 Graphic | Used by:428 | |
Symbol 428 Button | Uses:427 | Used by:Timeline |
Symbol 429 Graphic | Used by:430 | |
Symbol 430 Button | Uses:429 | Used by:Timeline |
Symbol 431 Button | Uses:351 | Used by:Timeline |
Symbol 432 Button | Uses:351 | Used by:Timeline |
Symbol 433 Graphic | Used by:442 | |
Symbol 434 Graphic | Used by:442 | |
Symbol 435 Button | Uses:4 | Used by:442 |
Symbol 436 Graphic | Used by:442 | |
Symbol 437 Font | Used by:438 | |
Symbol 438 Text | Uses:437 | Used by:442 |
Symbol 439 Graphic | Used by:442 | |
Symbol 440 Graphic | Used by:442 | |
Symbol 441 Graphic | Used by:442 | |
Symbol 442 MovieClip | Uses:433 434 435 436 438 439 440 441 | Used by:Timeline |
Symbol 443 Graphic | Used by:472 | |
Symbol 444 Graphic | Used by:445 | |
Symbol 445 MovieClip | Uses:444 | Used by:472 |
Symbol 446 Graphic | Used by:448 | |
Symbol 447 Graphic | Used by:448 | |
Symbol 448 MovieClip | Uses:446 447 | Used by:472 |
Symbol 449 Graphic | Used by:450 | |
Symbol 450 MovieClip | Uses:449 | Used by:472 |
Symbol 451 Graphic | Used by:452 | |
Symbol 452 MovieClip | Uses:451 | Used by:472 |
Symbol 453 Graphic | Used by:454 | |
Symbol 454 MovieClip | Uses:453 | Used by:472 |
Symbol 455 Graphic | Used by:456 | |
Symbol 456 MovieClip | Uses:455 | Used by:472 |
Symbol 457 Graphic | Used by:458 | |
Symbol 458 MovieClip | Uses:457 | Used by:472 |
Symbol 459 Graphic | Used by:460 | |
Symbol 460 MovieClip | Uses:459 | Used by:472 |
Symbol 461 Graphic | Used by:462 | |
Symbol 462 MovieClip | Uses:461 | Used by:472 |
Symbol 463 Graphic | Used by:464 | |
Symbol 464 MovieClip | Uses:463 | Used by:472 |
Symbol 465 Graphic | Used by:467 | |
Symbol 466 Graphic | Used by:467 | |
Symbol 467 MovieClip | Uses:465 466 | Used by:472 |
Symbol 468 Graphic | Used by:469 | |
Symbol 469 MovieClip | Uses:468 | Used by:472 |
Symbol 470 Graphic | Used by:471 | |
Symbol 471 MovieClip | Uses:470 | Used by:472 |
Symbol 472 MovieClip | Uses:443 445 448 450 452 454 456 458 460 462 464 467 469 471 | Used by:Timeline |
Symbol 473 Graphic | Used by:474 | |
Symbol 474 MovieClip | Uses:473 | Used by:Timeline |
Instance Names
"coloring_picture" | Frame 16 | Symbol 349 MovieClip |
"tool_options" | Frame 16 | Symbol 372 MovieClip |
"picture_options" | Frame 16 | Symbol 388 MovieClip |
"text_stamp_color" | Frame 16 | Symbol 390 MovieClip |
"picture_preview" | Frame 16 | Symbol 442 MovieClip |
"stamp_preview" | Frame 16 | Symbol 472 MovieClip |
"cover_all_white" | Frame 16 | Symbol 474 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 349 MovieClip Frame 1 | Symbol 109 MovieClip |
"sub" | Symbol 349 MovieClip Frame 2 | Symbol 196 MovieClip |
"sub" | Symbol 349 MovieClip Frame 3 | Symbol 245 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 16 |
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 | "" |
|