View Single Post
Old 04-02-2007, 01:38 AM  
tuff
Senior Member
 
Join Date: Jan 2003
Posts: 277
Default

hi Yil,

test the iputs by reading a .nfo file and outputting

ie.

global path
set nfoFile "$path\\test.nfo"

if {[catch {set handle [open $nfoFile "r"]} message]} {
iputs "Unable to read \"$nfoFile\"."
} else {
while {![eof $handle]} {
gets $handle line
iputs $line
}
close $handle

it seems anything over character 128 isnt displayed correctly, itcl worked fine with 5.8.8
__________________
#iotools #ioftpd (both on efnet)
tuff is offline