[Tutor] Tracking URL in browser location bar

2005-04-23 Thread Gautam Saha
Hi: A newbie here..I was wondering if python can help me to track the URL in browser (IE6+, FF, Mozilla) location bar. What I want is to get each URL from the the browser location bar, as user clicks from links to link in the web (or types an URL) and store it in a flat file and flag some how t

Re: [Tutor] Tracking URL in browser location bar

2005-04-22 Thread Danny Yoo
On Fri, 22 Apr 2005, Gautam Saha wrote: > A newbie here..I was wondering if python can help me to track the URL in > browser (IE6+, FF, Mozilla) location bar. > > What I want is to get each URL from the the browser location bar, as > user clicks from links to link in the web (or types an URL) an

Re: [Tutor] Tracking URL in browser location bar

2005-04-22 Thread Kent Johnson
Gautam Saha wrote: Hi: A newbie here..I was wondering if python can help me to track the URL in browser (IE6+, FF, Mozilla) location bar. You might find some hints here: http://wwwsearch.sourceforge.net/bits/GeneralFAQ.html Kent ___ Tutor maillist - Tut

Re: [Tutor] Tracking URL in browser location bar

2005-04-22 Thread Marcus Goldfish
> > A newbie here..I was wondering if python can help me to track the URL in > > browser (IE6+, FF, Mozilla) location bar. I think browser helper objects may also be useful. ASPN has a thread at: http://aspn.activestate.com/ASPN/Mail/Message/ctypes-users/2263094 Marcus __