flash as2中定义全局函数: 例子: function(int a,int b){ int c; c=a+b; } 小括号里面是参数。
_global.函数名 = function(){ //函数内容} 调用时 _global.函数();
_global.index=0;