Re: [python-win32] IE HTML DOM events
Roger Upole Your advice is very useful, now these codes work as good as I expect it to be. Thanks a lot. Richard ___ Python-win32 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-win32
[python-win32] Re: IE HTML DOM events
At a guess, there's some kind of oddity with the type information. If you use a dynamic dispatch for the body, it seems to work in the -1 example. Changing the last 2 lines of the Ononclick event code to body=win32com.client.dynamic.Dispatch(doc.body) print 'body text' , body.cre
