Phaethon Posted September 9, 2007 Posted September 9, 2007 how i can write line of text to a file Well, if you just want to make a new .txt file on your desktop, you could do it like this: $file = FileOpen(@DesktopDir & "\AnyFileNameHere.txt", 1) FileWrite($file, "Line1" & @CRLF) FileWrite($file, "line2") FileClose($file) That will make a text document, and put whatever text you want into it. The text document can already exist, and if it doesn't, it will simply be created for you. Coder's Helper >> Here[center][/center]
west Posted September 9, 2007 Author Posted September 9, 2007 mmm it dosent write the iso font only good for english i am seeking to write asian languages text in there
The Kandie Man Posted September 9, 2007 Posted September 9, 2007 (edited) Please read the help file. Particularly the second parameter of FileOpen() which specifies the file encoding type. $h_File = FileOpen(@DesktopDir & "\AFile.txt",128 + 1);open file for encoding as UTF8 FileWrite($h_File,"汉语/漢語"&@CRLF) FileClose($h_File) Make sure you save the script as UTF8 and not ANSI. - The Kandie Man ;-) Edited September 9, 2007 by The Kandie Man "So man has sown the wind and reaped the world. Perhaps in the next few hours there will no remembrance of the past and no hope for the future that might have been." & _"All the works of man will be consumed in the great fire after which he was created." & _"And if there is a future for man, insensitive as he is, proud and defiant in his pursuit of power, let him resolve to live it lovingly, for he knows well how to do so." & _"Then he may say once more, 'Truly the light is sweet, and what a pleasant thing it is for the eyes to see the sun.'" - The Day the Earth Caught Fire
west Posted September 9, 2007 Author Posted September 9, 2007 Please read the help file. Particularly the second parameter of FileOpen() which specifies the file encoding type. $h_File = FileOpen(@DesktopDir & "\AFile.txt",128 + 1);open file for encoding as UTF8 FileWrite($h_File,"汉语/漢語"&@CRLF) FileClose($h_File) Make sure you save the script as UTF8 and not ANSI. - The Kandie Man ;-)yes work fine now thanks
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