On Dec 8, 2004, at 1:28 PM, Dar Scott wrote:

Untested:

function isCapitalized @x, n, m
    constant capitalLetters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
    return char 1 word n of line m of x is in capitalLetters
end isCapitalized

Whoops!

on mouseUp
  put "one two three" & lf & "Alpha beta" into x
  put isCapitalized(x,2,1) && isCapitalized(x,1,2)
end mouseUp

function isCapitalized @x, n, m
  constant capitalLetters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  set the caseSensitive to true
  return char 1 word n of line m of x is in capitalLetters
end isCapitalized

Now tested.

Dar
****************************************
    Dar Scott Consulting
    http://www.swcp.com/dsc/
    Programming Services
****************************************

_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to