
19.04.2004, 00:18
|
|
блогер
Регистрация: Mar 2003
Адрес: Моск. обл.
Сообщений: 5,269
|
MovieClip.prototype.undefAll=function(){
for(var i in this)
if(typeof(this[i])=="movieclip")this[i].undefAll();
else {
var type=typeof(this[i]);
if (type=="number" || type=="string" || type=="boolean") this[i]=undefined;
}
}
this.undefAll();
|