you could just type the param to an interface as long as your implementation would validate the contract you'd be good to go :)
ps: btw, actionscript does have a "form" of singletons On Wed, Feb 6, 2013 at 7:36 PM, Michael A. Labriola < labri...@digitalprimates.net> wrote: > >still the approach of adding the (...param) option seems like a viable > solution, what problems did you run into while implementing? > > Know the actual names of the viable methods, its particularly a problem > with polymorphism. > > function foo( value1:Object ):void; > function foo( value1:Person ):void; > > I need to know which of these to call and when. So, first I need to know > all the viable options and then discern from the data passed which is the > correct option. > > Mike > >