Cannot center align text?

I am not able to centre justify text???

I type the text with some lines longer than others but when i select the centre justify button, nothing happens???

The text box is set to Static Text too!!!

Am i doing something wrong???

Is there anything else i can try???

I know it is something simple???

Not sure why that isn’t working in the authoring environment? Another option though is to use textFormat.

[AS]
var nTF = new TextFormat;
nTF.align = “center”;
myTextField.setTextFormat(nTF);
[/AS]