hi to all,
How to make a transparent background for flash textarea component?
hi to all,
How to make a transparent background for flash textarea component?
asked how to make a Flash TextArea transparent; suggested searching. Below are concise, reliable options that work across common Flash workflows (design-time skin edit or runtime property change).
Design-time (recommended when using the built-in component)
Runtime (ActionScript)
import flash.text.TextField;
import flash.text.TextFieldType;
var tf:TextField = new TextField();
tf.type = TextFieldType.INPUT;
tf.background = false;
tf.border = false;
tf.width = 300;
tf.height = 120;
addChild(tf); import fl.controls.TextArea;
myTextArea.textField.background = false;
myTextArea.textField.border = false; Notes and gotchas
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.