Например, SCRIPT открывает и читает текстовый файл:
gpsName = FileDialog.Show("*.txt","TXT File","Открыть текстовый файл")
if (gpsName = nil) then
exit
end
gpsFile = LineFile.Make(gpsName, #FILE_PERM_READ)
while (true)
buf = gpsFile.ReadElt
if (buf = Nil) then
break
end
myAnswer = MsgBox.YesNo( "Продолжить?", buf, TRUE )
if (myAnswer=False) then
break
end
end