Scusate ma a me non funge..
il mio codice è questo, ma i pulsanti spariscono anche quando le righe sono più del dovuto!


codice:
onClipEvent (load) {
	fscommand("allowscale", "false");
	stop();
	loadVariables("testi.txt?foo="+random(999999), this);
}
onClipEvent (data) {
	nextFrame();
	if (this.testo.maxscroll>14) {
		this.giu._visible = 1;
		this.su._visible = 1;
		this.barra._visible = 1;
		this.scroller._visible = 1;
	} else {
		this.giu._visible = 0;
		this.su._visible = 0;
		this.barra._visible = 0;
		this.scroller._visible = 0;
	}
}

Come mai?