Archive for March, 2007

trace(); – the sequel

Thursday, March 1st, 2007

trace2 = function(s, r_all) {

if (!t_txt){    //create new textfield if none exists

this.createTextField("t_txt", 1, 0, 0, 1, 1);
t_txt.autoSize = true;    

}
r_all ? t_txt.text = s+"\n" : t_txt.text += s+"\n" ;

};