vote up 0 vote down star

Hi,

I was wondering i can call an as3 function defined in script from mxml code just like this:

<mx:Line x="translateX(xmin);" .. >


<mx:Script>
   <![CDATA[

   // do some basic math
   private function translate ...

If not possible do i have to convert everything to as3 ?

Thanks

flag

62% accept rate
Your question is not quite clear. Please specify what you mean by "if not possible". – Christophe Herreman Dec 6 '08 at 20:49

2 Answers

vote up 5 vote down

You can but a straight-up function call like that needs to go into an event attribute in MXML, i.e. "when this event is dispatched, invoke this function." The classic example being:

<mx:Button label="Hello" click="myFunction()"/>

You can use a function as you have illustrated above provided that it's in a binding expression and the arguments passed to the function are bindable:

<mx:Line x="{positionLine(xmin)}"/>

// defined somewhere in a mx:Script block
[Bindable] private var xmin : Number;
link|flag
vote up 0 vote down

Yes you can.

link|flag

Your Answer

Get an OpenID
or

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