--- In [email protected], "david.sotropa" <david.sotr...@...> wrote: > > > Thanks Bruce. Sincerely appreciated. I'll take a stab at it and see if I > can get it all working.
If you get stuck, post what you have and I can try to provide some input, as needed. > > > > Any help is appreciated - including a completely different strategy > Another approach would be to use a hot key which looked at the window under the mouse; hot key calls script which is something like (not tested) local hUnder = handlefrompoint(xmouse, ymouse) for (;;) local cap = win.caption(hUnder) if (cap!="") break hUnder=win.parent(hUnder) // see if parent window has caption if (hUnder==0) quit // should never happen, but avoid infinite loop just in case endfor if slice(cap, -6) == "(HTML)") // stuff for html else if (etc...
