vote up 1 vote down star

How to prevent ctrl+v paste for flash.display.textarea()?

field.selectable = false; does not seem to work, also it disables caret/cursor

flag

77% accept rate
I doubt this is possible as it's default behavior for text input boxes and it's probably built into the flash player to implicity accept pastes from the various operating systems it supports. – James Hay Feb 11 at 12:39
I am trying to use this evt.preventDefault () ; – Tom Feb 11 at 13:25

3 Answers

vote up 1 vote down check

this seem to work in TextEvent listener, any comments is it too bad solution to avoid copy+paste to a field ?

if (evt.text.length >1) 
evt.preventDefault () ;
link|flag
vote up 1 vote down

A TextArea is an editable textfield. You should use another component if you want to prevent copy / paste.

link|flag
vote up 0 vote down

If you can, use a different component instead of TextArea, as monkee suggested.

If you're really into protecting against copying your text data you might even want to consider drawing the text on a canvas directly so it's really impossible to grab it unless the user does OCR or something.

link|flag
any ideas where I can find such a component, actionscript3? – Tom Feb 17 at 8:21

Your Answer

Get an OpenID
or

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