Hey Brian,
Yes, I see in the module example the root events being handled by the
[EventHandler] tag in the module's PModel. I have this working in my
app. What you example does not have is a CommandMap class mapping
root events in Module1 to some command classes residing in Module1
Swiz.
So what I am trying to do is inside my Module1CommandMap:
mapCommand(RootEvent.ROOT_EVENT_FLAG, SomeCommandInModule1,
RootEvent);
My command classes (extended from ICommand or IEventAwareCommand)
living in my Module1 Swiz can not be mapped to Root (global) events.
Right now the only solution I was able to create was to add a
GlobalEventController to my Module1 Swiz, have it listen for global
events using [EventHandler] and then dispatch 'local' events that are
mapped in the CommandMap to execute my various commands... Granted
this will work, but it seems like I'm having to code a solution for
something the framework should already do.