Robert Penner shows to the world his new Event System called Signals
it’s a cool way for managing Events in AS3 inspired by C# events and signals/slots in Qt.
Concept
A Signal is essentially a mini-dispatcher specific to one event, with its own array of listeners.
A Signal gives an event a concrete membership in a class.
Listeners subscribe to [...]