03/12/06 03:46
>>914-918
パブリッシュ後のコード
----------------------------------------
#initclip
if (!_global.AS2Test) {
var v1 = function () {
trace(AS2Test.NAME);
trace(this.getAge());
};
_global.AS2Test = v1;
var v2 = v1.prototype;
v2.getAge = function () {
return this.age;
};
v1.NAME = 'DAMEPO';
v2.age = 10;
ASSetPropFlags(_global.AS2Test.prototype, null, 1);
}
#endinitclip
----------------------------------------