home *** CD-ROM | disk | FTP | other *** search
- /* Sort.rexx */
-
- options results; address MrMIDI
-
- MUIA_List_Active = 0x8042391c; MUIA_List_Entries = 0x80421654
- MUIM_List_Sort = 0x80422275
-
- list ID SLIST ATTRS MUIA_List_Entries; max = result
- list ID SLIST ATTRS MUIA_List_Active
- list ID SLIST POS result; current = result
- if current ~= 'RESULT' then do
- method ID SLIST MUIM_List_Sort
- do i = 0 to max - 1
- list ID SLIST POS i
- if result = current then do
- list ID SLIST ATTRS MUIA_List_Active i
- leave
- end
- end
- end
- return
-