http://en.flash-ripper.com/2007/09/how-to-define-your-own-global-function-in-as3/
在根目录中创建类testTrace.as
package { public function testTrace():int{ trace("this is custom global trace"); return 123; } }
可以直接使用:
trace("asdf" + testTrace().toString()); // 输出:asdf123
文件名和方法名要求一样,并且该类中不能声明属性,也不能声明其他全局方法。