Ciao a tutti!Vorrei scalare un livello chiamato "Layer1" ,
la funzione che dovrebbe scalare è questo:
codice:
var _width=500;
var _height= 400;
function scalaLivello()
{
	document.getElementById("Layer1").width += (_width - document.getElementById("Layer1").width) / 10;
	document.getElementById("Layer1").height += (_height - document.getElementById("Layer1").height) / 10;
	alert(_width+'   '+_height);	
}
Mi hanno detto che dovrei riassegnare il valore, ma non so cosa voglia dire.
grazie in anticipo