Foros del Web » Creando para Internet » Flash y Actionscript »

Galeriadefotos no se ve en Web

Estas en el tema de Galeriadefotos no se ve en Web en el foro de Flash y Actionscript en Foros del Web. buenas tengo un problema, tengo una galeria de fotos con flash y xml cuando lo carg oen la PC funciona bien se ven las fotos ...
  #1 (permalink)  
Antiguo 04/01/2008, 08:28
Avatar de El_Fantasma  
Fecha de Ingreso: marzo-2005
Ubicación: Peru
Mensajes: 481
Antigüedad: 19 años, 1 mes
Puntos: 4
Galeriadefotos no se ve en Web

buenas tengo un problema, tengo una galeria de fotos con flash y xml cuando lo carg oen la PC funciona bien se ven las fotos y carga todo bien pero cuando lo pongo en la web no carga las fotos pero ladescripcion no se q puede estar pasando su puestametne si carga en la pc debe cargar tambien en la web

si me puedieran ayudar seria axecelente
http://bdelastortas.webcindario.com/
estaes la pag de prueba

saludos
estoy hay en el xml
Código:
<!--1-->
<foto grande="imagen/grande/img1.JPG" mcizq= "imagen/img1p.jpg" mcder= "imagen/img1pp.jpg" thumb="imagen/chica/thumb1.jpg"
desc="Torta de Novia - Nro. 8" desc1="Keke de Novia " desc2="Pasas, Castañas, Pecanas, Nuez Moscada, Brandy, Miel chancada" desc3="Miel Chancaca" 
desc4="Bipiur" desc5="Pasa Cinta" desc6="Forrada con Masa Eleastica todo masticable" desc7="Diferentes colores y modelos todo" />
estoy hay en el flash q enlaza al xml
Código:
var meuXML = new XML();
meuXML.ignoreWhite = true;
meuXML.onLoad = function ()
{
    altura = thumb._height * meuXML.childNodes[0].childNodes.length + meuXML.childNodes[0].childNodes.length * 2;
    for (i = 0; i < meuXML.childNodes[0].childNodes.length; i++)
    {
        duplicateMovieClip("thumb", "thumb" + i, i + 1);
        thumbs = _root.tudo_mc["thumb" + i];
        thumbs._y = thumbs._y + (thumb._height + 2) * i;
        var MCL1 = new MovieClipLoader();
        MCL1.loadClip(meuXML.childNodes[0].childNodes[i].attributes.thumb, thumbs.mostra);
        thumbs.onEnterFrame = function ()
        {
            progresso1 = MCL1.getProgress(this.mostra);
            this.pct_thumb.text = Math.ceil(progresso1.bytesLoaded / progresso1.bytesTotal * 100) + "%";
            progresso1.bytesLoaded == progresso1.bytesTotal ? (this.pct_thumb._visible = false) : (this.pct_thumb._visible = true);
        };
        thumbs.atual = i;
        thumbs.campo.text = i + 1;
        thumbs.btn.useHandCursor = false;
        thumbs.btn.onRelease = function ()
        {
            var MCL2 = new MovieClipLoader();
            MCL2.loadClip(meuXML.childNodes[0].childNodes[this._parent.atual].attributes.grande, _root.mc);
            MCL2.loadClip(meuXML.childNodes[0].childNodes[this._parent.atual].attributes.mcizq, _root.mcizq);
            MCL2.loadClip(meuXML.childNodes[0].childNodes[this._parent.atual].attributes.mcder, _root.mcder);
            this.onEnterFrame = function ()
            {
                progresso2 = MCL2.getProgress(_root.mc);
                _root.pct.text = Math.round(progresso2.bytesLoaded / progresso2.bytesTotal * 100) + "%";
                progresso2.bytesLoaded == progresso2.bytesTotal ? (_root.pct._visible = false) : (_root.pct._visible = true);
            };
            _root.descricao.text = meuXML.childNodes[0].childNodes[this._parent.atual].attributes.desc;
            _root.desc1.text = meuXML.childNodes[0].childNodes[this._parent.atual].attributes.desc1;
            _root.desc2.text = meuXML.childNodes[0].childNodes[this._parent.atual].attributes.desc2;
            _root.desc3.text = meuXML.childNodes[0].childNodes[this._parent.atual].attributes.desc3;
            _root.desc4.text = meuXML.childNodes[0].childNodes[this._parent.atual].attributes.desc4;
            _root.desc5.text = meuXML.childNodes[0].childNodes[this._parent.atual].attributes.desc5;
            _root.desc6.text = meuXML.childNodes[0].childNodes[this._parent.atual].attributes.desc6;
            _root.desc7.text = meuXML.childNodes[0].childNodes[this._parent.atual].attributes.desc7;
            _root.desc8.text = meuXML.childNodes[0].childNodes[this._parent.atual].attributes.desc8;
        };
        thumbs.btn.onRollOver = function ()
        {
            _root.tudo_mc["thumb" + this._parent.atual].mostra.contrastTo(50, 1);
        };
        thumbs.btn.onRollOut = function ()
        {
            _root.tudo_mc["thumb" + this._parent.atual].mostra.contrastTo(100, 1);
        };
    } // end of for
    _root.rolagem.drag.onPress = function ()
    {
        var _loc4 = this._x;
        var _loc5 = this._x;
        var _loc3 = 0;
        var ymax = this._parent.fundo._height - this._height;
        this.startDrag(false, _loc4, _loc3, _loc5, ymax);
        this.onRelease = this.onReleaseOutside = function ()
        {
            stopDrag ();
            delete this.onMouseMove();
        };
        this.onEnterFrame = function ()
        {
            _root.tudo_mc._y = _root.tudo_mc._y + (-Math.round(this._y / ymax * (altura - _root.rolagem._height)) - _root.tudo_mc._y) / 3;
        };
    };
};
meuXML.load("galeria1.xml");
__________________
Vida esta LLena de Retos, pero Retos A superar http://www.ideasmkt.com
  #2 (permalink)  
Antiguo 04/01/2008, 08:46
Avatar de Bandit
Moderador
 
Fecha de Ingreso: julio-2003
Ubicación: Lima - Perú
Mensajes: 16.726
Antigüedad: 20 años, 9 meses
Puntos: 406
Re: Galeriadefotos no se ve en Web

Hola El_Fantasma:
Si funciona en local y no en el servidor puede ser 2 cosas:
1.- Que no hayas subido las imágenes.
2.- Que la distribución de carpetas en el servidor no se igual al que tienes en local.

Espero haberte sido de ayuda
__________________
Bandit.
Si no sabes estudia y si sabes enseña.
http://www.banditwebdesign.com/
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 07:41.