views:

30

answers:

1

How can i disable the text selection abilities and such of flash TextFields (so they act like labels)?

+3  A: 

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.

Lars