Frame 1
Mouse.hide();
_root.sizeChoice = 1;
_root.myAlpha = 100;
_root.createEmptyMovieClip("myLine", 0);
_root.onMouseDown = function () {
if (_root.textIsTrue == true) {
this.createTextField("test_txt", 10, _xmouse, _ymouse, 300, 100);
test_txt.multiline = true;
test_txt.wordWrap = true;
test_txt.autoSize = "left";
test_txt.text = "text";
test_txt.type = "input";
_root.textIsTrue = false;
}
myLine.moveTo(_xmouse, _ymouse);
myLine.lineStyle(_root.sizeChoice, _root.colorChoice, _root.myAlpha);
_root.onMouseMove = function () {
myLine.lineTo(_xmouse, _ymouse);
};
};
_root.onMouseUp = function () {
_root.onMouseMove = noLine;
};
eraser_btn.onPress = function () {
_root.clear();
};
Instance of Symbol 68 MovieClip "stroke" in Frame 1
onClipEvent (enterFrame) {
_x = _root._xmouse;
_y = _root._ymouse;
}
Instance of Symbol 78 MovieClip in Frame 1
onClipEvent (load) {
_root.textIsTrue = false;
}
onClipEvent (enterFrame) {
if (_root.textIsTrue == false) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(1);
}
}
Symbol 8 Button
on (release) {
myLine.clear();
}
Symbol 11 Button
on (release) {
getURL ("http://www.shittyart.net", "_blank");
}
Symbol 14 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0xFF0000";
}
Symbol 16 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0xFF9900";
}
Symbol 18 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0xFFFF00";
}
Symbol 20 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0x00FF00";
}
Symbol 22 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0x0066FF";
}
Symbol 24 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0x9900FF";
}
Symbol 26 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0x990099";
}
Symbol 28 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0x000000";
}
Symbol 30 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0xFF33CC";
}
Symbol 32 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0xFFCC66";
}
Symbol 34 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0x663300";
}
Symbol 36 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0x009933";
}
Symbol 38 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0x0099FF";
}
Symbol 40 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0xCC99FF";
}
Symbol 42 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0xCCCCCC";
}
Symbol 44 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0x999999";
}
Symbol 46 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0xDE79E7";
}
Symbol 48 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0xFF6633";
}
Symbol 50 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0x7B4637";
}
Symbol 52 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0x336600";
}
Symbol 54 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0x66CCFF";
}
Symbol 56 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0xCC33CC";
}
Symbol 58 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0x333333";
}
Symbol 60 Button
on (press) {
_root.onMouseMove = noLine;
_root.colorChoice = "0xFFFFFF";
}
Symbol 62 Button
on (press) {
_root.onMouseMove = noLine;
_root.sizeChoice = _root.sizeChoice + 1;
_root.stroke._xscale = _root.stroke._xscale + 25;
_root.stroke._yscale = _root.stroke._yscale + 25;
}
Symbol 64 Button
on (press) {
_root.onMouseMove = noLine;
_root.sizeChoice = _root.sizeChoice - 1;
_root.stroke._xscale = _root.stroke._xscale - 25;
_root.stroke._yscale = _root.stroke._yscale - 25;
if (_root.stroke._yscale <= 100) {
_root.stroke._yscale = 100;
_root.stroke._xscale = 100;
}
}
Symbol 74 Button
on (release) {
_root.textIsTrue = true;
nextFrame();
}
Symbol 77 Button
on (release) {
_root.textIsTrue = false;
prevFrame();
}
Symbol 78 MovieClip Frame 1
stop();
Symbol 80 Button
on (press) {
_root.onMouseMove = noLine;
_root.myAlpha = _root.myAlpha - 10;
if (_root.myAlpha <= 0) {
_root.myAplha = 0;
}
if (_root.myAlpha >= 100) {
_root.myAplha = 100;
}
}
Symbol 82 Button
on (press) {
_root.onMouseMove = noLine;
_root.myAlpha = _root.myAlpha + 10;
if (_root.myAlpha <= 0) {
_root.myAplha = 0;
}
if (_root.myAlpha >= 100) {
_root.myAplha = 100;
}
}