As you say, the overload function is not supported in Action Script (and therefore not even in Flex).
But functions can have default parameters, for example here:
public function DoSomething(a:String='', b:SomeObject=null, c:Number=0):void
DoSomething can be called up in 4 different ways:
DoSomething()
DoSomething('aString')
DoSomething('aString', anObject)
DoSomething('aString', anObject, 123)
, Action Script ECMA Script. , , , . ( )
ECMA-262 ( ECMAScript) 13 (. 83 PDF) , ββ,
function Identifier(arg0, arg1) {
}
Identifier, Function, :
new Function(arg0, arg1, body)
, ,