How do I correctly implement custom events? I thought the following should work, but I never receive CustomEvent.READY in the main Model
package mvc { im
I don't really see anything wrong with the code. Just to test, try adding this statement at the end of initWorld() method:
_worldModel.dispatchEvent(new Event(CustomEvent.READY));
If your update() method is called, that would indicate that your existing dispatchEvent() method isn't being called.