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.
proc maxChars {max val} {
if {[string length $val] > $max} {
return 0
} else {
return 1
}
}
entry .e -width 4 -validate all -validatecommand {maxChars 4 %P}
pack .e