qwertylol Posted July 13, 2007 Posted July 13, 2007 I need to create a file and then do file write like this create a file(aaa.txt) $array = winlist("title") $counter = 0 Do $counter = $counter + 1 filewriteline ( "sada, bada") Until $counter = $array[0][0]
mikehunt114 Posted July 13, 2007 Posted July 13, 2007 Please look in the helpfile. $file = FileOpen("aaa".txt) $array = WinList() $counter = 0 Do FileWriteLine($file, "sada, bada") $counter = $counter + 1 Until $counter = $array[0][0] IE Dev ToolbarMSDN: InternetExplorer ObjectMSDN: HTML/DHTML Reference Guide[quote]It is surprising what a man can do when he has to, and how little most men will do when they don't have to. - Walter Linn[/quote]--------------------[font="Franklin Gothic Medium"]Post a reproducer with less than 100 lines of code.[/font]
Developers Jos Posted July 13, 2007 Developers Posted July 13, 2007 $file = FileOpen("aaa.txt") SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
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