home *** CD-ROM | disk | FTP | other *** search
- on stringToScore longName
- global scoreData, statusWindow
- set startField to the number of cast "scoreData.1"
- set endField to startField + 39
- set scoreData to []
- repeat with curField = startField to endField
- if the text of field curField = EMPTY then
- exit
- end if
- set tempLst to []
- set tempLst to value(the text of field curField)
- repeat with frm in tempLst
- append(scoreData, frm)
- end repeat
- end repeat
- end
-