I need to implement a proxy pattern for flex action script. The source object contains 40-50 methods, and may keep increasing, so I hope I could avoid implementing individual methods in the source object.
I remember in java, I could use reflection to centralized all the proxy calls, is there any similar mechanism in Flex Action Script?
Thanks.