views:

106

answers:

1

I want to modify the Flex 3 TextInput control to accept a tab character as valid input (The app allows the user to enter an arbitrary delimiter string for file output formatting, and tab is a common use case). However, clearly in the default implementation the tab key changes the form focus away from the selected control.

What I want, really, is a good way to allow arbitrary delimiter specifications in a UI, including (but not limited to) TAB, ,, |, &c.

+1  A: 

Not Flex, but this should get you on your way.

http://stackoverflow.com/questions/690816/how-can-i-permit-tab-characters-in-a-textfield-in-flash

spender
Beautiful. Thank you!
Chris R