On Wed, Apr 16, 2008 at 3:01 AM, Richmond Mathewson <[EMAIL PROTECTED]>
wrote:

> Trying to a alphabeticise a list-field
> and getting nowhere . . .
>
> More details please.

If you're only trying to convert the first letter of each line then:
6 line script, with line numbers


1  put field "listField" into tStore

2  repeat for each line tLine in tStore
3    put tLine & return after tStore2
4    put toUpper(char 1 of word 1 of tLine) into char 1 of word 1 of line -1
of tStore2
5  end repeat

6  put line 1 to -1 of tStore2 into field "listField"


HTH
_______________________________________________
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