|
[window setLevel:NSScreenSaverWindowLevel];
window.setLevel(NSScreenSaverWindowLevel);
set window level to NSScreenSaverWindowLevel
Obj-C, Java, and Applescript.
I think in any of those languages the best way to make sure it'll get on top instantly is to set the window controller class as the application's delegate in IB and use the applicationWillFinishLaunching notification to call the code above.
|