codice:
function mouse_over()
{
	_global.a = setInterval(this, 'canc_sottomenu', 100);
}
function canc_sottomenu()
{
	trace("senza this :" + nome_variabile);
	trace("con this :" + this.nome_variabile);
	trace("this =" + this);
	clearInterval(a);
}
nome_variabile = "ciao";
this.onRollOver = this.mouse_over;
this.onRollOut = function()
{
	clearInterval(a);
};
ciao