I'm making a chat program in director by writing text to files on my server. I need to know how to append things to a txt file. This is the script i'm using:
file("myfile.txt".open(#read:1, #write:1, #create:1)
Or something like that. I want to be able to write multiple lines in a file at seperate times and suck them back in and slap them into a textbox. Is this probable or is there a much simpler way to do a chat prog?
file("myfile.txt".open(#read:1, #write:1, #create:1)
Or something like that. I want to be able to write multiple lines in a file at seperate times and suck them back in and slap them into a textbox. Is this probable or is there a much simpler way to do a chat prog?