Posted: Thu Jun 19, 2003 11:48 am Post subject: (No subject)
if you check out the tutorials section there should be some good tuts on how to do it... but you need to make a "stream" to the file, and set it to "put" because you are writing to it. if you want to read you would have used "get"
code:
var streamout:int
open:streamout,"file",put
then you use
code:
put:streamout,"data here"
you may need to loop it if you are going to be writing a lot of stuff, like an entire array to a datafile.