Pagina 2 di 2 primaprima 1 2
Visualizzazione dei risultati da 11 a 16 su 16

Discussione: slide con fumetti

  1. #11
    cos'è lo swapdephts....questo è il codice del clip CONTROL

    onClipEvent (load) {
    centro = _root.barra1._x;
    larghezza = _root.barra1._width;
    destra = centro + larghezza;
    sinistra = centro - larghezza;
    _root.barra1.duplicateMovieClip("barra2", 2);
    _root.barra2._x = destra;
    }
    onClipEvent (mouseMove) {
    _x = _root._xmouse;
    }
    onClipEvent (enterFrame) {
    mouseX = Math.round(_x-centro)*-1;
    mouseX = Math.round(mouseX/_root.fattore);
    _root.barra1._x += mouseX;
    _root.barra2._x += mouseX;
    barra1X = _root.barra1._x;
    barra2X = _root.barra2._x;
    if (barra1X < sinistra) {
    _root.barra1._x = barra2X + larghezza;
    }
    if (barra2X < sinistra) {
    _root.barra2._x = barra1X + larghezza;
    }
    if (barra1X > destra) {
    _root.barra1._x = barra2X - larghezza;
    }
    if (barra2X > destra) {
    _root.barra2._x = barra1X - larghezza;
    }
    }

  2. #12
    quello delle tool tip invece???

    _root.barra1.duplicateMovieClip("barra2", 2 );

    lo duplichi su un depth ovvero profondità 2
    che risulta quindi superiore a quello della tooltip che sarà 1 magari posta il codice della tooltip anche
    Consulenza aziendale a 360° http://www.gruppodg.it http://www.gruppodg.it/3d
    Realizzazione siti internet, Siti Flash, Ricerca Location per bar negozi , esercizi commerciali, sviluppo pratiche e allestimento

  3. #13
    QUESTO è TUTTO IL CODICE CHE HO...

    ------------------------------

    onClipEvent(enterFrame){this.swapDepths(10);}

    ------------------------------

    onClipEvent (enterFrame) {
    startDrag(this, true);
    }

    ------------------------------
    QUESTO è QUELLO CHE C'è SU UNA SINGOLA MAPPA...

    on (rollOver) {
    _root.mc_tooltip.tooltip = "Sala 4, testo finto, testo finto, testo finto, testo finto, testo finto, testo finto";
    _root.mc_tooltip.gotoAndPlay("zeigeTooltip");
    }
    on (rollOut) {
    _root.mc_tooltip.tooltip = "";
    _root.mc_tooltip.gotoAndPlay(1);
    }
    ------------------------------

  4. #14
    on (rollOver) {
    _root.mc_tooltip.tooltip.swapDepths(100); _root.mc_tooltip.tooltip = "Sala 4, testo finto, testo finto, testo finto, testo finto, testo finto, testo finto";
    _root.mc_tooltip.gotoAndPlay("zeigeTooltip");
    }
    on (rollOut) {
    _root.mc_tooltip.tooltip = "";
    _root.mc_tooltip.gotoAndPlay(1);
    }


    //se non va così la parte in rosso dovrebbe essere solo

    _root.mc_tooltip.swapDepths(100);
    Consulenza aziendale a 360° http://www.gruppodg.it http://www.gruppodg.it/3d
    Realizzazione siti internet, Siti Flash, Ricerca Location per bar negozi , esercizi commerciali, sviluppo pratiche e allestimento

  5. #15
    IN LOCALE FUNZIONA!!!!, GRAZIE MILLE mi hai risolto un bell'enigma...,
    TI POSSO TROVARE DOPO LA PAUSA PRANZO?

  6. #16
    si sono qui

    Consulenza aziendale a 360° http://www.gruppodg.it http://www.gruppodg.it/3d
    Realizzazione siti internet, Siti Flash, Ricerca Location per bar negozi , esercizi commerciali, sviluppo pratiche e allestimento

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 © 2026 vBulletin Solutions, Inc. All rights reserved.