I needed a text field which only accepts letters, digits, spaces, or a dollar sign or underbar, so I set the restriction attribute as:
textfield.restrict = A-Za-z0-9 _$ OK, then I needed to add accented characters, so I added: textfield.restrict = A-Za-z0-9 _$\u00C0-\u00d6 Now, the text field admits any of the following punctuation: <>;:[]=^@ I worked around with an exclusion: textfield.restrict = A-Za-z0-9 _$\u00C0-\u00d6^:[EMAIL PROTECTED] So, everything works now, but this is one of those things that rubs my fur the wrong way. Any insight? P. _______________________________________________ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com

