Tengo un MovieClip llamado textos_mc, el cual contiene 40 fotogramas y en cada fotograma hay botones.
Yo deseo poner esa programación en un archivo .as aparte del .fla y también buscar la manera de no tener que generar por cada botón la programación.
Así tengo mi programación:
Cita:
video01_btn.addEventListener(MouseEvent.CLICK,vide o01);
//
video01_btn.addEventListener(MouseEvent.ROLL_OVER, video01MouseOver, false, 0, true);
video01_btn.addEventListener(MouseEvent.ROLL_OUT, video01MouseOut, false, 0, true);
//
function video01MouseOver(event:MouseEvent):void {
campo_txt.text="texto...";
}
function video01MouseOut(event:MouseEvent):void {
campo_txt.text="";
}
//
function video01(event:MouseEvent):void {
fscommand("exec", "nombre.exe");
}
Así por cada fotograma (40 en total) para cada botónvideo01_btn.addEventListener(MouseEvent.CLICK,vide o01);
//
video01_btn.addEventListener(MouseEvent.ROLL_OVER, video01MouseOver, false, 0, true);
video01_btn.addEventListener(MouseEvent.ROLL_OUT, video01MouseOut, false, 0, true);
//
function video01MouseOver(event:MouseEvent):void {
campo_txt.text="texto...";
}
function video01MouseOut(event:MouseEvent):void {
campo_txt.text="";
}
//
function video01(event:MouseEvent):void {
fscommand("exec", "nombre.exe");
}
Como optimizo este código y lo hago aparte?
Gracias por su ayuda