trasformi l'immagine in movieclip e lo chiami img poi sulla time line metti


Codice PHP:
img.onPress = function() {
    
this.startDrag();
    
this.onMouseMove = function() {
        
updateAfterEvent();
    };
};
img.onRelease = function() {
    
this.stopDrag();
    
this.onMouseMove undefined;
}; 
ciao