--- In [email protected], "sternenfanger77" <[EMAIL PROTECTED]> wrote: > > Can it be that PowerPro ignores ConsoleWindows? > I'd like to make PP set a console window topmost whenever one opens > but PP doesnt get a notification when a console window opens. > Or do I missed something?
I don't think it is PowerPro ignoring them so much as Windows versions since NT treating them differently. This was kind of informative: <http://isuraj.com/2008/02/04/the-terminal-condition-of-windows-console-part-1/> It wouldn't address all situations but you could do something like add commands to the launching of a console windows code to wait for a console window to be active and then make it topmost. wait.for(500,activewindow("c=ConsoleWindowClass")) win.ontop("active", 1) This works when a console window is already running: win.ontop(window("firstwindow","c=ConsoleWindowClass",1) Vista, I think, is even more restrictive. Above may or may not work on Vista. Regards, Sheri
