Do javascript function in browser widget?

hh hh at hyperhh.de
Tue Nov 6 14:49:59 EST 2018


Most examples of that link assume that you have control of the pages.
And most use the js of the browser widget as "helper" only, the widget doesn't display
anything (is hidden).
Now you wrote that you don't have control.

So your "first experiments" method is one way to go, then you have full control.

My experiences are that there are no general rules how to do that. The best method
depends on the current content with all its variabilities. Andre gave some appropriate
and useful options.
You can also remove all css and js and set the htmltext of the widget to a string
with your own (inline) css and/or (inline) js, with or without any "do in widget".
** Merge() is the tool to use your templates. **

> Keith C. wrote:
> Thanks for the link, Herman - some interesting use cases there …once I’ve got the
> connectivity in place. :-)
> --
> Thanks Andre for the detailed response and HTTPD library steer - that’s new to me so
> I shall review with interest. :-)
> I’m not in control of the pages, so that may be more useful than my first experiments
> - which were to download the page content into LC, add some markup and load the HTML
> text into the browser widget as a local ‘offline’ page.
> 
>> hh wrote:
>> Browser widget usage examples:
>> http://forums.livecode.com/viewtopic.php?f=93&t=29018
>> 
>> Andre G. wrote:
>> Then in the LC part you can do something like:
>>    do "paintItRed()" in widget "Browser"
>> Which is more readable. Also, the body of the function inside the HTML 
>> can be as complex as you want. Now, if you're not in control of the 
>> HTML, I'd opt for some out-of-the-box strategy where you have the LC 
>> HTTPD library serving the JS content and then use the LC "do .. in 
>> widget" form to add a new <script> tag with the "src" attribute pointing 
>> to the HTTPD library server, the script would load and execute in the 
>> context of the loaded page. This should only be done after the page is 
>> loaded though or your script risks executing before the HTML is complete.
>> 
>> Be aware that you can use the "do in widget" form with complex scripts, 
>> but I'd rather use the form above which keeps the JS and LC separate 
>> which is more of a personal preference than a technical reason to be honest.
>> 
>>> Keith C. wrote:
>>> ... Is it possible to inject a multi-line javascript function - with variables
>>> definition, loops, etc - in this fashion or would the function need to be injected
>>> into the page within the browser as markup and then called from a one-line script
>>> from LiveCode?




More information about the use-livecode mailing list