Re: Get URL from active browser.
I have some ideas on how you would do it from native code (involves finding out the window class or something else unique about the address bar in each browser, and then finding a subwindow matching that in the topmost window, then getting the text from it) but I don't think MMF has features that low-level.
The other possibility is that it is something the browsers already records into the clipboard, and you just need to find the right clipboard "channel" to get at it.
EDIT: This will be how that other application hooks into the clipboard. I didn't know you could get Windows to tell you about changes to the clipboard :)
Re: Get URL from active browser.
Thank you very much Dynasoft. :)
I will have to see if I can figure it out.
Are the files in the zip C++ ? if so could one then make an extension for it..?
Thanks again...
Re: Get URL from active browser.
It relies on window messages, don't know if extensions can handle those or not.
I don't know if it would help your URL issue though.
Re: Get URL from active browser.
Kernel object handles window messages. :)
Re: Get URL from active browser.
I thought that maybe there was some way to use the window message in the kernel object but, alas, I have no clue how that works...
Any help would be appreciated.