JScript allows funky features like .apply(), whereby you can invoke a method by name, passing an array of arguments to invoke the method with. However this applies to JScript (javascript) objects, and obviously won't work on a COM component - but this is the feature I am looking for.
Is there a way to invoke a COM object method, by name, and with dynamic args from JScript? I couldn't find anything.
Thanks!