Salve a tutti, sto creando un sito dal layout fluido.
ho creato uno stagelistener:
codice:
posiz = function(w,h){
	barup._y = 0;
	bardown._y = h - 75;
}
posiz(Stage.width,Stage.height);
ridim = function(w,h){
	barup._width = w;
	bardown._width = w;
}
stageListener = new Object();
stageListener.onResize = function() {
	ridim(Stage.width,Stage.height);
}
Stage.addListener(stageListener);
Il problema è che non ridimensiona barup e bardown.. non so come fare.. qualche consiglio??