Anyone have luck 'activating' a given window (move to top with focus)?

Say we want to activate a workspace window in dev image (VW). This does not work?

| window main |
window := Workbook allInstances first.
main := window mainWindow.
main forceActive.

thank you

link|improve this question

75% accept rate
feedback

2 Answers

up vote 3 down vote accepted

You want #raise, not #forceActive.

link|improve this answer
feedback

Note that #raise will do what you expect on Windows, but

-- on OS X the window will come to the top, but not get focus -- on some Linux window managers, #raise will flash the window icon in the taskbar, but that's it.

link|improve this answer
that's not good. Works okay in Windows, but best to also send 'expand' to ensure it's not iconified. window expand; raise. – Gary Nov 13 '10 at 7:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.