home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Invenzioni E Inventori 1: Lavoro E Vita Quotidiana
/
invenzioni-inventori-1.iso
/
mac
/
Invenzio
/
Indart.cst
/
00053_Script_53
< prev
next >
Wrap
Text File
|
1997-10-14
|
551b
|
24 lines
on scrivi_articoli
repeat with a = 5 to 203
put the name of member a&","&a into line a-4 of field "totale"
end repeat
ordina_totale
end
on ordina_totale
set lista to list ()
repeat with a = 1 to the number of lines in field "totale"
add lista,line a of field "totale"
if line a of field "totale" > line a+1 of field "totale" then
end if
end repeat
sort lista
repeat with a = 1 to the number of lines in field "totale"
put getat (lista,a) into line a of field "totale"
end repeat
end