I'm using Signals by Robert Penner in my latest project. It works great.
https://github.com/robertpenner/as3-signals
Now I need a way to know when a signal hal already been dispatched somewhere in the past. For example I have a class that dispatches a signal when it is fully loaded, but I need some flag in the same class to allow some methods to work only if the event has already been dispatched.
So, the quick and fast solution is to add a boolean in the event handler:
isLoaded = true;
But I wonder if there's already something implemented in the Signal class that I could use.