Can anyone explain how to disable punctuation (!@#%...) (52 glyphs) for a TextFieldType.INPUT using AS3?
Thanks.
Printable View
Can anyone explain how to disable punctuation (!@#%...) (52 glyphs) for a TextFieldType.INPUT using AS3?
Thanks.
TextField has a restrict property that does what you're looking for. It allows a whitelist of allowed characters.
http://help.adobe.com/en_US/AS3LCR/F....html#restrict
Thanks :)