Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tkinspect(1) [debian man page]

tkinspect(1)							     Tkinspect							      tkinspect(1)

__________________________________________________________________________________________________________________________________________________

NAME
tkinspect - Tk application inspector SYNOPSIS
tkinspect _________________________________________________________________ DESCRIPTION
tkinspect is an inspector for Tk applications. It uses Tk's send command to retreive infomation from other Tk applications. tkinspect When you choose an application through the File/Select Interpreter menu, lists will be filled with the names of the procs, globals, and windows the the application. Clicking on one of those names will fill the value window with the definition of the proc, the value of the global variable, or various information about the window. The value window is editable and its contents can be sent back to the selected application. Tcl commands can be sent to the seleted application using the Command: entry, or through a command line (via the File/New Command Line menu) interface to the application. The command line is nearly identical to Tk's demo rmt. For further information, select a topic from the help window's Topics menu. SEE ALSO
/usr/share/doc/tk8.5/examples/rmt, send(3tk) KEYWORDS
Tcl, Tk tkinspect 5.1.6p10 tkinspect(1)

Check Out this Related Man Page

Tk_SetAppName(3)					       Tk Library Procedures						  Tk_SetAppName(3)

__________________________________________________________________________________________________________________________________________________

NAME
Tk_SetAppName - Set the name of an application for 'send' commands SYNOPSIS
#include <tk.h> const char * Tk_SetAppName(tkwin, name) ARGUMENTS
Tk_Window tkwin (in) Token for window in application. Used only to select a particular application. const char *name (in) Name under which to register the application. _________________________________________________________________ DESCRIPTION
Tk_SetAppName associates a name with a given application and records that association on the display containing with the application's main window. After this procedure has been invoked, other applications on the display will be able to use the send command to invoke operations in the application. If name is already in use by some other application on the display, then a new name will be generated by appending " #2" to name; if this name is also in use, the number will be incremented until an unused name is found. The return value from the proce- dure is a pointer to the name actually used. If the application already has a name when Tk_SetAppName is called, then the new name replaces the old name. Tk_SetAppName also adds a send command to the application's interpreter, which can be used to send commands from this application to others on any of the displays where the application has windows. The application's name registration persists until the interpreter is deleted or the send command is deleted from interp, at which point the name is automatically unregistered and the application becomes inaccessible via send. The application can be made accessible again by calling Tk_SetAppName. Tk_SetAppName is called automatically by Tk_Init, so applications do not normally need to call it explicitly. The command tk appname provides Tcl-level access to the functionality of Tk_SetAppName. KEYWORDS
application, name, register, send command Tk 4.0 Tk_SetAppName(3)
Man Page

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

command line applications

hi i'm just writing some simple applications in bash to make uni life a bit easier ;) but occationally while i'm in my application, someone might send me a pesky message or something and it breaks my command string into two parts or whatever. is there a command or code to open a terminal with... (2 Replies)
Discussion started by: yngwie
2 Replies

2. UNIX for Advanced & Expert Users

Unix Command

Hi, What is the equivalent of rmxcred (AIX) command for windows? Regards, asabzevari (1 Reply)
Discussion started by: asabzevari
1 Replies

3. AIX

Help with back ground scripts...

I have a user that runs a menu driven application, is there a way to see what scripts this application is executing in the back ground? OS=AIX 4.3 (1 Reply)
Discussion started by: mangolinux
1 Replies

4. UNIX and Linux Applications

The ps command - process showing up even after application is shut down

Hi all, I'm very new to unix, I'm developing an application in Java, part of which requires me to check if a certain application is still running. In windows, I just use tasklist - if the application has been shut down it won't appear in the task list. I've been trying to use the ps command to... (0 Replies)
Discussion started by: ekatmcg
0 Replies

5. UNIX for Dummies Questions & Answers

How do you use UNIX commands in the Windows Command Line?

I tried opening the windows command line and typing UNIX commands, but they don't work. It kept saying that it was not recognized as an internal or external command, operable program or batch file. Removed strange sentence with even stranger link I need to use UNIX commands such as 'less',... (9 Replies)
Discussion started by: vlay2
9 Replies

6. UNIX for Advanced & Expert Users

Command to output ones (like zero-fill), with progress indicator

Well, I was originally going to post this snippet in the original thread titled "how to output ones endlessly like /dev/zero", but that topic was closed without an efficient answer. It was difficult to find (build) a satisfactory answer to this one, so I thought I'd share it here and as a "fill... (1 Reply)
Discussion started by: Gliktch
1 Replies

7. Shell Programming and Scripting

Reading of variable in a single line command

Hi All, Below is a sample command that I can run without any problem in the command line. Command Line dtToday=`date +%Y%m%d`; ls -ltr ./filename_${dtToday}.txt -rw-r--r-- 1 monuser oinstall 0 Jan 18 11:02 ./filename_20130118.txt But once I put that command line in file (list.txt) and... (3 Replies)
Discussion started by: padi
3 Replies

8. UNIX for Dummies Questions & Answers

Row number

Dear All, I am new to UNIX . Please tell me how to retreive row number from the file. In AS/400 we can retreive RRN(Relative record number ) from the file, In same way what is the option to take relative record number from the file in UNIX. It may be very easy query, but still I need ur... (9 Replies)
Discussion started by: coolmaninit
9 Replies

9. UNIX for Beginners Questions & Answers

Select command

Hi I'm using the "select" command in the global_env.sh to log in to the application directory. This file is called in .bashrc profile. Sample code: Filename: global_env.sh set -o vi export severname=$(uname -n) printf '%s\n%30s\n%s\n' "***********************" "Welcome to $severname"... (6 Replies)
Discussion started by: cheers799
6 Replies