Open the examples table and the sub-table funStuff. Place the funStuff window atop the examples window and then type and execute:
window.bringToFront (@examples) // address is coerced to full Object Database path
» true
In the following example, we use a string for the title. Type and execute:
window.bringToFront ("examples.funStuff")
» true
Close the funStuff window. Type and execute:
window.bringToFront (@examples.funStuff)
» false
The window is not open, so this verb cannot bring it to the front.
Be sure that the examples and examples.funStuff windows are closed. Now type and execute:
window.open (@examples.funStuff);
window.open (@examples);
window.bringToFront (@examples.funStuff)
» true