home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 February
/
CHIP_2_98.iso
/
software
/
testsoft
/
muzea
/
exemusei
/
shared.cst
/
00929_Script_ScriveTXT
< prev
next >
Wrap
Text File
|
1987-04-12
|
613b
|
20 lines
on ScriviTesto
put the pathName & "Testi:" & the movieName into Nome
put chars(Nome, 1, (length(Nome)-4)) into Nome
put Nome & ".txt" into Nome
put FileIO (mNew, "write", Nome) into Nome
repeat with c = 1 to 980
if the castType of cast c = #text then
put "ò" & string(c) & RETURN into NuCa
Nome(mWriteString,string(NuCa))
put the text of cast c into testo
set testo = testo & RETURN & "òò" & RETURN
Nome(mWriteString,string(testo))
end if
end repeat
set testo = "òòò" & RETURN
Nome(mWriteString,string(testo))
beep 3
Nome(mDispose)
end