Malen mit Flash ;)

ZipZek

Mitglied
Hey...
Ihr habt es bestimmt shocnmal gesehn... das man malen kann mit der Maus in Flash... hm schwer zu erklären...
so wie da... http://www.sixtailer.com/

hoffe ihr könnt mir helfen... will das auch können :D

LG, pz phil
 
Zuletzt bearbeitet:
Boah lädt das lang (mit modem@home) ;)

Bevor ich nochmal ewig für die Menüpunkte (Startbild und Interface haben ja schon ewig gedauert) warte .. wo kann man denn da malen?

Gruß
Rena
 
Du kannst zum Zeichnen die Zeichen-API verwenden:

Beispiel:
PHP:
this.onMouseMove = function() {
	if (draw) {
		this.lineStyle(1, 0x000000, 100);
		this.lineTo(this._xmouse, this._ymouse);
	}
};
this.onMouseDown = function() {
	draw = true;
	this.moveTo(this._xmouse, this._ymouse);
};
this.onMouseUp = function() {
	draw = false;
};

Eine zusätzliche Verbesserung erreichst du durch updateAfterEvent(). Macht das Zeichnen noch etwas flüssiger.

PHP:
this.onMouseMove = function() {
	if (draw) {
		this.lineStyle(1, 0x000000, 100);
		this.lineTo(this._xmouse, this._ymouse);
		updateAfterEvent();
	}	
};
this.onMouseDown = function() {
	draw = true;
	this.moveTo(this._xmouse, this._ymouse);
};
this.onMouseUp = function() {
	draw = false;
};

Beispiele hierzu findest du auch im FLA Portal auf flashstar.de daher stammt auch der Code. :)

hier lang

Liebe Grüsse
Matze K.
 
Zurück