Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/06/2006, 10:56
Avatar de erlingfiallos
erlingfiallos
 
Fecha de Ingreso: febrero-2005
Ubicación: Mexico ahora
Mensajes: 499
Antigüedad: 19 años, 2 meses
Puntos: 9
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);

Última edición por erlingfiallos; 15/06/2006 a las 11:02