Ciao a tutti ho un problemino... ho utilizzato un scroll di testo con questo script:
testo.text = "Che bella girnata oggi, sole caldo aria fresca....";


su_btn.onPress = function(){
_root.onEnterFrame = function(){
testo.scroll--;
}
};
su_btn.onRelease = function(){
_root.onEnterFrame = undefined;
}
giu_btn.onPress = function(){
_root.onEnterFrame = function(){
testo.scroll++;
}
};
giu_btn.onRelease = function(){
_root.onEnterFrame = undefined;
}

t = new Object()
t.onKeyDown = function(){
if(Key.isDown(Key.UP)){
testo.scroll--
}else if(Key.isDown(Key.DOWN)){
testo.scroll++
}
};
Key.addListener(t);

Però è all'interno di un swf esterno che carico con loadMovieNum("styling.swf",1); quando lo carico non mi legge il testo credo che sia un problema di percorsi....credo!

Chi mi potrebbe dare una mano nel capire il problema!?
Grazie mille!