codice:
function describeScope(scope)
{
	trace("*************************************");
	trace("LISTA DEGLI OGGETTI IN " + scope);
	for(var prop in scope){
		trace("OGGETTO: " + prop + "  TIPO:" + (typeof prop) + "   VALORE: " + scope[prop]);
	}
}
describeScope(this);