Can anyone think of a solution or work around for this?
//
w = Window.new(“GUI w”, Rect(200,200,255,100));
w.front;
y = Window.new(“GUI y”, Rect(400,400,255,100));
y.front;
// only y comes into focus with the following
w.front;
y.front;
w.front;
//
I am on various macs and a few versions of SC so I think its a Mac specific GUI issue.
I want to use keystrokes or a midi controller to bring different windows into focus.
The only work around I have come up with so far is to us ( cmd ` ) to cycle through the Quartz windows. This is ok but I would rather be able to specify which window I bring into focus than just cycle through them.