I have a MouseEvent function and I need to call it without MouseEvent as well. I know there is quick and easy way to do it but I forgot....
my_mc.addEventListener(MouseEvent.CLICK, callEvent);
function callEvent(e:MouseEvent):void
{
trace("Mouse event called");
}
callEvent()???
now I need to call the same event without any events. I know I can create a new function without any event an call that from callEvent. But that is not what I am looking for...
Thanks, Rex