Re: [python-win32] How do I get the URL of the active tab in Internet Explorer

2010-11-30 Thread He Jibo
Thanks. Following your link, I get the following code in C#, The following function GetActiveTabIndex seems to what I need. But I do not know how to do it in python. Any ideas? Thanks. http://social.msdn.microsoft.com/Forums/en-US/ieextensiondevelopment/thread/03a8c835-e9e4-405b-8345-6c3d36bc8941

Re: [python-win32] How do I get the URL of the active tab in Internet Explorer

2010-11-30 Thread sharpblade
This might be of some help: http://social.msdn.microsoft.com/forums/en-US/ieextensiondevelopment/thread/e3a501d6-2163-4cc0-be2d-5011e7fa9613/ Check out Dan Morris's post, or T E dixons

Re: [python-win32] How do I get the URL of the active tab in Internet Explorer

2010-11-30 Thread He Jibo
Thanks so much for your valuable information. I will only need the url of a browser when it is in the front. I am going to try SendKey, it seems to be a good way to go. Have a nice day! --- He Jibo Department of Psychology, Beckman Institute for Advanced Science and Technol

Re: [python-win32] How do I get the URL of the active tab in Internet Explorer

2010-11-30 Thread Mike Driscoll
On 1:59 PM, He Jibo wrote: Hi, I am writing a small program, which needs to get the URL of the active tab in either of firefox, internet exploerer or chrome. My need is similar as the one posted at, http://stackoverflow.com/questions/3631216/how-do-i-get-the-url-of-the-visible-tab-in-firefox-ie-c

[python-win32] How do I get the URL of the active tab in Internet Explorer

2010-11-29 Thread He Jibo
Hi, I am writing a small program, which needs to get the URL of the active tab in either of firefox, internet exploerer or chrome. My need is similar as the one posted at, http://stackoverflow.com/questions/3631216/how-do-i-get-the-url-of-the-visible-tab-in-firefox- ie-chrome I did a lot of Googli