08/09/12 20:15:39 UtJzkosF
>>901
これでどうだ。暇だからエスパー能力振りしぼってみたぞ。
さっきの消してこれ書いてパブリッシュ。
this.createTextField("txtBox", this.getNextHighestDepth(), 10, 10, Stage.width-20, Stage.height-20);
cnt = 1;
this.onEnterFrame = function() {
if (cnt<=1000) {
txtBox.text += "num"+cnt+"\n";
cnt++;
txtBox.scroll++;
} else {
delete this.onEnterFrame;
}
};
fmt = new TextFormat();
fmt.size = 20;
fmt.color = 0x000000;
txtBox.setNewTextFormat(fmt);
txtBox.multiline = true;
txtBox.wordWrap = true;