Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
.t configure -wrap word
proc .t {cmd args} {
switch -exact -- $cmd {
insert -
delete { set ::changed 1 }
}
return [eval _.t $cmd $args]
}
proc TextChanged {var elem op} {
puts "The text has changed!"
set $var 0
}
trace variable ::changed w TextChanged