all groups > flash actionscript > october 2006 >
You're in the

flash actionscript

group:

centering text on stage...



centering text on stage... DZ-015
10/18/2006 10:27:40 PM
flash actionscript: hey - here's the code. I'm obviously doing something dumb. How do I get this
text to center on the stage...?



this.createEmptyMovieClip("mcTextFieldContainer", this.getNextHighestDepth());
mcTextFieldContainer.createTextField("tText", 1, 0, 0, 150, 20);
mcTextFieldContainer.tText.text = "Hello World";
mcTextFieldContainer.tText.autoSize = "center";
mcTextFieldContainer._x = (Stage.width / 2) - (mcTextFieldContainer._width /
2);
mcTextFieldContainer._y = (Stage.height / 2) - (mcTextFieldContainer._height /
2);
Re: centering text on stage... kglad
10/18/2006 10:37:32 PM
AddThis Social Bookmark Button