Gregory Lypny wrote:
Hello everyone,

I have a simply twelve-line list with the name of a month as the first word on each line. The list is not in order, and I'd like to sort it January to December using the monthNames. Don't know how.

sort lines of theList by first word in each [need connection to the monthNames here]

    Otherwise, I suppose a simple repeat loop, although clunky,  would do.

You can sort any container by using a custom function you write yourself. This should do it:

on mouseUp
  sort lines of fld 1 numeric by sortmonths(each)
end mouseUp

function sortmonths pMonth
  return lineoffset(pMonth, the monthnames)
end sortmonths


--
Jacqueline Landman Gay         |     [EMAIL PROTECTED]
HyperActive Software           |     http://www.hyperactivesw.com
_______________________________________________
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