Hola mglimas:
Escribe así tu código:
Código actionscript:
Ver originalimport flash.events.MouseEvent;
rollon_btn.addEventListener(MouseEvent.ROLL_OVER, cargarMC);
function cargarMC(e:MouseEvent):void
{
var miMC:miCaja = new miCaja();
contenedor.addChild(miMC);
miMC.x = 25;
miMC.y = 45;
}
rollon_btn.addEventListener(MouseEvent.ROLL_OUT, descargarMC);
function descargarMC(e:MouseEvent):void
{
contenedor.removeChildAt(0);
}
Espero haberte sido de ayuda.