It will work
myComponent.addEventListener(MouseEvent.CLICK, function
(e:mouseEvent):void
{
var parm1:String = "First Parameter";
var parm2:String = "Second Parameter";
myClickHandler(e,parm1,parm2);
});
private function myClickHandler(e,str1,str2):void
{
trace("Parameter 1 :"+str1); trace("Parameter 2 :"+str2);
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---