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

    problema con if ed else if con flash mx 2004

    salve...

    perchè, se, premendo un pulsante che carica dei dati da dei text input, almeno uno dei text dei text input è vuoto, non va al fotogramma 3? ma al 2?
    Il codice associato all'azione del pulsante é questa:

    codice:
    on (release) {
    	dati = new LoadVars();
    	dati.nome = nome.text;
    	dati.email = email.text;
    	dati.oggetto = oggetto.text;
    	dati.messaggio = messaggio.text;
    	dati.priorita = priorita.selectedItem.label;
    	if (nome.text == "") {
    		nome.text = "CAMPO OBBLIGATORIO";
    		gotoAndPlay(3);
    	} else if (email.text == "") {
    		email.text = "CAMPO OBBLIGATORIO";
    		gotoAndPlay(3);
    	} else if (oggetto.text == "") {
    		oggetto.text = "CAMPO OBBLIGATORIO";
    		gotoAndPlay(3);
    	} else if (messaggio.text == "") {
    		messaggio.text = "CAMPO OBBLIGATORIO";
    		gotoAndPlay(3);
    	}
    	dati.sendAndLoad("inviamail.php", dati, "POST");
    	gotoAndPlay(2);
    }
    grazie... ciao.

  2. #2
    Utente di HTML.it L'avatar di negatyve
    Registrato dal
    Feb 2001
    Messaggi
    9,479
    codice:
    on (release) {
    	dati = new LoadVars();
    	dati.nome = nome.text;
    	dati.email = email.text;
    	dati.oggetto = oggetto.text;
    	dati.messaggio = messaggio.text;
    	dati.priorita = priorita.selectedItem.label;
    	trace(nome.text)
    	if (nome.text == "") {
    		nome.text = "CAMPO OBBLIGATORIO";
    		gotoAndPlay(3);
    	} else if (email.text == "") {
    		email.text = "CAMPO OBBLIGATORIO";
    		gotoAndPlay(3);
    	} else if (oggetto.text == "") {
    		oggetto.text = "CAMPO OBBLIGATORIO";
    		gotoAndPlay(3);
    	} else if (messaggio.text == "") {
    		messaggio.text = "CAMPO OBBLIGATORIO";
    		gotoAndPlay(3);
    	} else {
    		dati.sendAndLoad("inviamail.php", dati, "POST");
    		gotoAndPlay(2);
    	}
    }

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.