Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Padding left can be done by TextFormat.leftMargin.
And padding right can be done by TextFormat.rightMargin.

But there is no topMargin or bottomMargin property in TextField or TextFormat.
How can I do padding top and bottom?


Example code of left and right padding(margin) of TextField:

var format:TextFormat = new TextFormat
format.leftMargin = 40
format.rightMargin = 40

var text:TextField = new TextField
text.defaultTextFormat = format
text.background = true
text.backgroundColor = 0xeeaaaa
text.autoSize = TextFieldAutoSize.CENTER
text.text = 'abc'
share|improve this question
Using semicolon is optional, but its a good std. You can use. – Benny Sep 6 '11 at 13:19
Sorry, I forgot to add semicolons. I like to omit semicolons at the end of lines. But I'm usually trying to add semicolons in my questions at stackoverflow or in programs at work. – js_ Sep 6 '11 at 14:46

4 Answers

up vote 1 down vote accepted

Just increase the height of your sprite, text.height + 10 for example, and set text.y = 5 for a 5 pixel top and bottom margin

share|improve this answer
thanks! that worked. – js_ Sep 7 '11 at 13:31

I believe there's no native way to do it. Here is a list of supported CSS tags (it does not include any padding, nor top or bottom margin): http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/text/StyleSheet.html?filter_flash=cs5&filter_flashplayer=10.2&filter_air=2.6

share|improve this answer

There is no predefined option available right now.

But you can text.y property instead of top margin and bottom margin.

var format:TextFormat = new TextFormat;
format.leftMargin = 40;
format.rightMargin = 40;
var text:TextField = new TextField;
text.defaultTextFormat = format;
text.autoSize = TextFieldAutoSize.CENTER;
text.text = 'abc\ndef\nhij\nlmno';
var spr:Sprite = new Sprite();
spr.graphics.beginFill(0xeeaaaa,1);
spr.graphics.drawRect(0,0, text.width,text.height);
spr.graphics.endFill();
addChild(spr);
spr.addChild(text);
share|improve this answer
Thanks! But text.y just set the position of whole TextField. I want to increase the area between border of TextField and text of TextField. Border can be visible by setting properties, background and backgroundColor or border and borderColor of TextField. – js_ Sep 6 '11 at 13:48
you can use sprite or movieClip for setting bgcolor. – Benny Sep 6 '11 at 13:52

You can also add a blank line before and after your text. Combined with the border and background properties of a textField object you can render nice boxes. Code would look like this:

var text:TextField = new TextField
text.defaultTextFormat = format
text.background = true
text.backgroundColor = 0xeeaaaa
text.autoSize = TextFieldAutoSize.CENTER
text.text = '\n' + 'your text here' + '\n '

If you use this solution, do not forget the blank space after the second blank line. It makes sure the blank line is displayed.

share|improve this answer
I wonder who voted this down and why. – silvith Jan 23 '12 at 8:11
This is a strange world but after reading this great hint I voted up. – drpelz Feb 17 '12 at 22:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.