var t_content:TextField=new TextField();
t_content.x=0;
t_content.y=0;
t_content.multiline=true;
t_content.border=true;
t_content.styleSheet=ContentStyle;
t_content.width=box.width;
t_content.autoSize="left";
t_content.condenseWhite=true;
t_content.wordWrap=true;
t_content.htmlText=p_content;
box.addChild(t_content);
var aSp:ScrollPane = new ScrollPane();
box.addChild(aSp);
aSp.source = t_content;
aSp.horizontalScrollPolicy=ScrollPolicy.OFF;
aSp.setSize(t_content.width, 340);