vote up 0 vote down star
<?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>

For the above Flex Code, when I click on the label lb, I get the following message at the runtime :

TypeError: Error #1123: Filter operator not supported on type builtin.as$0.MethodClosure.
at deleteIt/init1()[C:\Users\Dharmendra\Documents\Flex Builder 3\The_Vakeel\src\deleteIt.mxml:8]
at deleteIt/__lb_click()[C:\Users\Dharmendra\Documents\Flex Builder 3\The_Vakeel\src\deleteIt.mxml:3]

Could someone help me with this?

flag

43% accept rate

1 Answer

vote up 1 vote down check

You have a typo in your code, an extra "." before the second concat. Fixed:

lb.text = this.width.toString().concat("-").concat(this.height.toString());
link|flag
good eye. lb.text = this.width.toString + "-" + this.height.toString() would be much clearer though. – CookieOfFortune Jun 12 at 20:18
Sure is. dta is probably transitioning from a different language. – Stiggler Jun 12 at 20:53
but the compiler should have given an error here. will have to file a bug report at adboe. – dta Jun 13 at 9:51
filed a bug here : bugs.adobe.com/jira/browse/ASC-3750 – dta Jun 13 at 10:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.