Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i launched the application using the following code i.e.

import os

cmd = r'start C:\WindowsMediaPlayer\wmplayer.exe'

os.system(cmd)

say i launched win media player.. now i want to control the buttons/the menus to open a file . or do some audio settings.. any thing that is related to media player using the python script.. please any on can help me with this....

share|improve this question

1 Answer

Maybe you should use a framework such as pywinauto Using this, you can launch windows applications and control them.

Check this out

share|improve this answer
is there any other way without pywinauto..i.e. only using python/ active python – vj85 Jan 25 '11 at 8:24
without using frameworks, you will have to put in lot of effort. Is there any specific reason for not using pywinauto? – aNish Jan 25 '11 at 8:29
noting that sort off.. i want to know python a little more in detail.. n i work in a secure environment... – vj85 Jan 25 '11 at 8:34
how can i proceed now...as recently started working on python..only a week...can u help me with this... – vj85 Jan 25 '11 at 8:36
using pywinauto, you again work with python except that you might not be working closely with the OS. – aNish Jan 25 '11 at 8:39
show 9 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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