i am dispatching a event from a movieclip class.
my document class could hear it if i do this:
addEventListener("onJump", jumpReceived, true);
apprently, i must set the last parameter of capture to true. otherwise, i won’t get the dispatched event. i am not sure why though.
then now my problem comes when i am trying to listen to this event from one of the other movieclip classes. i did the same thing that i have done in my document class to listen to the event with the same callback function, but it doesn’t seem to detect anything.
how could i listen to it from other movieclip classes?
thanks.