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

## SpecChars
     if aChar is among the chars of spSma then
        repeat with y=1 to the number of chars of spSma
          if aChar is char y of spSma then
            replace char y of spSma with char y of spCap in upText
          end if
        end repeat
      end if

can be

     get offset(aChar, spSma)
     if it > 0 then replace char it of spSma with char it of spCap in upText

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