vote up 2 vote down star

Long story short, I need to put some text in my Flex application and I don't want users to be able to copy. I was going to use a label, but apparently labels do not support text wrapping. Can I make it so that users cannot select text in a Flex Text control?

Thanks.

flag

53% accept rate

2 Answers

vote up 5 vote down check

You could use the Text control and set the selectable property to false...

 <mx:Text width="175" selectable="false" text="This is an example of a multiline text string in a Text control." />
link|flag
vote up 0 vote down

You can set the enabled property to "false" which disables user interaction. You may want to also change the disabledcolor property to your choice.

print("
        <mx:Text enabled="false" disabledColor="0x000000" text=Text"/>
");
link|flag

Your Answer

Get an OpenID
or

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