ちょこもこ/20040510





20040510 おえかきしてちょ とっとけないけど、、、
カーソルはペンのかたちになったりしませんが
てきとーなところでドラッグすると線が描けます。
左下の色まるクリックで色をかえられます。
右下は、線の太さです。
けすは、全部消えます
消しゴムはないので、ほしーときは、色をしろに
して、使うとよいかも。
左上にいるのは、よいしょくんです。
カーソルをあわせるとほめてくれます。
せっかく描いても保存はできません。
画面ダンプはとれるかも。
あああ、取り消しなんかももちろんできまっせん。










_global.iro = "0x000000";
_global.penSize = 5;
_root.onMouseDown = function() {
	_root.lineStyle(penSize, iro, 100);
	_root.moveTo(_root._xmouse, _root._ymouse);
	isDrawing = true;
};
_root.onMouseMove = function() {
	if (isDrawing == true) {
		_root.lineTo(_root._xmouse, _root._ymouse);
		updateAfterEvent();
	}
};
_root.onMouseUp = function() {
	isDrawing = false;
};
clear_btn.onRelease = function() {
	_root.clear();
};
pen1_btn.onRelease = function() {
	penSize = 1;
};
pen2_btn.onRelease = function() {
	penSize = 2;
};
pen5_btn.onRelease = function() {
	penSize = 5;
};
pen10_btn.onRelease = function() {
	penSize = 10;
};
pen20_btn.onRelease = function() {
	penSize = 20;
};
iro01_btn.onRelease = function() {
	iro = "0x000000";
};
iro02_btn.onRelease = function() {
	iro = "0x003366";
};
iro03_btn.onRelease = function() {
	iro = "0x009999";
};
iro04_btn.onRelease = function() {
	iro = "0xFB9C70";
};
iro05_btn.onRelease = function() {
	iro = "0x33cc33";
};
iro06_btn.onRelease = function() {
	iro = "0x66cccc";
};
iro07_btn.onRelease = function() {
	iro = "0xffcc00";
};
iro08_btn.onRelease = function() {
	iro = "0xffff66";
};
iro09_btn.onRelease = function() {
	iro = "0xff6600";
};
iro10_btn.onRelease = function() {
	iro = "0xcc0000";
};
iro11_btn.onRelease = function() {
	iro = "0xff0033";
};
iro12_btn.onRelease = function() {
	iro = "0xff9999";
};
iro13_btn.onRelease = function() {
	iro = "0xcc3333";
};
iro14_btn.onRelease = function() {
	iro = "0x996633";
};
iro15_btn.onRelease = function() {
	iro = "0x999966";
};
iro16_btn.onRelease = function() {
	iro = "0xcccccc";
};
iro17_btn.onRelease = function() {
	iro = "0xffffff";
};