A tab is normally specified in a string using the escape sequence "\t", similarly to how you use "\n" to represent a newline.
BUT ... the tab key is used to move focus to the next control in the container, so the TextArea is not going to respond to it anyway, even if you add it to restrict. You will need to add a custom key handler and handle the insertion of tabs yourself. You can find an example here: http://flexsnippets.mediagreenhouse.com/?p=55 --- In [email protected], "Warren" <warrenony...@...> wrote: > > I have a Flex 3 textarea with restrict = "A-Z0-9\-". I want to let users > enter a tab cahracter but I can't figure out how to change the restrict > property to allow it. > > I know it's right in front of me but I can't see it. > > Thanks! > > Warren Koch >

