Re: [flexcoders] Restricting characters in User input controls

2009-03-05 Thread kotha poornima
Hi, Thanks this is working good. From: Alex Harui aha...@adobe.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Wednesday, March 4, 2009 11:17:10 AM Subject: RE: [flexcoders] Restricting characters in User input controls Try: mx:Script

Re: [flexcoders] Restricting characters in User input controls

2009-03-05 Thread kotha poornima
Spratt tspr...@lariatinc.com To: flexcoders@yahoogroups.com Sent: Wednesday, March 4, 2009 11:40:33 AM Subject: RE: [flexcoders] Restricting characters in User input controls The problem is the quote is causing the msml compile problems. Try using an entity string like quot; Tracy

Re: [flexcoders] Restricting characters in User input controls

2009-03-04 Thread Artur de Paula Ribeiro
mx:TextArea id=txtInput restrict=^’\\ / - Original Message - From: kotha poornima To: flexcoders Sent: Tuesday, March 03, 2009 8:50 AM Subject: [flexcoders] Restricting characters in User input controls Hi, I want to exclude single quotes and double quotes in the

RE: [flexcoders] Restricting characters in User input controls

2009-03-03 Thread Alex Harui
Try: mx:Script ![CDATA[ Private function setRestrict():void { txtInput.restrict =^’\; } ]] /mx:Script mx:TextArea id=txtInput initialize=”setRestrict()” Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui

RE: [flexcoders] Restricting characters in User input controls

2009-03-03 Thread Tracy Spratt
The problem is the quote is causing the msml compile problems. Try using an entity string like quot; Tracy _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of kotha poornima Sent: Tuesday, March 03, 2009 11:59 PM To: flexcoders Subject: Fw: