Can i create static function in a class in action script 1 ? please provide an example.
thanks
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);
Copyright © 2021 Jogjafile Inc.
I think you should use a global function in case of AS1 projects
Call it like this