Depending on what exactly you're trying to do, it seems like you can just say nc.call("myMethod", params), can't you?
Or are you looking for the rest syntax for AS3? In that case, this may help: http://www.sephiroth.it/weblog/archives/2006/06/actionscript_3_rest_parameter.php
But be careful, it looks like you're trying to make a NetConnection call there and so if you're actually calling for instance a PHP function then this won't work. The rest operator (...) is used when defining your method signatures in AS3.
If you just want to pass an array of parameters to a PHP function via AMFPHP or something like that, do what I said in my first sentence and simply pass the params object. On the PHP side you would treat it as an associative array ($params->username, $params->age, etc)
Hope that helps, and if it doesn't please be a little bit more clear about what it is you're trying to accomplish!
Cheers,
myk
nc.call? Is that a call out to Javascript, NetConnection to FMS, other AS3 function? Why want you just passparamsand let the receiving function handle a single object with multiple properties?