Text Field password copy and paste allowed?

Hello!

I am using a Text Field as an Input for password, I set the displayAsPassword to true, and it shows * instead of chars, but I still can copy the content and paste on another Text Field to see what Ive tiped! In the Adobe AS3 manuals its says that the copy and cut should be disabled automatically but its not!! I am using Flex Open Source, may it be a bug?

tf = new TextField();
tf.type = TextFieldType.INPUT;
tf.displayAsPassword = true;
addChild(tf);

What should I do?
Thank you!