Boston Linux & Unix (BLU) Home | Calendar | Mail Lists | List Archives | Desktop SIG | Hardware Hacking SIG
Wiki | Flickr | PicasaWeb | Video | Maps & Directions | Installfests | Keysignings
Linux Cafe | Meeting Notes | Blog | Linux Links | Bling | About BLU

BLU Discuss list archive


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Text dump



| Anyone knows a simple way to dump the contents of a TclTK text widget to
| the screen or to a file?  I'am trying to construct a Notepad Like Editor
| with just
| View, Edit and Save option.

Here's a bit of code from one of my scripts.  It copies the  contents
of  the  text  widget  .abc.txt to the file $filename, with the usual
error message if the file can't be written for some reason:

    if [catch {open $filename w} f] {
        puts "$me: $filename $f"
        return
    }
    set l 1
    set e [.abc.txt index end]
    while {$l < $e} {
        set line [.abc.txt get $l.0 $l.end]
        puts $f $line
        incr l
    }
    close $f





BLU is a member of BostonUserGroups
BLU is a member of BostonUserGroups
We also thank MIT for the use of their facilities.

Valid HTML 4.01! Valid CSS!



Boston Linux & Unix / webmaster@blu.org