Rejectedz Posted December 30, 2007 Posted December 30, 2007 Hai aging, This time i need help i finished the Ghost Mouse ( not ready for public yet ) I need help though, how would i have it make a new file to save all the record clippings?
Rejectedz Posted December 30, 2007 Author Posted December 30, 2007 Something to make the file the first time (ONLY!) Then to start savin all the clippings Anyone have any ideas?
Rejectedz Posted December 30, 2007 Author Posted December 30, 2007 filewrite? sorry im new at this xD
DirtDBaK Posted January 2, 2008 Posted January 2, 2008 (edited) #include <file.au3> $data = '' ;Data that you want to write to the file $file = 'C:\file.txt' ;file to save data too $fhand = FileOpen($file_name,10) ;Mode 10 for create and overwrite without append FileWrite($fhand,$data) ;used to write the data to the file handle FileClose($fhnad) ;closes the file handle Noobs that can't read the help file are annoying... Use the helpfile so we don't have reasons to rag on you... and to think that was all of the top of my head, but see the helpfile taught me this... Edited January 2, 2008 by DBak [center][/center]
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now