eh logrado hacer que mis barras se queden en la parte inferior y lateral derecho de mi pelicula
el problema viene ahora que deseo colocar de fondo un mc con animacion de fotos tipo slideshow y no logro redimensionar el mc que contiene esta animacion para que se adapte a cualquier monitor.
mi animacion es esta:
http://www.ahkepaja.com/diagramacionliquida/
el codigo que utilize para las barras fue este:
Stage.scaleMode = "noscale";
Stage.align = "TL";
_root.abajo.mn = Stage.height - 20;
_root.derecho._y = (Stage.height - 150) / 2;
_root.izquierdo._y = (Stage.height - 50) / 2;
_root.derecha.mn6 = Stage.width - 80;
_root.onResize = function ()
{
Stage.align = "TL";
_root.abajo.mn = Stage.height - 20;
_root.derecho._y = (Stage.height - 150) / 2;
_root.izquierdo._y = (Stage.height - 50) / 2;
_root.derecha.mn6 = Stage.width - 80;
};
Stage.addListener(_root);
en el CLip de la parte derecha este codigo:
onClipEvent (enterFrame)
{
this._x = this._x + (mn6 - this._x) / 10;
}
y en la barra inferior este:
onClipEvent (enterFrame)
{
this._x = this._x + (mn - this._x) / 10;
}
todo esto me funciona bien creo yo.
pero quisiese saber como hacer el fondo slideshow
