Visualizzazione dei risultati da 1 a 2 su 2

Discussione: AIUTATEMI

  1. #1
    Utente di HTML.it
    Registrato dal
    May 2005
    Messaggi
    8

    AIUTATEMI

    NON SO SE MI RIUSCIRETE A CAPIRE COMUNQUE CI PROVO
    HO UN MENU CHE CONTIENE SEI MOVICLIP PULSANTE FUORI, CON I NOMI DI ISTANZA RIFERITI ALLE SEZIONI DENTRO OGNUNO DI QUESTO MOVIE CLIP C'è IL MOVICLIP PULSANTE DENTRO NOME DI ISTANZA INTERNO
    NEL QUALE SI SVOLGE L'ANIMAZIONE DI ROLLOVER
    NEL MOVICLIP PULSANTE FUORI HO SCRITTO:
    onClipEvent (mouseMove) {
    if (!premuto) {
    if (this.hitTest(_root._xmouse, _root._ymouse, false) && !aperto) {
    if (_currentframe>(_totalframes/2)) {
    gotoAndPlay(_totalframes-_currentframe);
    } else {
    play();
    }
    aperto = true;
    } else if (!this.hitTest(_root._xmouse, _root._ymouse, false) && aperto) {
    if (_currentFrame<(_totalFrames/2)) {
    gotoAndPlay(_totalframes-_currentframe);
    } else {
    play();
    }
    aperto = false;
    }
    }
    }
    onClipEvent (mouseDown) {
    if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
    gotoAndStop(11);
    _root.comandi(_parent._name);
    premuto = true;
    }
    }
    MENTRE NELLA MAIN HO SCRITTO
    fscommand ("allowscale", "false");
    out = "home";
    stop ();
    ultimo = "home";
    menu[ultimo].interno.premuto = true;
    menu[ultimo].interno.gotoAndStop(11);
    function comandi (nome) {
    if (nome != ultimo) {
    if (nome == "home") {
    news._visible = 1;
    unloadMovieNum (1);
    } else {
    loadMovieNum ("filmati/" + nome + ".swf", 1);
    news._visible = 0;
    }
    menu[ultimo].interno.premuto = false;
    menu[ultimo].interno.play();
    clip._x = -50;
    clip._alpha = 30;
    clip.tempo = getTimer();
    ultimo = nome;
    }
    }
    SICCOME I PULSANTI SONO 4 E TRA LORO CAMBIA SOLO I NOMI DI ISTANZA RIFERITI ALLE SEZIONI VOLEVO SAPERE SE POSSO INSERIRE UN IMMAGINE DIVERSA PER SEZIONI ALL'INTERNO DI PULSANTE FUORI CHE APPARE QUANDO I FRAME è SULLA META DEI FRAME MASSIMI
    VI RINGRAZIO SALUTI
    TRAVIX


  2. #2
    Utente di HTML.it
    Registrato dal
    May 2005
    Messaggi
    8
    DIMENTICAVO è IL MENU PRESO DALLA PAGGINA
    Costruire un sito in Flash passo per passo | Guide Flash | Flash-MX.HTML.it

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.