l'immagine non è progressima e non me la fa vedere lo stesso
ho provato in questo modo e funziona
//livello 2 frame 1
dati = new LoadVars();
dati.onLoad = function(success) {
if (success) {
link_txt.html = true;
link_txt.autoSize = true;
link_txt.htmlText = this.testo;
}
};
dati.load("testo.htm");
ora ho unaltro problema....
ho provato ad applicare uno scrolling utilizzando due pulsante
ma non mi funge... mi potete spiegare il perchè?
--- codice---
//livello 3 frame 1
stop();
this.onEnterFrame = function() {
if (_root.suCont) {
_root.testo.scroll--;
}
if (_root.giuCont) {
_root.testo.scroll++;
}
};
//livello 2 frame 1
dati = new LoadVars();
dati.onLoad = function(success) {
if (success) {
link_txt.html = true;
link_txt.autoSize = true;
link_txt.htmlText = this.testo;
}
};
dati.load("testo.htm");
//azioni sui pulsanti
on (rollOver) {
_root.giuCont = true;
}
on (rollOut) {
_root.giuCont = false;
}
-------
on (rollOver) {
_root.suCont = true;
}
on (rollOut) {
_root.suCont = false;
}