Guest_imported
New member
- Jan 1, 1970
- 0
When I use tcl/tk canvas, I hope I could draw some object with transparent color. Can tcl/tk'canvas realize this function? And if it can, how realize it ?
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.
canvas .c
pack .c
.c create rect 20 20 50 50 -fill "" -width 0 -tag active
.c bind active <ButtonPress-1> {
puts "You clicked me!"
}