Flex : Filter operator not supported - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T07:09:48Z http://stackoverflow.com/feeds/question/987735 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/987735/flex-filter-operator-not-supported 0 Flex : Filter operator not supported dta 2009-06-12T16:44:48Z 2009-06-12T19:21:54Z <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"&gt; &lt;mx:Label id="lb" text="check" click="init1()"/&gt; &lt;mx:Script&gt; &lt;![CDATA[ public function init1():void { lb.text = this.width.toString().concat("-").concat.(this.height.toString()); } ]]&gt; &lt;/mx:Script&gt; &lt;/mx:WindowedApplication&gt; </code></pre> <p>For the above Flex Code, when I click on the label lb, I get the following message at the runtime : </p> <p>TypeError: Error #1123: Filter operator not supported on type builtin.as$0.MethodClosure. <br/>at deleteIt/init1()[C:\Users\Dharmendra\Documents\Flex Builder 3\The_Vakeel\src\deleteIt.mxml:8]<br/> at deleteIt/__lb_click()[C:\Users\Dharmendra\Documents\Flex Builder 3\The_Vakeel\src\deleteIt.mxml:3]<br/></p> <p>Could someone help me with this?</p> http://stackoverflow.com/questions/987735/flex-filter-operator-not-supported/988550#988550 1 Answer by Stiggler for Flex : Filter operator not supported Stiggler 2009-06-12T19:21:54Z 2009-06-12T19:21:54Z <p>You have a typo in your code, an extra "." before the second concat. Fixed:</p> <pre><code>lb.text = this.width.toString().concat("-").concat(this.height.toString()); </code></pre>