How can i disable the text selection abilities开发者_StackOverflow中文版 and such of flash TextFields (so they act like labels)?
In code, you can do it like this:
myTextField.selectable = false;
Or you can untick the "Selectable" button (an A and a selected b) in the Properties panel for the TextField in the Flash CS IDE.
精彩评论