Re: OT: What Is Wrong at play.google.com/Android Apps?

2021-07-26 Thread Sannyasin Brahmanathaswami via use-livecode
It on Firefox! Google Chrome lets me in… problem solved… On 7/25/21, 4:26 PM, "use-livecode" wrote: What is wrong with: (My developers ID is, for this email, has been blocked out) https://play.google.com/console/u/0/developers/#/app-list#AppListPlace ? I will

OT: What Is Wrong at play.google.com/Android Apps?

2021-07-25 Thread Sannyasin Brahmanathaswami via use-livecode
What is wrong with: (My developers ID is, for this email, has been blocked out) https://play.google.com/console/u/0/developers/#/app-list#AppListPlace ? I will be logged into Google as: Himalayan Academy I should see four apps: SivaSiva Spiritual Workout Hinduism Today

Re: CEF Browser - what is wrong with my script

2017-07-30 Thread Matthias Rebbe via use-livecode
> Am 30.07.2017 um 11:22 schrieb hh via use-livecode > >: > > @Matthias > "revbrowserOpenCEF" is deprecated since at least one year or so. > Also note: revBrowserInstances() doesn't work after"revbrowserOpenCEF”. >

Re: CEF Browser - what is wrong with my script

2017-07-30 Thread Matthias Rebbe via use-livecode
Done. http://quality.livecode.com/show_bug.cgi?id=20206 And as the error message thing is kind of a feature request i filed a separate one http://quality.livecode.com/show_bug.cgi?id=20207

Re: CEF Browser - what is wrong with my script

2017-07-30 Thread Mark Waddingham via use-livecode
Yes please do - also maybe mention we should make revBrowserOpenCEF throw a more appropriate error in macOS. General advice on Mac use open, on win/Linux use openCef. This will give you reasonably consistent environments on all three desktop platforms. Mark. Sent from my iPhone > On 30 Jul

Re: CEF Browser - what is wrong with my script

2017-07-30 Thread hh via use-livecode
@Matthias "revbrowserOpenCEF" is deprecated since at least one year or so. Also note: revBrowserInstances() doesn't work after"revbrowserOpenCEF". Also note if you use revBrowserOpen: Then Mac is the only platform that supports HTML5/canvas2d. ___

Re: CEF Browser - what is wrong with my script

2017-07-30 Thread Matthias Rebbe via use-livecode
The dictionary in 8 and 9 shows CEF as available for Win and Mac. So i will at least file a report about that. Matthias Rebbe +49 5741 31 ‌matthiasrebbe.eu ‌ > Am 30.07.2017 um 10:20 schrieb Mark Waddingham via use-livecode >

Re: CEF Browser - what is wrong with my script

2017-07-30 Thread Mark Waddingham via use-livecode
The solution here is to use revBrowserOpen. I missed the fact this is on macOS. We removed CEF on Mac in 8, as it was not possible to use CEF on Mac as a slave (for technical reasons). The system web view on Mac is still WebKit based so they are very similar. Sorry for the confusion! Mark.

Re: CEF Browser - what is wrong with my script

2017-07-29 Thread Mark Waddingham via use-livecode
On 2017-07-30 01:06, Matthias Rebbe via use-livecode wrote: Mark, I cannot use the widget because of bug #20200. I was hoping you were going to say 'because I hadn't thought to' (although, I must confess that was a fanciful notion, having observed your attention to detail over the years).

Re: CEF Browser - what is wrong with my script

2017-07-29 Thread Matthias Rebbe via use-livecode
Mark, I cannot use the widget because of bug #20200. If we can expect a fix for 20200 then there would be no need for a bug report for the browser external. Or is it more realistic that if i report it as a bug that the browser external is fixed earlier than bug 20200? Matthias Rebbe +49

Re: CEF Browser - what is wrong with my script

2017-07-29 Thread Matthias Rebbe via use-livecode
The script just contains the normal url, but my email added this 2nd one with the brackets. I am on Mac OS X. Matthias Rebbe +49 5741 31 ‌matthiasrebbe.eu ‌ > Am 30.07.2017 um 00:57 schrieb Mike Bonner via use-livecode >

Re: CEF Browser - what is wrong with my script

2017-07-29 Thread Mike Bonner via use-livecode
Other than the invalid form of the url, its working for me here (in the ide, windows 10, 9.0 dp7) I end up with a blank browser because it doesn't know how to handle the part of the url, removing that correctly brings up the livecode site. Sounds like something in the

Re: CEF Browser - what is wrong with my script

2017-07-29 Thread Mark Waddingham via use-livecode
On 2017-07-30 00:44, Matthias Rebbe via use-livecode wrote: stack "Untitled 1": execution error at line n/a (External handler execution error: creation failed) near "creation failed" Am i missing something? It might be a bug - there's been a fair amount of churn in CEF stuff in recent

CEF Browser - what is wrong with my script

2017-07-29 Thread Matthias Rebbe via use-livecode
Hi, i get the error stack "Untitled 1": execution error at line n/a (External handler execution error: creation failed) near "creation failed" when executing the following script in ide local tBrowserId put revBrowserOpenCEF(the windowId of this stack, "http://www.livecode.com

Re: What is wrong with this Script logic?

2013-01-11 Thread Phil Davis
So don't use closeField. on keyDown pKey -- or keyUp if pKey is an integer then pass keyDown else answer Please enter only whole numbers! -- or you could beep end keyDown Phil Davis On 1/10/13 10:21 PM, Mark Wieder wrote: Jacque- Thursday, January 10, 2013, 9:39:35 PM, you

Re: What is wrong with this Script logic?

2013-01-11 Thread Kay C Lan
Actually I just went with the simple example from the dictionary: on closeField if (the text of me is not an integer) then answer Please enter only whole numbers! titled Enter A Number select the text of me end if end closeField Still, I do not understand why the IDE is

Re: What is wrong with this Script logic?

2013-01-11 Thread Peter M. Brigham
I tried this: on closefield put closefield the seconds cr after message hCheckEntry me end closefield on exitfield put exitfield the seconds cr after message end exitfield on enterinfield select empty end enterinfield on hCheckEntry pData if pData is an integer then exit

Re: What is wrong with this Script logic?

2013-01-11 Thread Ben Rubinstein
On 11/01/2013 06:21, Mark Wieder wrote: Jacque- Thursday, January 10, 2013, 9:39:35 PM, you wrote: Something's wrong. I think it's the dialog. My guess is that closeField keeps getting triggered. It's definitely related to closeField, but there's some interaction with the dialog as well.

Re: What is wrong with this Script logic?

2013-01-11 Thread Robert Brenstein
On 11.01.2013 at 17:03 Uhr +0800 Kay C Lan apparently wrote: Actually I just went with the simple example from the dictionary: on closeField if (the text of me is not an integer) then answer Please enter only whole numbers! titled Enter A Number select the text of me end if

Re: What is wrong with this Script logic?

2013-01-11 Thread Robert Brenstein
On 11.01.2013 at 11:04 Uhr +0800 Kay C Lan apparently wrote: If I turn Debug Mode OFF, and repeat the above, after I enter B in my ask Dialog I get the IDE Errors widow come up with: Type: Handler: can't find handler Object: fldTest Line: hCheckEntry tAnswer Hint: hCheckEntry My Ask Dialog Box

Re: What is wrong with this Script logic?

2013-01-11 Thread J. Landman Gay
On 1/11/13 12:21 AM, Mark Wieder wrote: Jacque- Thursday, January 10, 2013, 9:39:35 PM, you wrote: Something's wrong. I think it's the dialog. My guess is that closeField keeps getting triggered. Except I put my closefield handler into the field itself. That shouldn't catch any

Re: What is wrong with this Script logic?

2013-01-11 Thread J. Landman Gay
On 1/11/13 8:16 AM, Ben Rubinstein wrote: On 11/01/2013 06:21, Mark Wieder wrote: Jacque- Thursday, January 10, 2013, 9:39:35 PM, you wrote: Something's wrong. I think it's the dialog. My guess is that closeField keeps getting triggered. It's definitely related to closeField, but there's

What is wrong with this Script logic?

2013-01-10 Thread Kay C Lan
What is wrong with this Script logic? I've been staring at this too long and can't figure out what's wrong. 1) New Main Stack 2) Add 1 plain field 3) Set the flds Script to: on closeField hCheckEntry me end closeField on hCheckEntry pData if (pData is not an integer) then ask warning

Re: What is wrong with this Script logic?

2013-01-10 Thread J. Landman Gay
end repeat put pData into me end hCheckEntry On 1/10/13 9:04 PM, Kay C Lan wrote: What is wrong with this Script logic? I've been staring at this too long and can't figure out what's wrong. 1) New Main Stack 2) Add 1 plain field 3) Set the flds Script to: on closeField hCheckEntry me end

Re: What is wrong with this Script logic?

2013-01-10 Thread dunbarx
in the calling line in the closeField handler. Pass it by when it comes up. The recursion goes away. Craig Newman -Original Message- From: Kay C Lan lan.kc.macm...@gmail.com To: How to use LiveCode use-livecode@lists.runrev.com Sent: Thu, Jan 10, 2013 10:04 pm Subject: What is wrong

Re: What is wrong with this Script logic?

2013-01-10 Thread Kay C Lan
On Fri, Jan 11, 2013 at 11:43 AM, J. Landman Gay jac...@hyperactivesw.com wrote: Mostly what I wanted to say is that usually I avoid the whole issue like this: on hCheckEntry pData repeat until pData is an integer ask warning Please enter only whole numbers! with pData \

Re: What is wrong with this Script logic?

2013-01-10 Thread Kay C Lan
Jacque, Actuallly this doesn't work for me either. LC locks up, my CPUs go to 100% and I don't even get a recursion message or anything. I have to Force Quit LC. Any further suggestions? On Fri, Jan 11, 2013 at 11:43 AM, J. Landman Gay jac...@hyperactivesw.com wrote: on hCheckEntry pData

Re: What is wrong with this Script logic?

2013-01-10 Thread J. Landman Gay
It isn't really hung, you can command-period to abort the infinite loop. But still. Hm. It locks up for me too, and it didn't used to. Not only that, but if I abort the script I still get a final dialog, and if I hit Cancel in that one, I get the same odd results you do -- part of the script

Re: What is wrong with this Script logic?

2013-01-10 Thread Mark Wieder
Jacque- Thursday, January 10, 2013, 9:39:35 PM, you wrote: Something's wrong. I think it's the dialog. My guess is that closeField keeps getting triggered. -- -Mark Wieder mwie...@ahsoftware.net ___ use-livecode mailing list

What is wrong with this ?

2012-03-12 Thread John Dixon
Hi... On a mac this works without a problem... simple stack, one button and one field... on mouseUp put https://gg.com/racing; into raceListURL put URL raceListURL into fld 1 end mouseUp It will not work for me under Win XP from boot camp... Can anyone tell me why ? Dixie

Re: What is wrong with this ?

2012-03-12 Thread Ken Corey
On 12/03/2012 15:38, John Dixon wrote: on mouseUp puthttps://gg.com/racing; into raceListURL put URL raceListURL into fld 1 end mouseUp It will not work for me under Win XP from boot camp... Can anyone tell me why ? It's not a help, but as a negative data point it seems to work for

RE: What is wrong with this ?

2012-03-12 Thread John Dixon
Oh Shit !... Thanks Ken...:-) Date: Mon, 12 Mar 2012 15:54:57 + From: k...@kencorey.com To: use-livecode@lists.runrev.com Subject: Re: What is wrong with this ? On 12/03/2012 15:38, John Dixon wrote: on mouseUp puthttps://gg.com/racing; into raceListURL put URL

Re: What is wrong with this ?

2012-03-12 Thread Warren Samples
On 03/12/2012 10:54 AM, Ken Corey wrote: On 12/03/2012 15:38, John Dixon wrote: on mouseUp puthttps://gg.com/racing; into raceListURL put URL raceListURL into fld 1 end mouseUp It will not work for me under Win XP from boot camp... Can anyone tell me why ? It's not a help, but as a

Re: What is wrong with this ?

2012-03-12 Thread Dar Scott
Check with a browser, first, and see if that works. If not, I'm guessing network settings on the Win XP. You can jot down the OS X TCP/IP settings and then set them up on XP. Otherwise, check and see if you can do this with some HTTP connection, not HTTPS, If this works with HTTP If this

RE: What is wrong with this ?

2012-03-12 Thread John Dixon
Warren thanks for the reply... Dar... it works in a browser on XP with no problem. http URL's work in the script, just not with https... This is running from within the IDE and using liveCode 5.0.2 Dixie Check with a browser, first, and see if that works. If not, I'm guessing network

Re: What is wrong with this ?

2012-03-12 Thread Klaus on-rev
Hi John, Am 12.03.2012 um 18:30 schrieb John Dixon: Warren thanks for the reply... Dar... it works in a browser on XP with no problem. http URL's work in the script, just not with https... This is running from within the IDE and using liveCode 5.0.2 Dixie Try this: on mouseUp ## An

RE: What is wrong with this ?

2012-03-12 Thread John Dixon
Klaus... 'Magic'... worked like a charm, I thank you...:-) It does however beg the question as to why this is undocumented ? Dixie Subject: Re: What is wrong with this ? From: kl...@major.on-rev.com Date: Mon, 12 Mar 2012 18:34:00 +0100 To: use-livecode@lists.runrev.com Hi John, Am

Re: What is wrong with this ?

2012-03-12 Thread Klaus on-rev
Hi John, Am 12.03.2012 um 18:38 schrieb John Dixon: Klaus... 'Magic'... worked like a charm, I thank you...:-) Yep, this also saved my life a couple of times :-) It does however beg the question as to why this is undocumented ? I do not have the slightest idea! Dixie Try this: on

Re: What is wrong with this ?

2012-03-12 Thread Ken Corey
On 12/03/2012 17:34, Klaus on-rev wrote: ## An unfortunately undocumented feature: libUrlSetSSLVerification false Uh...doesn't that turn off SSL certificate validation? As in: we don't really know if we're talking to the people we think we are? I once saw a beginner write a c

Re: What is wrong with this ?

2012-03-12 Thread Warren Samples
On 03/12/2012 12:38 PM, John Dixon wrote: It does however beg the question as to why this is undocumented ? And also the question 'why is there a problem there, but not here?' Warren ___ use-livecode mailing list use-livecode@lists.runrev.com

Re: What is wrong with this ?

2012-03-12 Thread Bob Sneidar
I don't think it's intentional, just fell through the cracks is my guess. Bob On Mar 12, 2012, at 10:38 AM, John Dixon wrote: Klaus... 'Magic'... worked like a charm, I thank you...:-) It does however beg the question as to why this is undocumented ? Dixie Subject: Re: What

Re: What is wrong with this ?

2012-03-12 Thread Bob Sneidar
Reminds me of a recent situation I had with with network equipment. We couldn't get the new Mesh Wireless to work properly on our very large network. People were blaming the network, and suggesting we needed to isolate everything with routers and whatnot. I told them that is a lot like the