Skip to main content
Participating Frequently
February 23, 2021
Answered

Is it possible to give a text a colored background and certain distances?

  • February 23, 2021
  • 1 reply
  • 349 views

Hi,

 

is it possible to give a text a colored background and certain distances?

Best regards,

René

 

 

This topic has been closed for replies.
Correct answer kglad

you can control somethings with the properties panel, but not nearly as much as you can control with code.

 

for a dynamic textfield with instance name tf, use:

 

var tfor:TextFormat = new TextFormat();
tfor.blockIndent = 40;
tfor.color = 0x46C944;

 

tf.width = 120;
tf.height = 50;
tf.background = true;
tf.backgroundColor = 0x000000;
tf.text = "Lorem Ipsum";
tf.setTextFormat(tfor);

1 reply

kglad
Community Expert
Community Expert
February 23, 2021

yes.

 

html5 or actionscript?

reneAdobeAuthor
Participating Frequently
February 23, 2021

actionscript. 

about properties it is not possible?

kglad
Community Expert
kgladCommunity ExpertCorrect answer
Community Expert
February 23, 2021

you can control somethings with the properties panel, but not nearly as much as you can control with code.

 

for a dynamic textfield with instance name tf, use:

 

var tfor:TextFormat = new TextFormat();
tfor.blockIndent = 40;
tfor.color = 0x46C944;

 

tf.width = 120;
tf.height = 50;
tf.background = true;
tf.backgroundColor = 0x000000;
tf.text = "Lorem Ipsum";
tf.setTextFormat(tfor);