questo nel frame dove si trovano i pulsanti!Originariamente inviato da NAP
Posta i codici che usi per il pulsante Up e Down.... ho un sospetto a riguardo di _x e... _xscale.
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);
stop();