I just want to read and write a small amount of text to the user's file.
I have been banging my head for several hours now and it time to ask for help.

Thanks,
David
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
...
put specialfolderpath("documents") & "/name_of_your_file_here" into tFile
put tVariable into url("file:" & tFile)
...
Code: Select all
...
put specialfolderpath("documents") & "/name_of_your_file_here" into tFile
## Dont forget to check this!
if there is a file tFile then
put url("file:" & tFile) into tvariable
end if
...