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.
menu .m -tearoff 0
.m add command -label cut -command mycut
.m add command -label copy -command mycopy
.m add command -label paste -command mypaste
bind . <3> { mypopup %x %y }
proc mypopup {x y} {
incr x [winfo rootx .]
incr y [winfo rooty .]
tk_popup .m $x $y
}
proc mycut {} { tk_messageBox -message mycut }
proc mycopy {} { tk_messageBox -message mycopy }
proc mypaste {} { tk_messageBox -message mypaste }
bind . <ButtonPress-3> { tk_popup .m %X %Y }