簡単なチャット アプリケーションを作成しましたが、この問題があり、テキスト領域がいっぱいになり、ユーザーはそれをクリアする必要があります。テキスト領域が特定の文字数に達すると、古いチャットがクリアされるようにするにはどうすればよいですか文章 ?
public function receiveMsg(userName:String,type:String,msg:String,txtColor:String):void{
if(type == "user"){
ConsoleTxt.htmlText += "<b>"+userName+"</b>: <font color='"+txtColor+"'>"+msg+"</font> \n"
}
if(type == "server"){
ConsoleTxt.htmlText += "<b><font color='#6ade57'>SERVER</font></b> "+userName+" "+msg+"\n"
}
if(type == "disconnect"){
ConsoleTxt.htmlText += "<b><font color='#6ade57'>SERVER</font></b> "+userName+" <font color='#fc0000'>"+msg+"</font>\n"
}
ConsoleTxt.verticalScrollPosition = ConsoleTxt.maxVerticalScrollPosition
}