|
Custom information |
Top Previous Next |
|
You can use the "extra" entry field in the global extension to enter your custom information. However, if you want to add something very complex, there is a global embed that you can use to add your own custom information to WindowID.
Go to "Application", "Global properties", "Embeds", and look for the following embed:
"WindowID: (Global) exiting JALWindowID
Add a "Source" type call in this embed, with the following code:
WindowIDInfo{PROP:Tip} = CLIP(WindowIDInfo{PROP:Tip}) & Sepa & ...
Where ... is your custom information.
"Sepa" is the separator equate (By default, indicates a carriage return and line feed).
For example, if you want to add the current thread information to every window, type this:
WindowIDInfo{PROP:Tip} = CLIP(WindowIDInfo{PROP:Tip}) & Sepa & 'This thread #: ' & THREAD()
You will see then the thread number on the bottom line of the WindowID balloon, and it will be copied to the clipboard if you press the hot key or the WindowID button. |