tags:

views:

44

answers:

1

Hi,

I would like to execute WScript.Shell command using Run and set it to be always on top. As far I figured out how to make Popup always on top.

import win32api, win32com.client

shell = win32com.client.Dispatch('WScript.Shell')
shell.Popup('Message', 0, 'Title', 4096)
win32api.Sleep(100)

Is there a way to do the same thing with Run command? I found some attributes on MS site http://msdn.microsoft.com/en-us/library/d5fk67ky(VS.85).aspx but none of them is giving me this option.

A: 

This can not be done this way. I installed little utility and obtained always on top functionality.

Mitja Felicijan