Hice un duplicado de un botón así:
Cita:
var botones:Array = new Array();
var misBotones:video_btn;
var totalBotones:uint = 2;
var h:uint = 0;
var misBotones:video_btn;
var totalBotones:uint = 2;
var h:uint = 0;
Cita:
Pero lo que necesito no es que se carguen todos los botones a la vez, sino que cuando yo presione un botón A se me cargue el botón B (el que se carga con addChild())for(h = 0; h<totalBotones; h++){
misBotones = new video_btn();
misBotones.x = misBotones.width + 473;
misBotones.y = 400 - (misBotones.height - 228);
misBotones.width = 50;
misBotones.height = 50;
misBotones.buttonMode = true;
botones.push(misBotones);
addChild(misBotones);
misBotones.addEventListener(MouseEvent.CLICK, hizoClick);
}
misBotones = new video_btn();
misBotones.x = misBotones.width + 473;
misBotones.y = 400 - (misBotones.height - 228);
misBotones.width = 50;
misBotones.height = 50;
misBotones.buttonMode = true;
botones.push(misBotones);
addChild(misBotones);
misBotones.addEventListener(MouseEvent.CLICK, hizoClick);
}
Gracias por su ayuda