Re: Browser widget in Windows has trouble playing videos in websites

2024-01-31 Thread Peter Bogdanoff via use-livecode
Tom, I’m finding the issue is more complex, and I’m still trying to get to the bottom of it. Daily Motion, Vimeo, and YouTube pages all work on the Mac LC browser plugin. Daily Motion, Vimeo, and some YouTube pages don’t in Windows. However, most of the gazillion YouTube videos work very well,

Re: Browser widget in Windows has trouble playing videos in websites

2024-01-30 Thread Tom Glod via use-livecode
Hey Peter, this surely has to do with videos that are compressed using h264. that build of CEF does not support this codec. I am not sure if the updated browser in the upcoming windows version will support h264. I am surprised to find out that the apple version of the browser has support for h264,

Re: Browser widget: "Navigation request cancelled"

2023-08-15 Thread Mark Waddingham via use-livecode
On 2023-08-15 12:08, Ben Rubinstein via use-livecode wrote: Is it possible to get any more detail about what's going on? I'm guessing you are using 10-dp-5 :) The issues here are regressions caused by the switch to WKWebView in 10 (previously we used the older WebView system web browser API):

Re: Browser Widget navigation and urls

2023-02-06 Thread David Bovill via use-livecode
Thanks Ben, will try experiment with window.location method... On Mon, 6 Feb 2023, 12:26 Ben Rubinstein via use-livecode, < use-livecode@lists.runrev.com> wrote: > The website might be actually a JavaScript 'app' that's displaying > different > information rather than navigating to different page

Re: Browser Widget navigation and urls

2023-02-06 Thread Ben Rubinstein via use-livecode
The website might be actually a JavaScript 'app' that's displaying different information rather than navigating to different pages, which is now a very popular web dev technique. A responsible implementation of this approach includes a non-JS fallback, for accessibility purposes; and makes the

Re: Browser widget doesn't display PDF

2022-11-29 Thread matthias rebbe via use-livecode
Hello Panos, thanks for reminding me of bug 22534. I should have remember it. That bug report is based on a support request i filed. ;) > Am 29.11.2022 um 18:38 schrieb panagiotis m via use-livecode > : > > Hello Matthias, > > See: > > https://quality.livecode.com/show_bug.cgi?id=18378 Th

Re: Browser widget doesn't display PDF

2022-11-29 Thread panagiotis m via use-livecode
Hello Matthias, See: https://quality.livecode.com/show_bug.cgi?id=18378 https://quality.livecode.com/show_bug.cgi?id=22534 I suggest using a PDF widget instead of a browser widget to display the pdf files, until this bug is fixed. Kind regards, Panos -- On Tue, 29 Nov 2022 at 18:59, matthias r

Re: Browser Widget and Images

2022-03-14 Thread Rick Harrison via use-livecode
Thanks! I had forgotten about "import as control" and about set the imagedata of image “my image”. set the imagedata doesn’t fit to the image’s object size though. I would probably have to resize the image beforehand. I also came across: put URL "binfile:///ExportedImageFile.png" into image “m

Re: Browser Widget and Images

2022-03-14 Thread Klaus major-k via use-livecode
Hi Rick, > Am 14.03.2022 um 04:53 schrieb Jim Lambert via use-livecode > : > >> So accessing the URL of the image directly in the image object >> puts the image there, which is a good first step. >> >> How is it stored however? >> >> If one looks at the image source it still shows the URL.

Re: Browser Widget and Images

2022-03-13 Thread Jim Lambert via use-livecode
> > So accessing the URL of the image directly in the image object > puts the image there, which is a good first step. > > How is it stored however? > > If one looks at the image source it still shows the URL. > > I find I?m unable to paint on top of the image, probably > because that would

Re: Browser Widget and Images

2022-03-13 Thread Peter Bogdanoff via use-livecode
Rick, you want to look at the export snapshot or the export image commands for that. pb > On Mar 13, 2022, at 1:56 PM, Rick Harrison via use-livecode > wrote: > > Hi Klaus, > > Thanks for answering. > > So accessing the URL of the image directly in the image object > puts the image there, w

Re: Browser Widget and Images

2022-03-13 Thread Rick Harrison via use-livecode
Hi Klaus, Thanks for answering. So accessing the URL of the image directly in the image object puts the image there, which is a good first step. How is it stored however? If one looks at the image source it still shows the URL. I find I’m unable to paint on top of the image, probably beca

Re: Browser Widget and Images

2022-03-13 Thread Klaus major-k via use-livecode
Hi Rick, > Am 13.03.2022 um 19:34 schrieb Rick Harrison via use-livecode > : > > I have a large free public domain image displaying nicely in my LC Browser > Widget. > I want to bring the image directly into a LiveCode image object to be able to > play around with it. > What’s the best way to

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

Re: Browser widget - follow redirects setting?

2022-01-27 Thread Keith Clarke via use-livecode
Hi Matthias, Thanks for your response and experiment. Unfortunately, I get the same experience with 'launch URL in...' and 'set the URL of…’ widget “Browser” I think it might be my URL. I’m trying to access the Salesforce OAuth 2.0 User Agent flow via the browser, as I can’t get the OAuth libra

Re: Browser widget - follow redirects setting?

2022-01-26 Thread matthias rebbe via use-livecode
Keith, what happens, if you set the URL of the browser widget to tURL? I tried here both "set the url..." and also "launch URL ... in widget.." with an online Shop. I tried to launch the account page. In both cases i was redirected to the login page. The only thing i noticed is, that the URL of

Re: Browser Widget Issue

2021-05-29 Thread Tom Glod via use-livecode
following On Wed, May 26, 2021 at 6:30 AM David Bovill via use-livecode < use-livecode@lists.runrev.com> wrote: > Thanks Keith - the issue is with the HTML5 that uses modern webrtc > standards for video - either the javascript is excluding the type of > embedded framework Livecode is no using on

Re: Browser Widget Issue

2021-05-26 Thread Andrew at MidWest Coast Media via use-livecode
Andrew Bell > > Date: Wed, 26 May 2021 11:29:04 +0100 > From: David Bovill > Subject: Re: Browser Widget Issue > > Thanks Keith - the issue is with the HTML5 that uses modern webrtc standards > for video - either the javascript is excluding the type of embedded framework

Re: Browser Widget Issue

2021-05-26 Thread David Bovill via use-livecode
Thanks Keith - the issue is with the HTML5 that uses modern webrtc standards for video - either the javascript is excluding the type of embedded framework Livecode is no using on MacOS - or the framework doesn’t;t yet support those. Features - I’d like to check - but not sure what Livecode is us

Re: Browser Widget Issue

2021-05-25 Thread Keith Clarke via use-livecode
Hi David, Pass on the framework, but regarding the page… FWIW from the message box, I was able to set the url of widget ‘Browser’ to "https://obs.ninja” (apparently empty...) but then put the htmltext of widget “Browser” to see that there is indeed some content. So, it’s not scripting itself t

RE: Browser Widget and Twitter on iOS 13

2020-08-17 Thread Ralph DiMola via use-livecode
...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Linda Miller via use-livecode Sent: Saturday, August 15, 2020 2:53 PM To: use-livecode@lists.runrev.com Cc: Linda Miller Subject: RE: Browser Widget and Twitter on iOS 13 Why

RE: Browser Widget and Twitter on iOS 13

2020-08-15 Thread Linda Miller via use-livecode
Why not check if it is going to a URL that contains “twitter.com” and feed the correct user agent prior to going to the website since it is only a twitter issue? Linda > On Aug 15, 2020, at 10:00 AM, use-livecode-requ...@lists.runrev.com wrote: > > RE: Browser Widget and Twitter

Re: Browser Widget and Twitter on iOS 13

2020-08-15 Thread Jim Lambert via use-livecode
Ralph, Thanks for that switch statement. Jim Lambert ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-liv

RE: Browser Widget and Twitter on iOS 13

2020-08-14 Thread Ralph DiMola via use-livecode
Of Mark Wieder via use-livecode Sent: Friday, August 14, 2020 7:17 PM To: Ralph DiMola via use-livecode Cc: Mark Wieder Subject: Re: Browser Widget and Twitter on iOS 13 On 8/14/20 2:54 PM, Ralph DiMola via use-livecode wrote: > Mark/Panos, > > Thanks for all your help, this worked like a

Re: Browser Widget and Twitter on iOS 13

2020-08-14 Thread Mark Wieder via use-livecode
On 8/14/20 2:54 PM, Ralph DiMola via use-livecode wrote: Mark/Panos, Thanks for all your help, this worked like a charm! I got the userAgent from a v12 iPad and v13 iPad. For any other iPad OS version I use the v13 version. Just curious... what userAgent string worked for you? -- Mark Wieder

RE: Browser Widget and Twitter on iOS 13

2020-08-14 Thread Ralph DiMola via use-livecode
[mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Mark Waddingham via use-livecode Sent: Friday, August 14, 2020 9:12 AM To: How to use LiveCode Cc: Mark Waddingham Subject: Re: Browser Widget and Twitter on iOS 13 On 2020-08-14 14:01, Mark Waddingham via use-livecode wrote: > On 2020

Re: Browser Widget and Twitter on iOS 13

2020-08-14 Thread Mark Waddingham via use-livecode
On 2020-08-14 14:01, Mark Waddingham via use-livecode wrote: On 2020-08-14 13:31, Ralph DiMola via use-livecode wrote: Should I use the userAgent globally for all browser widget http(s) requests on platform = iphone? Isn't the issue on iPad? Hah - ignore this - I forgot to edit it when I re

Re: Browser Widget and Twitter on iOS 13

2020-08-14 Thread Mark Waddingham via use-livecode
On 2020-08-14 13:31, Ralph DiMola via use-livecode wrote: Thanks Panos and Mark! So... to recap.. 1) get the userAgent in Safari on my 10.14.6 Mac 2) in App (If the platform="iphone" then set userAgent to this value). Pretty much - although I recommend not using the userAgent string from a ma

RE: Browser Widget and Twitter on iOS 13

2020-08-14 Thread Ralph DiMola via use-livecode
ev.com] On Behalf Of panagiotis merakos via use-livecode Sent: Friday, August 14, 2020 3:40 AM To: How to use LiveCode Cc: panagiotis merakos Subject: Re: Browser Widget and Twitter on iOS 13 Hello all, Definitely this is related to the user-agent. It seems twitter recently has become strict

Re: Browser Widget and Twitter on iOS 13

2020-08-14 Thread panagiotis merakos via use-livecode
Hello all, Definitely this is related to the user-agent. It seems twitter recently has become stricter on this: https://help.twitter.com/en/using-twitter/twitter-supported-browsers https://stackoverflow.com/questions/63081729/when-using-r-curl-to-download-a-twitter-page-the-page-downloaded-is-th

Re: Browser Widget and Twitter on iOS 13

2020-08-13 Thread Mark Waddingham via use-livecode
On 2020-08-13 18:30, Ralph DiMola via use-livecode wrote: That tester has both iPhone and iPad and I know there both running the same version of iOS. iPhone doesn't get the message but the iPad does. I will find out if there both up to the latest 13.x.x. (it flew out of my head after I heard th

RE: Browser Widget and Twitter on iOS 13

2020-08-13 Thread Ralph DiMola via use-livecode
ssage- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Mark Waddingham via use-livecode Sent: Thursday, August 13, 2020 1:09 PM To: How to use LiveCode Cc: Mark Waddingham Subject: Re: Browser Widget and Twitter on iOS 13 On 2020-08-13 17:06, Ralph DiMola via use-liv

Re: Browser Widget and Twitter on iOS 13

2020-08-13 Thread Mark Waddingham via use-livecode
On 2020-08-13 17:06, Ralph DiMola via use-livecode wrote: Thanks Mark. I searched all stacks for "userAgent" and it did not exist. After I got some more feedback it is working on iOS 13 iPhones but not on an iOS 13 iPad. So far this iPad is the only one with this issue. The user tried in Safar

Re: Browser Widget and Twitter on iOS 13

2020-08-13 Thread Prothero@earthlearning via use-livecode
ces > rdim...@evergreeninfo.net > > > -Original Message- > From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf > Of Mark Waddingham via use-livecode > Sent: Thursday, August 13, 2020 11:16 AM > To: How to use LiveCode > Cc: Mark Waddingham > Sub

RE: Browser Widget and Twitter on iOS 13

2020-08-13 Thread Ralph DiMola via use-livecode
How to use LiveCode Cc: Mark Waddingham Subject: Re: Browser Widget and Twitter on iOS 13 On 2020-08-13 13:46, Ralph DiMola via use-livecode wrote: > When accessing Twitter via the Browser Widget on iOS 13 I get this > error message==> "This browser is no longer supported. Please

Re: Browser Widget and Twitter on iOS 13

2020-08-13 Thread Mark Waddingham via use-livecode
On 2020-08-13 13:46, Ralph DiMola via use-livecode wrote: When accessing Twitter via the Browser Widget on iOS 13 I get this error message==> "This browser is no longer supported. Please switch to a supported browser or disable the extension which masks you browser to continue using twitter.com".

Re: Browser widget scrolling

2020-07-21 Thread J. Landman Gay via use-livecode
On 7/21/20 1:39 AM, Terence Heaford via use-livecode wrote: On 20 Jul 2020, at 21:06, J. Landman Gay via use-livecode wrote: I'm not sure if this is a bug or a feature. It also seems to happen when the widget is empty? Sounds like a bug report is in order. If there is a property avail

Re: Browser widget scrolling

2020-07-20 Thread Terence Heaford via use-livecode
> On 20 Jul 2020, at 21:06, J. Landman Gay via use-livecode > wrote: > > I'm not sure if this is a bug or a feature. It also seems to happen when the widget is empty? Thanks Terry ___ use-livecode mailing list use-livecode@lists.runrev.com Plea

Re: Browser widget scrolling

2020-07-20 Thread J. Landman Gay via use-livecode
On 7/20/20 7:43 AM, Terence Heaford via use-livecode wrote: This does not appear to work: set the hScrollbar of widget “myBrowser" to false The scrollbar becomes visible when you drag resize a window. I was expecting there to ne no scrollbar at all. Also the checkboxes in the properties sect

Re: Browser Widget iOS Local Html Files

2020-06-29 Thread Tore Nilsen via use-livecode
t; -Original Message- > From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf > Of Tore Nilsen via use-livecode > Sent: Monday, June 29, 2020 4:39 PM > To: How to use LiveCode > Cc: Tore Nilsen > Subject: Re: Browser Widget iOS Local Html Files >

RE: Browser Widget iOS Local Html Files

2020-06-29 Thread Ralph DiMola via use-livecode
Sent: Monday, June 29, 2020 4:39 PM To: How to use LiveCode Cc: Tore Nilsen Subject: Re: Browser Widget iOS Local Html Files Have you tried to set the url of the widget to tTemp. This actually loads the page in the widget as if it was any browser. Tore > 29. jun. 2020 kl. 21:56 skrev Ralph Di

Re: Browser Widget iOS Local Html Files

2020-06-29 Thread Tore Nilsen via use-livecode
Have you tried to set the url of the widget to tTemp. This actually loads the page in the widget as if it was any browser. Tore > 29. jun. 2020 kl. 21:56 skrev Ralph DiMola via use-livecode > : > > LC 9.6.0 > > I can't get a local html file to load in iOS browser widget. This is the > first

Re: Browser Widget on Linux: how can it become possible to use?

2020-06-09 Thread Richard Gaskin via use-livecode
Mark Wieder wrote: On 6/7/20 1:17 AM, Richard Gaskin via use-livecode wrote: What is needed to make the Browser widget work in LC's Linux engine? http://forums.livecode.com/viewtopic.php?f=4&t=33805&p=189397&hilit=CEF#p189397 Sounds like the Browser widget is completely DOA in LC for Linux.

Re: Browser Widget on Linux: how can it become possible to use?

2020-06-09 Thread Mark Wieder via use-livecode
On 6/7/20 1:17 AM, Richard Gaskin via use-livecode wrote: What is needed to make the Browser widget work in LC's Linux engine? http://forums.livecode.com/viewtopic.php?f=4&t=33805&p=189397&hilit=CEF#p189397 -- Mark Wieder ahsoftw...@gmail.com ___

Re: Browser widget cookies?

2019-08-28 Thread Tom Glod via use-livecode
Awesome! new possibilities! Thanks On Wed, Aug 28, 2019 at 5:58 AM hh via use-livecode < use-livecode@lists.runrev.com> wrote: > > Geoff C. wrote: > > If I set the url for the browser widget to a url, and the > > server sets a cookie, can I read/modify/delete that cookie? > > Cookie structure (it

Re: Browser widget cookies?

2019-08-28 Thread hh via use-livecode
> Geoff C. wrote: > If I set the url for the browser widget to a url, and the > server sets a cookie, can I read/modify/delete that cookie? Cookie structure (itemdel is ";"). item 1: A "name = value" pair containing the actual data, item 2: An expiry date after which it is no longer valid, i

Re: Browser widget - is there something similar to browserBeforeNavigate

2019-05-06 Thread Matthias Rebbe via use-livecode
Thanks Hermann for the sample script. Regards, Matthias > Am 06.05.2019 um 14:24 schrieb hh via use-livecode > : > > The problem is that you cannot cancel the page navigation in the widget, > not even by using simple JavaScript (unbeforeunload). > > Find below instead a way to "revert" the n

Re: Browser widget - is there something similar to browserBeforeNavigate

2019-05-06 Thread hh via use-livecode
The problem is that you cannot cancel the page navigation in the widget, not even by using simple JavaScript (unbeforeunload). Find below instead a way to "revert" the navigation. If you don't want to hide the widget you can similarly use two widgets and change their layer. Or you can show a snaps

Re: Browser widget - is there something similar to browserBeforeNavigate

2019-05-05 Thread Matthias Rebbe via use-livecode
Yes, it´s the same. Sorry, forgot to mention that also. Seems to be little late here. Matthias > Am 06.05.2019 um 00:26 schrieb Ralph DiMola via use-livecode > mailto:use-livecode@lists.runrev.com>>: > > Did you try browserDocumentLoadBegin ? > > Ralph DiMola > IT Director > Evergreen Inf

RE: Browser widget - is there something similar to browserBeforeNavigate

2019-05-05 Thread Ralph DiMola via use-livecode
To: How to use LiveCode Cc: Matthias Rebbe Subject: Re: Browser widget - is there something similar to browserBeforeNavigate Thanks Ralph, tried that already (should have mentioned that), but the URL is loaded right away in the widget and then the script in the message handler browserNavigateBegin

Re: Browser widget - is there something similar to browserBeforeNavigate

2019-05-05 Thread Matthias Rebbe via use-livecode
The is of course not in my scripts. > Am 05.05.2019 um 23:57 schrieb Matthias Rebbe via use-livecode > mailto:use-livecode@lists.runrev.com>>: > > Thanks Ralph, > > tried that already (should have mentioned that), but the URL is loaded right > away in the widget and then the script in th

Re: Browser widget - is there something similar to browserBeforeNavigate

2019-05-05 Thread Matthias Rebbe via use-livecode
Thanks Ralph, tried that already (should have mentioned that), but the URL is loaded right away in the widget and then the script in the message handler browserNavigateBegin is executed. This is my script on browserNavigateBegin pURL if not (pURL begins with "https://forums.livecode.com <

RE: Browser widget - is there something similar to browserBeforeNavigate

2019-05-05 Thread Ralph DiMola via use-livecode
browserNavigateBegin Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Matthias Rebbe via use-livecode Sent: Sunday, May 05, 2019 5:36 PM To: How to use LiveC

Re: Browser widget and downloading of files

2019-03-20 Thread Tore Nilsen via use-livecode
Thank you very much, this did the trick! Best regards Tore > 20. mar. 2019 kl. 22:09 skrev hh via use-livecode > : > > on browserUnhandledLoadRequest pURl > -- do your thing with pURL, for example: > -- use libURL for showing progress > put url(pURL) into > end browserUnhandledLoadRequest

Re: Browser widget and downloading of files

2019-03-20 Thread hh via use-livecode
> Tore N. wrote: > Are there any ways to start a download of a file via a link in > the browser widget? It works fine in any other browser ... on browserUnhandledLoadRequest pURl -- do your thing with pURL, for example: -- use libURL for showing progress put url(pURL) into end browserUnhand

Re: Browser widget and downloading of files

2019-03-20 Thread Stephen Barncard via use-livecode
I think one has to specifically capture the link-click and deal with it in one's own code. -- Stephen Barncard - Sebastopol Ca. USA - mixstream.org On Wed, Mar 20, 2019 at 10:13 AM Tore Nilsen via use-livecode < use-livecode@lists.runrev.com> wrote: > Are there any ways to start a download of a

Re: Browser widget and PDFs

2018-11-26 Thread Bob Sneidar via use-livecode
I thing there is an Open With option likw Wndows has. Try right clicking apdf and see if you can see an always open with option. Bob S > On Nov 22, 2018, at 08:53 , Tore Nilsen via use-livecode > wrote: > > I have come across a puzzling phenomenon in how the browser widget handles > pdfs. O

Re: Browser Widget Problem in Android

2018-11-25 Thread J. Landman Gay via use-livecode
Did you get a map API key as the dictionary describes? "Note: In order to use the map widget on Android, you must create a Google Maps V2 API key for your app, and set it in the standalone settings for the map widget via the cog icon in the Inclusions pane of the standalone settings stack."

Re: Browser Widget Problem in Android

2018-11-25 Thread Andrew Bell via use-livecode
Mike- Attachments don't make their way onto the list, so we can't see your settings. You said a "map browser widget" but that doesn't exist in LiveCode: Map widget does, and Browser widget does, but no Map Browser widget. I think you're talking about the Browser widget based off the thread

Re: Browser widget and PDFs

2018-11-22 Thread Tore Nilsen via use-livecode
Thank you all for your responses, they helped me solve the problem for my part. It is indeed the Adobe web Plugin that is the key to this. Although I have never checked that I would like to use this plugin, it seems as if just launching Acrobat will do this automatically. In the Acrobat preferen

Re: Browser widget and PDFs

2018-11-22 Thread hh via use-livecode
If the PDF is embedded by ordinary HTML (= set url of the browser widget or use in its htmlText , or ) then you can't decide for the user which plugin to use. But the user can force this for himself by moving the corresponding plugin(s) in/out of the plugins-folder (which is on Mac "/Library/Inte

Re: Browser widget and PDFs

2018-11-22 Thread Klaus major-k via use-livecode
Hi Tore, > Am 22.11.2018 um 18:01 schrieb Tore Nilsen via use-livecode > : > I don’t think so, as the default app is set to be Preview on both machines. > In fact I had forgot I had Acrobat installed on my laptop. > Tore Nilsen >> Could this be related to the default app that handles PDF on your

Re: Browser widget and PDFs

2018-11-22 Thread Tore Nilsen via use-livecode
I don’t think so, as the default app is set to be Preview on both machines. In fact I had forgot I had Acrobat installed on my laptop. Tore Nilsen > 22. nov. 2018 kl. 17:56 skrev Brian Milby via use-livecode > : > > Could this be related to the default app that handles PDF on your Mac?

Re: Browser widget and PDFs

2018-11-22 Thread Brian Milby via use-livecode
Could this be related to the default app that handles PDF on your Mac? Thanks, Brian On Nov 22, 2018, 11:53 AM -0500, Tore Nilsen via use-livecode , wrote: > I have come across a puzzling phenomenon in how the browser widget handles > pdfs. On my iMac I do no have Adobe Reader or Adobe Acrobat i

Re: Browser widget and mailto link.

2018-11-01 Thread Sannyasin Brahmanathaswami via use-livecode
There is a known bug in iOS 12 that breaks the javascript handlers. I had to immediately ship a version of SivaSiva app, without the "Lexicon" -- which is an HTML5 package in the app, playing the browser widget -- I believe they have fixed it, and it will get in 9.0.2 rc 1. (any day now? but I

Re: Browser widget and mailto link.

2018-10-31 Thread Ludovic THEBAULT via use-livecode
> Le 30 oct. 2018 à 19:08, Ludovic THEBAULT via use-livecode > a écrit : > > Hello, > > is it normal that email links (mailto:x...@xx.com > »>my mail) do not work in a web page displayed with > the browser widget? > Livecode 9.01 - tested on iOS. > I’ve made a sample s

Re: Browser Widget question

2018-07-26 Thread William Prothero via use-livecode
Panos: Thanks, that cleared up one of my problems. I have two buttons, each of which launches a different URL. The http one launches first. This works as expected when I, for test purposes, block ATS. The second button launches an https site, but when I do “set the URL of widget “Browser” to “

Re: Browser Widget question

2018-07-26 Thread panagiotis merakos via use-livecode
Hi Bill, On iOS http URL are blocked by ATS (App Transport Security). You can disable ATS in the iOS standalone settings, but it is not recommended. Another way is to add a whitelist of URLs that should not be blocked by ATS. This requires using a custom plist. Best, Panos -- On Thu, Jul 26, 20

Re: Browser widget on iOS

2018-07-17 Thread Terry Judd via use-livecode
OK – looks like there is some interaction with other components on the card going on (iOS scrollers maybe?) that is stopping it displaying as a new browser object on a card without any scrollers seems to work just fine. I’ll poke around some more I guess. Terry... From: use-livecode on behalf

Re: Browser Widget on Android

2018-07-16 Thread J. Landman Gay via use-livecode
I got your stack to work last week but my email to you bounced and then I got distracted. I'll get it to you tomorrow when I'm at the Mac. If anyone on the list is interested I'll post a link here too. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperac

Re: Browser Widget on Android

2018-07-16 Thread Brian Milby via use-livecode
I can't do the testing right now, but I think that your "portrainUI" handler is causing the issue. In there you restrict the orientations to portrait only. If you are doing that to force the device to rotate, you probably need to add another one at the end that unlocks the device so that it can b

Re: Browser Widget on Android

2018-07-16 Thread Sannyasin Brahmanathaswami via use-livecode
9.0.1 RC1 I don't think this is working, OR, I don't know how it works. go stack url "http://wiki.hindu.org/uploads/Tester-Landscape-TsNet.livecode"; (you have seen in before) I can't get the browser (widget "body) to change its rect, no matter what I do. I have a support request in on my bus

Re: Browser Widget on Android

2018-07-16 Thread J. Landman Gay via use-livecode
As long as the app is build with a splash image that matches the device resolution (on iOS), then it should work for all. Android doesn't use this. The stack is always sized to the screenRect and resolution is calculated automatically. (I thought the same was true for iOS, but it's been a whil

Re: Browser Widget on Android

2018-07-15 Thread Brian Milby via use-livecode
Thanks for doing a test. I'll need to get some videos together to really show what it does. I'll need to wait until after LCG though... I'm such a procrastinator :) The stack was built as a proof of concept that the GM and PM could work effectively on mobile. The stack works fully on iOS. From

Re: Browser Widget on Android

2018-07-15 Thread J. Landman Gay via use-livecode
I tried your test stack but I don't think I know how to use it. The existing URL in the browser widget (your site) returns an error: Webpage not available, net::ERR_CACHE_MISS. I changed it to google.com and got the same thing. At any rate, changing the fullscreenMode re-wrapped the text in th

Re: Browser Widget Layer on mobile

2018-06-25 Thread Dan Friedman via use-livecode
Monte, Ok, good to know I wasn’t losing my mind! I have put in the bug report. I have to release this app in about a month. Maybe it will get fixed by then. https://quality.livecode.com/show_bug.cgi?id=21386 Thank you!! > Hi Dan > > This sounds like a bug to me. For widgets that are in g

Re: Browser Widget Layer on mobile

2018-06-24 Thread Monte Goulding via use-livecode
Hi Dan This sounds like a bug to me. For widgets that are in groups we create an extra container layer view to put them in so they should be clipped to the group rect and also as close as possible respect the layering of objects on the card. It sounds like it’s working correctly for you on mac

Re: Browser Widget Layer on mobile

2018-06-23 Thread Dan Friedman via use-livecode
Brian, I think that’s true for Native Controls, but I’m seeing different results for the bowser widget. I find that if I put the bowser widget in a group, it draws within the group’s bounds like other controls. What I’m experiencing is that on Mobile (at least iOS), it’s acting like a standar

Re: Browser Widget Layer on mobile

2018-06-22 Thread Brian Milby via use-livecode
I may not be stating it in the right terms, but native controls are above everything else in their own layer. On Jun 22, 2018, 5:37 PM -0500, Dan Friedman via use-livecode , wrote: > Greetings! > > I am working on a mobile app where I have a bowser widget in a group that is > scrollable. It scro

RE: Browser Widget Document Download

2018-03-31 Thread Ralph DiMola via use-livecode
: Ralph DiMola via use-livecode Cc: Sannyasin Brahmanathaswami Subject: Re: Browser Widget Document Download When I set the widget to the url the PDF displays. When I put the url into a var "put url (tURL) into MyVar" I see some html/javascript in MyVar but no PDF. What I would like t

Re: Browser Widget Document Download

2018-03-31 Thread Sannyasin Brahmanathaswami via use-livecode
When I set the widget to the url the PDF displays. When I put the url into a var "put url (tURL) into MyVar" I see some html/javascript in MyVar but no PDF. What I would like to do is download the PDF on both mobile platforms. Is this even possible with LC? BR: can you send the URL? Typically, (

Re: Browser widget and revbrowserback/revbrowserforward

2018-01-11 Thread Klaus major-k via use-livecode
Hi Klaus, > Am 10.01.2018 um 19:52 schrieb Klaus major-k via use-livecode > : > > Hi friends, > > a user in the forum asked this questio and I would also like to know :-) > > With "revbrowser" we had a simple command to browser the browser > history: revBrowserBack and RevBrowserForward >

Re: (Browser) Widget documentation

2017-09-20 Thread J. Landman Gay via use-livecode
On 9/20/17 3:51 PM, Ben Rubinstein via use-livecode wrote: Now I feel even more foolish But it makes the rest of us look good. We owe you. Any one of us might be next. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactives

Re: (Browser) Widget documentation

2017-09-20 Thread Ben Rubinstein via use-livecode
Now I feel even more foolish for not finding any of these. Thanks Ali, everyone! Ben On 20/09/2017 17:29, Ali Lloyd via use-livecode wrote: Alternatively, right-click on the widget in question and choose 'Show Documentation' On Wed, Sep 20, 2017 at 5:03 PM hh via use-livecode < use-livecode@li

Re: (Browser) Widget documentation

2017-09-20 Thread Ben Rubinstein via use-livecode
That's excellent, thanks H! Ben On 20/09/2017 17:03, hh via use-livecode wrote: Ben R. wrote: General question: where can users find a reference to the supported properties/commands/functions of widgets? E.g. the properties of a Segmented Control widget? More specific immediate question: where

Re: (Browser) Widget documentation

2017-09-20 Thread Ben Rubinstein via use-livecode
First stop is the Dictionary. Use the API drop down menu to select the widget - Segmented Control or Browser. I'm an idiot - I looked in the API tab, and the Guide tab, and somehow didn't notice that the API menu wasn't limited to LCS/LCB. Some people can't be helped! thanks Brian, Ben On

Re: (Browser) Widget documentation

2017-09-20 Thread Ali Lloyd via use-livecode
The list of extension APIs will be sorted in 9 DP 9 (Thanks to Brian!) On Wed, Sep 20, 2017 at 5:29 PM Ali Lloyd wrote: > Alternatively, right-click on the widget in question and choose 'Show > Documentation' > > On Wed, Sep 20, 2017 at 5:03 PM hh via use-livecode < > use-livecode@lists.runrev.c

Re: (Browser) Widget documentation

2017-09-20 Thread Ali Lloyd via use-livecode
Alternatively, right-click on the widget in question and choose 'Show Documentation' On Wed, Sep 20, 2017 at 5:03 PM hh via use-livecode < use-livecode@lists.runrev.com> wrote: > > Ben R. wrote: > > General question: where can users find a reference to the supported > > properties/commands/functi

Re: (Browser) Widget documentation

2017-09-20 Thread hh via use-livecode
> Ben R. wrote: > General question: where can users find a reference to the supported > properties/commands/functions of widgets? E.g. the properties of a Segmented > Control widget? > More specific immediate question: where can I find a reference for the > Browser widget? In the dictionary (so

Re: (Browser) Widget documentation

2017-09-20 Thread Brian Milby via use-livecode
First stop is the Dictionary. Use the API drop down menu to select the widget - Segmented Control or Browser. I'm not sure about the second question (but I know it is possible, just don't know the details). On Wed, Sep 20, 2017 at 9:28 AM, Ben Rubinstein via use-livecode < use-livecode@lists.run

Re: Browser widget android local file problem

2017-09-04 Thread Alan via use-livecode
Hi Jacque, Jonathan Thanks for the replies and questions and sorry for the slow reply!. They did lead me to question whether my file was being created correctly - it wasn't. There also seems to be a difference in the way html files are loaded. Anyway, it works now. Thanks for the info about th

Re: Browser widget android local file problem

2017-08-24 Thread J. Landman Gay via use-livecode
On 8/24/17 8:29 AM, Alan via use-livecode wrote: Any ideas why there's a difference between the resources and documents specialFolderPaths? Why does the "documents" specialFolderPath here start with/data/data/ and the resources one start with/data/app/ ?? Like on a desktop machine, the f

Re: Browser widget android local file problem

2017-08-24 Thread Jonathan Lynch via use-livecode
Hi Alan - setting the htmltext of the widget works fine for me. My map data comes from Bing. What is going wrong when you do that? Sent from my iPhone > On Aug 24, 2017, at 9:29 AM, Alan via use-livecode > wrote: > > Am having a problem loading a local file that displays a Google map on the

Re: Browser widget

2017-04-23 Thread Klaus major-k via use-livecode
Hi John, > Am 23.04.2017 um 14:02 schrieb John Dixon via use-livecode > : > > Are there any messages than can be used with the browser 'widget', so that > you could know when the URL has finished loading, for example ? sure, e.g. -> browserNavigateComplete tUrl Check the dictionary for more i

  1   2   >