Este es el código del botón:
Código :
on (rollOver) {
mc_home.onEnterFrame = function () {
if (this._currentframe != 5) {
this.nextFrame();
}
else {
this.stop();
delete this["onEnterFrame"];
}
};
}
on (rollOut) {
mc_home.onEnterFrame = function () {
if (this._currentframe != 1) {
this.prevFrame();
}
else {
this.stop();
delete this["onEnterFrame"];
}
};
}
on(release){
mc_cargador.loadMovie("home.swf");
}
Tambien he intentado meterle esta opción al final y tampoco
Código :
on(release){
loadMovie("home.swf", "mc_cargador");
}En incluso esta otra en la acción del mc
Código :
btn_home.onPress = function() {
(mc_cargador, "home.swf");
};Al final me he hecho un lio enorme
¿Como puedo llamarlo desde ese botón?
