Generic function
Raises the specified frame to the top of the stack of visible windows.
raise-frame frame => ()
<frame>.
None
duim-frames
duim-frames
Raises frame to the top of the stack of visible windows. After calling this function, frame will appear above any occluding windows that may be on the screen.
The following example creates and displays a simple frame, then lowers and raises it. You should run this code in the interactor, pressing the RETURN key at the points indicated.
define variable *frame* =
make(<simple-frame>, title: "A frame",
layout: make(<button>));RETURNstart-frame(*frame*);RETURN lower-frame(*frame*);RETURN raise-frame(*frame*);RETURN