Background Reading Read about the singleton The Problem? You want to have multiple instances of a singleton and want global access to them all. This may be because the objects use groups of resources, such as different groups of sounds, or because the objects need a lot of configuration, such as currency converters, or need global access, an event dispatcher. Examples? Currency converter, sound controller, global event dispatcher How? The Multiton: public class SocketManagerMultiton { private static var _instaces : Dictionary; public static const CHAT : String = “CHAT”; public static const WEATHER : String = “WEATHER”; public static functionRead more