Re: Browser Widget Issues

2022-03-11 Thread Tom Glod via use-livecode
Hi Rick, document.getElementById("Butto Name").click(); that should work ...but yes this solution assumes you know the name of the button. I can't say for sure but I think its that LC is looking for "what livecode control" is under this clickloc . and then sends a message to that control

Re: Browser Widget Issues

2022-03-11 Thread Bob Sneidar via use-livecode
Still cannot understand why it is that my Apple Mail program seems to think a completely different mail thread is the same thread as the one I was using. If however people are clicking on one thread, replying and changing the subject, in theory that is, well then that is just bad list etiquette.

Re: Browser Widget Issues

2022-03-11 Thread Rick Harrison via use-livecode
Hi Tom, Do you have a more specific Javascript/LC example? I’m not a big fan of Javascript and only use it very sparingly. I would also have to first scan the HTML to find the name of the button I want it to activate wouldn’t I? If I have to go into that fine detail I would be better off scann

Re: Browser Widget Issues

2022-03-11 Thread Tom Glod via use-livecode
You just need to pass some javascript to the browser to trigger the button you want. do this_js in widget "myBrowser" and this_js should have the javascript to click the button. Imagine the possibilities :) On Fri, Mar 11, 2022 at 3:31 PM Rick Harrison via use-livecode < use-livecode@lists.run

Re: Browser Widget Issues

2022-03-11 Thread Rick Harrison via use-livecode
Simple mouseClick at location. > On Mar 11, 2022, at 1:51 PM, Klaus major-k via use-livecode > wrote: > > what did you try so far? ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage

Re: Browser Widget Issues

2022-03-11 Thread Klaus major-k via use-livecode
Hi Rick, sorry, looks like I completely misunderstood your question... > Am 11.03.2022 um 19:51 schrieb Klaus major-k via use-livecode > : > > Hi Rick, > >> Am 11.03.2022 um 19:25 schrieb Rick Harrison via use-livecode >> : >> >> I was hoping to be able to programmatically >> tell the browse

Re: Browser Widget Issues

2022-03-11 Thread Klaus major-k via use-livecode
Hi Rick, > Am 11.03.2022 um 19:25 schrieb Rick Harrison via use-livecode > : > > I was hoping to be able to programmatically > tell the browser widget where to go to next > by having LC click on an image or button > within the browser window. > > So far I have had no success with that. > Is

Browser Widget Issues

2022-03-11 Thread Rick Harrison via use-livecode
I was hoping to be able to programmatically tell the browser widget where to go to next by having LC click on an image or button within the browser window. So far I have had no success with that. Is there a bug in LC preventing me from doing this seemingly simple task? Is there a work around?