System: WIN 2k Pro, AMD Opteron 1.4Ghz, 512MB RAM
Plug-in : WIN 7,0,19,0
Zeit: 3839 (ms)
top ! funktioniert prima, manchmal bisschen zu hoher offset aber is sicher bissel blöd da es ja
von schrift zu schrift anders ist .. habs grad nur überflogen - verträgt nochn bissel optimierung
damits bissel flotter geht aber ansonsten wie gesagt top !
hab mir grad ne kleine textfield.duplicate geschrieben, vleicht hilft die schon mal bisschen ..
hier isse :
PHP-Code:
TextField.prototype.duplicate = function (instanceName:String, depth:Number) {
/* Stefan Hofeditz [com.sh@gmx.de] (c) 2004 */
this._parent.createTextField(instanceName, depth, this._x, this._y, this._width, this._height);
this._parent[instanceName].setNewTextFormat(this.getTextFormat());
for(var i in this) if(i != 'variable') this._parent[instanceName][i] = this[i];
return this._parent[instanceName];
}
ASSetPropFlags(TextField.prototype, "duplicate", 1);
kopiert aber alle eigentschaften eines textfeldes, willst du welche nicht haben musst du sie im nachhinnein ändern.
cheers sh.
ps: nich vergessen die font in die libary zu schicken und für as zu exportieren