i have a repeater :
PHP Code:
<mx:Repeater id="btnRepeater" dataProvider="{rep.currentItem.BUTTON}">
<mx:Button label="{btnRepeater.currentItem}" click="getDefinitionByName('{btnRepeater.currentItem.@EVENT}')"/>
</mx:Repeater>
and i want to call some how to a function with a value i get from the xml:
getDefinitionByName('{btnRepeater.currentItem.@FunctionName}')
anu idea?