I have an <mx:Application>
which contains a <mx:Module>
. This module has several child modules. It also has some an instance of a class I have created. I am trying to have a method of this class dispatch an event that can be "heard" by the module and handled. This isn't happening.
Any ideas?
To be more clear, I am using 'dispatchEvent' to from inside a class method. There is an instance of this class in: mx.core.Application.myapplication.mymodule.myclass
It is the 'myclass.somefunction' that dispatches the event. I have a listener registered in 'mymodule'. Nothing happens when the function/method runs, however.