stavo provando qualke metodo un po grezzo:

onClipEvent(load){
this.numero=1; // numero è un campo testo dinamico
this.movie="page"+this.numero+".swf" // movie è un campo testo dinamico
loadMovie(this.movie,_root.box) // box è il movie contenitore, page1.swf,page2.swf file esterni
}
onClipEvent(enterFrame){
this.movie="page"+this.numero+".swf";
_root.button.onRelease=function(){
_root.controllo.numero++;
loadMovie(_root.controllo.movie,_root.box)
}
}

Questa cosa funziona...però come dirgli ke se il file nn cè, numero==1 ?

Cmq sia, preferirei un metodo un po piu decente..

Notte