I developed a small flash component that keeps track of all the notifications (using my simple facade) that are send within your flash application. It will show you in a log format which notifications have been sent and also gives you an overview of which class is connected to which notification type.
Of course this is just a first draft, I’m planning on integrating the call stack as well plus an easier way to analyze your notification flow. But that is something for after I finish this project I’m working on
.
You do need the update facade files and set the debug variable of the facade to true using this line of code at the start of your application (before connecting any clients). Another advantage is that upon calling the instance getter, the facade is also initialised. Just don’t register a view before this line or it will not show up in the log window.
Facade.instance.debug = true;
Zip with simple facade source, example and log window
