|
hello everyone !
I'm trying to creat a little scripts that ask infos to a user, these infos are wrote in a file called perfs.js (thunderbird configuration). It works but ... yes there a 'but' : the accentuation didn't work correctly.
there is the script, very simple :
? 'Configuration de votre messagerie '
? 'Introduisez votre Prénom et Nom :' GETS $var1 ? 'Introduisez le nom de votre Institution :' GETS $var2 ? 'Introduisez votre adresse email complète :' GETS $var3 ? 'Introduisez votre username de messagerie (ex: abc123 ou 123) :' GETS $var4
? 'Prénom et nom : ' $var1 ? 'Institution : ' $var2 ? 'adresse email : ' $var3 ? 'username : ' $var4 if open(3, "c:\kix\prefs.js", 5) = 0 $u = writeline(3, @CRLF + $var1) $v = writeline(3, @CRLF + $var2) $w = writeline(3, @CRLF + $var3) $x = writeline(3, @CRLF + $var4) endif
thank you for all your help !!! Olivier
|