Text align right issue

When using dynamic text and you set the text alignment to “align right”, the text is supposed to flow right to left correct? With my code below I can’t seem to get this to happen. All my text is flowing left to right.


// change title 
_global.changeTitle = function(title:String) {
 // set title text
 _root.vid.title.autoSize = true;
 _root.vid.title.text = title;
};
changeTitle("A Global Industry");