Jat421 0 Posted May 20, 2010 (edited) Hi, I am new to autoit script. Who to use FilePosition Thanks!! Edited May 21, 2010 by Jat421 Share this post Link to post Share on other sites
JohnOne 1,603 Posted May 21, 2010 In order to get som proper help with your needs, you will need to post an example of the file, and its line deliminators. Stringsplit, and its resulting arrays will most likely need to be utilized or maybe some other fancy _file function such as _FileReadToArray or something. Try to get your code in order to the nearest working you got. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites
enaiman 16 Posted May 21, 2010 _FileReadToArray _ArrayDelete element 0 and element 1 _FileWriteFromArray SNMP_UDF ... for SNMPv1 and v2c so far, GetBulk and a new example scriptwannabe "Unbeatable" Tic-Tac-ToePaper-Scissor-Rock ... try to beat it anyway :) Share this post Link to post Share on other sites
JohnOne 1,603 Posted May 21, 2010 untested #include <File.au3> $File = @ScriptDir & "\File.txt" Do ConsoleWrite(FileReadLine($File,1) & @CRLF) $n = _FileWriteToLine($File,1,"",1) Until $n = 0 MsgBox(0,"","Complete") AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites
JohnOne 1,603 Posted May 21, 2010 Glad I could help. Good luck with your project. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites