Reputation: 32104
Can i create static function in a class in action script 1 ? please provide an example.
thanks
Upvotes: 0
Views: 284
Reputation: 10163
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);
Upvotes: 1