2008/12/21 <[email protected]>: > The code below opens the Choose Font dialog on my Spanish Windows version: > > py> from pywinauto.application import Application > py> app = Application.start("Notepad.exe")
Notepad's menus are build with MFC. Word's menus are not. Trust me, give it up. For automating Word, COM (with Mark Hammond's excellent Python/COM bridge) is the only way to go. -- Cheers, Simon B. [email protected] -- http://mail.python.org/mailman/listinfo/python-list
