are you using the MouseEvent in the event handler? If not, default that parameter and just call the function directly
private function clickHandler(event:MouseEvent=null):void
{
}
private function otherFunction():void
{
clickHandler();
}
On Tue, Jul 29, 2008 at 8:30 PM, markgoldin_2000
<[EMAIL PROTECTED]>wrote:
> If I have a click listener on DG's cell can I execute cell's click
> programmatically, something like:
> cellObject.click()
> or somehow else to excute listener?
>
> Thanks
>
>
>

