On 29/11/08 at 21:51 +0100 Melitón Cardona Torres apparently wrote:

## Those characters (æ, ¦) cannot be included in spSma (?)
      if chartonum(aChar) is 190 then
        replace aChar with numtochar(174) in upText
        next repeat
      end if
     if chartonum(aChar) is 207 then
        replace aChar with numtochar(207) in upText
        next repeat
      end if

can be

     get wordoffset(chartonum(aChar),"190 207")
     if it>0 then
         replace cChar with numtochar(word it of "174 207") in upText
         next repeat
     end if

I wonder why you have 207 for both lower and upper versions.

Robert
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to