Flex : Filter operator not supported - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T07:09:48Zhttp://stackoverflow.com/feeds/question/987735http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/987735/flex-filter-operator-not-supported0Flex : Filter operator not supporteddta2009-06-12T16:44:48Z2009-06-12T19:21:54Z
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Label id="lb" text="check" click="init1()"/>
<mx:Script>
<![CDATA[
public function init1():void
{
lb.text = this.width.toString().concat("-").concat.(this.height.toString());
}
]]>
</mx:Script>
</mx:WindowedApplication>
</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#9885501Answer by Stiggler for Flex : Filter operator not supportedStiggler2009-06-12T19:21:54Z2009-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>