Server IP : 111.118.215.189 / Your IP : 18.227.49.56 Web Server : Apache System : Linux md-in-83.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : a1673wkz ( 2475) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /usr/share/tk8.5/demos/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
# dialog2.tcl -- # # This demonstration script creates a dialog box with a global grab. after idle { .dialog2.msg configure -wraplength 4i } after 100 { grab -global .dialog2 } set i [tk_dialog .dialog2 "Dialog with global grab" {This dialog box uses a global grab, so it prevents you from interacting with anything on your display until you invoke one of the buttons below. Global grabs are almost always a bad idea; don't use them unless you're truly desperate.} warning 0 OK Cancel {Show Code}] switch $i { 0 {puts "You pressed OK"} 1 {puts "You pressed Cancel"} 2 {showCode .dialog2} }