Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tkwait(n) [mojave man page]

tkwait(n)						       Tk Built-In Commands							 tkwait(n)

__________________________________________________________________________________________________________________________________________________

NAME
tkwait - Wait for variable to change or window to be destroyed SYNOPSIS
tkwait variable name tkwait visibility name tkwait window name _________________________________________________________________ DESCRIPTION
The tkwait command waits for one of several things to happen, then it returns without taking any other actions. The return value is always an empty string. If the first argument is variable (or any abbreviation of it) then the second argument is the name of a global variable and the command waits for that variable to be modified. If the first argument is visibility (or any abbreviation of it) then the second argument is the name of a window and the tkwait command waits for a change in its visibility state (as indicated by the arrival of a Visi- bilityNotify event). This form is typically used to wait for a newly-created window to appear on the screen before taking some action. If the first argument is window (or any abbreviation of it) then the second argument is the name of a window and the tkwait command waits for that window to be destroyed. This form is typically used to wait for a user to finish interacting with a dialog box before using the result of that interaction. While the tkwait command is waiting it processes events in the normal fashion, so the application will continue to respond to user interac- tions. If an event handler invokes tkwait again, the nested call to tkwait must complete before the outer call can complete. KEYWORDS
variable, visibility, wait, window Tk tkwait(n)

Check Out this Related Man Page

tkwait(n)						       Tk Built-In Commands							 tkwait(n)

__________________________________________________________________________________________________________________________________________________

NAME
tkwait - Wait for variable to change or window to be destroyed SYNOPSIS
tkwait variable name tkwait visibility name tkwait window name _________________________________________________________________ DESCRIPTION
The tkwait command waits for one of several things to happen, then it returns without taking any other actions. The return value is always an empty string. If the first argument is variable (or any abbreviation of it) then the second argument is the name of a global variable and the command waits for that variable to be modified. If the first argument is visibility (or any abbreviation of it) then the second argument is the name of a window and the tkwait command waits for a change in its visibility state (as indicated by the arrival of a Visi- bilityNotify event). This form is typically used to wait for a newly-created window to appear on the screen before taking some action. If the first argument is window (or any abbreviation of it) then the second argument is the name of a window and the tkwait command waits for that window to be destroyed. This form is typically used to wait for a user to finish interacting with a dialog box before using the result of that interaction. While the tkwait command is waiting it processes events in the normal fashion, so the application will continue to respond to user interac- tions. If an event handler invokes tkwait again, the nested call to tkwait must complete before the outer call can complete. KEYWORDS
variable, visibility, wait, window Tk tkwait(n)
Man Page

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to compare a string with IP

Hi, I have a variable with value tmp2=123.45.175.243, I am taking this value from a network file. In the script I need to check whether the variable has only numerals and .(dot). if ..." ] then printf "SUCCESS\n" else printf "FAILED\n" fi doesnt work, is there a alternate... (1 Reply)
Discussion started by: happyrain
1 Replies

2. UNIX for Dummies Questions & Answers

taking a look at the code for some commands

just curious -- I was wondering if it's possible to open the file for a command and look at the code (say for the command more). I've just read about the PATH variable and the type command to find out where the file is, but when I tried to open the file, the terminal exited and logged me out. ... (3 Replies)
Discussion started by: Straitsfan
3 Replies

3. UNIX for Dummies Questions & Answers

How do you wait for command substitution processes to complete?

When running a command using the >(cmd) syntax in bash how do you wait for the command to complete before moving on in your script? Here is a simple example: zcat largefile.gz | tee >(wc && echo “HELLO”) > /dev/null # I tried wait, here but it doesn't wait for the process in the subshell.... (8 Replies)
Discussion started by: mrvwman
8 Replies

4. Shell Programming and Scripting

abbreviation vi

hi all, i want to write a script using vi editor ...the problem is given below... Set the abbreviation for “Infosys Technologies Limited” as ITL and list it. Type ITL in the insert mode and check whether the ITL is getting substituted by “Infosys Technologies Limited” ... (3 Replies)
Discussion started by: sonu_pal
3 Replies

5. UNIX for Dummies Questions & Answers

Defining variable problem

Hi I'd say I'm having this weird problem where my script isn't taking the value off a variable or printing it. My code is like this: set count_C= `grep -c C mols` set count_H= `grep -c H mols` set count_O= `grep -c O mols` sed -i '7,7 s/$/ $count_C $count_O $count_H/g' input It... (8 Replies)
Discussion started by: saleheen
8 Replies