home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Complete Idiot's Guide to Microsoft Excel 2010
/
CIGExcel.iso
/
Videos
/
Flash
/
controller.swf
/
scripts
/
__Packages
/
com
/
techsmith
/
utils
/
Delegate.as
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2010-09-09
|
500 b
|
23 lines
class com.techsmith.utils.Delegate
{
function Delegate()
{
}
static function create(d_scope, d_func)
{
var addArguments = new Array();
var _loc2_ = 2;
while(_loc2_ < arguments.length)
{
addArguments.push(arguments[_loc2_]);
_loc2_ = _loc2_ + 1;
}
var _loc3_ = function()
{
var _loc2_ = arguments.concat(addArguments);
d_func.apply(d_scope,_loc2_);
};
return _loc3_;
}
}