
19.04.2004, 11:31
|
|
Регистрация: Apr 2001
Адрес: Moscow
Сообщений: 1,475
|
интереснее вот такая конструкция:
this.insideTest = function() {
var bla = 0;
this.test = function() {
trace(++bla);
};
};
this.insideTest()
this.onMouseUp = function() {
this.test()
};
|