Visualizzazione dei risultati da 1 a 3 su 3
  1. #1

    carica immagini dinamiche

    STRANISSIMO..
    provate a cliccare sito in costruzione , poi cliccate su
    CUCINE ed infine su
    BORGO ANTICO
    guardate cosa succede sul loop di immagini, la prima volta, al primo giro vengono caricate all'estremita sinistra e superiore, poi funziona correttamente....
    lo script è questo:

    ALLEGO ANCHE IL FILE
    FILE FLA




    stop();
    spacing = 10;
    _root.c.c.containerMC._alpha = 0;

    MovieClip.prototype.loadPic = function(pic){
    _root.c.c.containerMC._alpha = 0;
    this.loadMovie(pic);
    _root.onEnterFrame = function(){
    var t = containerMC.getBytesTotal(), l = containerMC.getBytesLoaded();
    if (t != 0 && Math.round(l/t) == 1){
    var w = containerMC._width + spacing, h = containerMC._height + spacing;
    border.resizeMe(w, h);
    delete _root.onEnterFrame;
    }
    }
    };
    MovieClip.prototype.resizeMe = function(w, h){
    var speed = 5;
    this.onEnterFrame = function(){
    this._width += (w - this._width)/speed;
    this._height += (h - this._height)/speed;
    if( Math.abs(this._width-w)<1){
    this._width = w;
    this._height = h;
    _root.c.c.containerMC._x = this._x - this._width/2 + spacing/2;
    _root.c.c.containerMC._y = this._y - this._height/2 + spacing/2;
    _root.c.c.containerMC._alpha = 100;
    delete this.onEnterFrame;
    }
    }
    };

  2. #2
    Non ho avuto modo di vedere il fla ma
    ti informo che i primi 3 menù sono in (times new roman??) carattere differente, controlla i fonts.

    Ciao

  3. #3
    si certo ...adesso il problema è quello delle immagini..i font li sistemo alla fine..

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.