[flexcoders] Re: Regular Expression Problem

2007-03-09 Thread alexander.marktl
Hey Gordon. Thanks for the answer. I tried your suggestion, but it still won't work. I show once again what the problem is. I'm a novice, please keep this in mind ;-) This one works but it's case-sensitive. (The function liveSearch is unnecessary in this case. I know.):

[flexcoders] Re: Regular Expression Problem

2007-03-09 Thread alexander.marktl
Have found the error: Here's the working code: -- public function liveSearch(searchString:String):RegExp { var regExSearchString:RegExp = new RegExp(searchString, 'i'); return regExSearchString; } mx:TextInput