Espero q sea algo asi como quieres usarlo, no puedes usarlo como tu intento porque se necesita un contenedor y dentro de el la imagen
Código:
var contenedor:MovieClipLoader = new MovieClipLoader();
contenedor.loadClip("http://www.google.com.mx/images/firefox/google.gif",this.createEmptyMovieClip("imagen", this.getNextHighestDepth()));
var mievento:Object = new Object();
mievento.onLoadInit = function(destino) {
destino.onPress = function() {
startDrag(this);
};
destino.onRelease = function() {
stopDrag();
};
};
contenedor.addListener(mievento);