Polliotto,
mi spiegheresti come in MX si può convertire secondo le tue istruzioni
questo script
onClipEvent(load){
nome="Sfo"+substring(this._name,4,1);
}
onClipEvent(mouseDown){
if(this.hitTest(_root._xmouse,_root._ymouse, false)){
premuto=true
}
}
onClipEvent(mouseMove){
if(this.hitTest(_root._xmouse,_root._ymouse, false)){
this[nome].nextFrame()
}else{
this[nome].prevFrame()
}
}
onClipEvent(enterFrame){
if(premuto){this[nome].nextFrame()}
}
GRAZIE