Visualizzazione dei risultati da 1 a 2 su 2

Discussione: testo scorrevole

  1. #1

    testo scorrevole

    Buonasera community.
    vi pongo un quesito che non mi sta facendo dormire:
    sto utilizzando uno script di questo tipo in un file .fla per del testo html scorrevole:

    getURL("FSCommand:allowscale", false);
    su_btn.onRollOver = function() {
    _root.onEnterFrame = function() {
    --testo.scroll;
    };
    };
    su_btn.onRollOut = function() {
    _root.onEnterFrame = undefined;
    };
    giu_btn.onRollOver = function() {
    _root.onEnterFrame = function() {
    ++testo.scroll;
    };
    };
    giu_btn.onRollOut = function() {
    _root.onEnterFrame = undefined;
    };
    t = new Object();
    t.onKeyDown = function() {
    if (Key.isDown(38)) {
    --testo.scroll;
    } else if (Key.isDown(40)) {
    ++testo.scroll;
    }
    // end else if
    };
    Key.addListener(t);

    Secondo voi c'è qualche modo per rallentare lo scorrimento del testo?
    grazie a chiunque mi dedicherà un minuto del suo tempo-
    Paolo

  2. #2
    purtroppo nn ho la risposta..ma ti converrebbe spostare la domanda su flash actionscript!

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.