You're problem is this:

Code:
on *:LOAD:{
var %ascii.ucase À,Á,Â,Ã,Ä,Å,ß,Ç,Ð,È,É,Ê,Ê,Ë,Ì,Í,Î,Ï,Ñ,Ò,Ó,Ô,Õ,Ö,Ù,Ú,Û,Ü,Ý,¥
var %ascii.lcase à,á,â,ã,ä,å,ç,è,é,ê,ë,ì,í,î,ï,ñ,ò,ó,ô,õ,ö,ù,ú,û,ü,ý,ÿ
var %ascii.numeric  ø,¹,²,³,×,÷,¢,£,¼,½,¾
var %ascii.other ª,º,°,©,®,¡,¿,¤,§,«,»,¬,±,µ,¶,þ,Þ,Æ,æ,ð,¸,‘,’
}


You're making those variables local not global. Therefore their only avaliable within that event and not for later use. Instead of using the VAR command use SET which will make them global and for later use.

Last edited by nycdiesel; 20/01/05 07:32 PM.