flash as1: class creation - static functions - possible?

283 Views Asked by At

Can i create static function in a class in action script 1 ? please provide an example.

thanks

1

There are 1 best solutions below

0
Mark Knol On BEST ANSWER

I think you should use a global function in case of AS1 projects

_global.myFunction = new function(param1, param2)
{
  // do stuff
  trace("1: " + param1 + "\n 2:" + param2 );
}

Call it like this

_global.myfunction("hello", 42);