| Did you know ... | Search Documentation: |
| window->above |
|tileDepending on whether or not the argument is a window or a tile, the behaviour of this method is rather different. Using window argument is intended for initial creation of windows, while using a tile argument is intended for adding windows to an already open frame object:
vertical stack, place
the new window at the top of the stack. If the window is part of a horizontal
stack, create a vertical stack holding the receiver and stack of the
argument window. If the window is not part of a stack, create a vertical
stack holding both windows.To align a window nicely above another window, use:
send(NewWindow, above, Old?tile).
To align a window above two horizontally aligned windows, use:
send(NewWindow, above, Old?tile?super).
If the receiver window is not already part of the same frame as the argument window it will be made part of this frame. Thus method may be used after one or both windows have been created.
The techniques chapter in the Users's Guide contains a
section on generation window layout in a frame.
->append -frame ->right ->left ->below