Réponse acceptée !
Salut,
Salut, bon le temps que j'écrive un ptit script Mafassure avait déjà posté lol. mais bon vu que j'aime pas me pencher sur un problème pour rien je te le donne qd même.
this.createTextField("champSaisie", 99, 10, 10, 300, 20);
this.champSaisie.border = true;
this.champSaisie.type = "input";
this.champSaisie.restrict = "0-9";
this.createTextField("champReponse", 100, 10, 100, 300, 20);
this.champReponse.border = true;
this.champReponse.type = "dynamic";
this.champSaisie.onKillFocus = function() {
this._parent.champReponse.text = (parseInt(this.text, 10)*15)+" €";
};
Bon du coup ça n'apporte pas grand chose mais bon.... c'est toujours bon à prendre

++