[Flashcoders] Variable argument list

2007-07-18 Thread Swapnil Dubey
Hi all, I want to implement an function funcA that takes a variable list of arguments, and passes on that list to another function funcB, just like setInterval does. funcA = function() { // Here I can access the arguments through the arguments array. // But

Re: [Flashcoders] Variable argument list

2007-07-18 Thread R�kos Attila
: [Flashcoders] Variable argument list --===-- Hi all, I want to implement an function funcA that takes a variable list of arguments, and passes on that list to another function funcB, just like setInterval does. funcA

Re: [Flashcoders] Variable argument list

2007-07-18 Thread eric e. dolecki
you could pass an object and have properties on that object serve as arguments. - eric On 7/18/07, Swapnil Dubey [EMAIL PROTECTED] wrote: Hi all, I want to implement an function funcA that takes a variable list of arguments, and passes on that list to another function funcB, just like

Re: [Flashcoders] Variable argument list

2007-07-18 Thread Muzak
: Wednesday, July 18, 2007 12:55 PM Subject: [Flashcoders] Variable argument list Hi all, I want to implement an function funcA that takes a variable list of arguments, and passes on that list to another function funcB, just like setInterval does. funcA = function(){ // Here I can

RE: [Flashcoders] Variable argument list

2007-07-18 Thread Claudius Ceteras
Hi, I want to implement an function funcA that takes a variable list of arguments, and passes on that list to another function funcB, just like setInterval does. funcA = function() { funcB.apply(this,arguments) regards, Claudius