Re: Speech on Android

2020-04-02 Thread Monte Goulding via use-livecode
Hi Jerry > On 31 Mar 2020, at 11:38 pm, JeeJeeStudio via use-livecode > wrote: > 1. can you use any available language or must the Android System be set on a > language? (i suspect the first) i choose an english and dutch lang, first it > worked, later it talked spanish...could be a mistake fr

Re: Video format for mobile

2020-04-12 Thread Monte Goulding via use-livecode
> On 13 Apr 2020, at 3:58 am, J. Landman Gay via use-livecode > wrote: > > On 4/12/20 9:43 AM, Mark Waddingham via use-livecode wrote: >> On 2020-04-10 21:39, J. Landman Gay via use-livecode wrote: >>> @Mark is there a bug number for this? I couldn't find anything. >> Not specifically as yet I

Re: Video format for mobile

2020-04-13 Thread Monte Goulding via use-livecode
> On 13 Apr 2020, at 3:29 pm, J. Landman Gay via use-livecode > wrote: > > On 4/12/20 4:16 PM, Monte Goulding via use-livecode wrote: >>> On 13 Apr 2020, at 3:58 am, J. Landman Gay via use-livecode >>> wrote: >>> >>> On 4/12/20 9:43 AM, Mark

Re: Video format for mobile

2020-04-13 Thread Monte Goulding via use-livecode
Aha! Was just about to comment on the report and it seems Panos got there first! I should have expected that ;-) Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your su

Re: a QR Code reader for iOS and Android?

2020-04-13 Thread Monte Goulding via use-livecode
> On 14 Apr 2020, at 8:30 am, kee nethery via use-livecode > wrote: > > I see that the Android Barcode Library can scan QRcodes. That’s great. > > I see that mergeAVCam can scan barcodes of various types for ios and mac as > specified by mergAVCamBarcodeTypes(). I could potentially use these

Re: a QR Code reader for iOS and Android?

2020-04-13 Thread Monte Goulding via use-livecode
> On 14 Apr 2020, at 9:06 am, kee nethery via use-livecode > wrote: > > The dictionary in 9.5.1 Indy indicates mergeAVCam is ios and mac. Thanks for > clarifying it is not mac. Ah, ok that should get fixed > > Can you tell me the list of bar code types that mergAVCamBarcodeTypes() would >

Re: Video format for mobile

2020-04-13 Thread Monte Goulding via use-livecode
> On 14 Apr 2020, at 10:00 am, J. Landman Gay via use-livecode > wrote: > > The bug was me. I didn't know about the HTTPS requirement, but in addition I > had to add the SSL library and set hardware acceleration too (I think that's > what Colin meant, and I misunderstood.) Hmm… I only neede

Re: Keyhole effect?

2020-04-14 Thread Monte Goulding via use-livecode
If I understand what you want correctly then: Create image Create mask object Group both Set the ink of the mask object to blendDstIn Set the ink of the group to blendSrcOver Like everything else graphical I’m sure Scott Rossi has a better way ;-) Cheers Monte > On 15 Apr 2020, at 7:31 am, Ric

Re: md5Digest gives different results Mac vs Windows LC 9.5.1

2020-04-19 Thread Monte Goulding via use-livecode
Hi Bill As Brian said LiveCode is not calculating different values on different platforms. You can’t just look at the output in a text field and compare though. The function returns binary data so needs to be hex encoded for cross platform comparison. If you put it into a field then LiveCode wi

Re: mergAV Select specific rear camera

2020-04-30 Thread Monte Goulding via use-livecode
Hi Andrew It looks like both mergAVCam and the cameraControl in the Indy+ engines need to be updated to use APIs added in iOS 11 for `minAvailableVideoZoomFactor` and `maxAvailableVideoZoomFactor`. The multiple lens back camera is treated as one device and it switches between the lenses dependi

Re: [ANN] Release 9.6.0 RC-1

2020-05-11 Thread Monte Goulding via use-livecode
Hi Ralph The splash images are not scaled or stretched. They are centred on the launch screen. You can use any size image. There’s two main options to choose from here. - use a logo PNG with transparency and rely on the background color to fill the rest. You can choose from using the system ba

Re: [ANN] Release 9.6.0 RC-1

2020-05-11 Thread Monte Goulding via use-livecode
iginal Message- > From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf > Of Monte Goulding via use-livecode > Sent: Monday, May 11, 2020 9:58 PM > To: How to use LiveCode > Cc: Monte Goulding > Subject: Re: [ANN] Release 9.6.0 RC-1 > > Hi Ralph &g

Re: [ANN] Release 9.6.0 RC-1

2020-05-11 Thread Monte Goulding via use-livecode
You can choose a large image designed in such a way the content on the sides or top can be clipped or you can choose a smaller image and have the background visible. > On 12 May 2020, at 1:50 pm, scott--- via use-livecode > wrote: > > I am puzzled by how we should approach this for apps that

Re: mergDocCanOpen opens iOS sharing menu

2020-05-12 Thread Monte Goulding via use-livecode
Hi Ralf It might be that `mergDocCanOpen` needs to be deprecated as it relied on a hack and Apple must have changed the behavior. Checking the result after `mergDocShow*` commands will still report if the document interaction controller was able to be shown for the document. Cheers Monte > O

Re: LC9.6 Android EXIF image data issue

2020-05-12 Thread Monte Goulding via use-livecode
Hi Alan EXIF data from the returned photo in mobilePickPhoto probably shouldn’t be relied upon. On iOS it definitely won’t be there. On Android it definitely won’t be there if calling mobilePickPhoto with width and height parameters but if those parameters aren’t used it might be there (dependi

Re: OAuth2 on Win10: not returning to my app

2020-06-30 Thread Monte Goulding via use-livecode
It does sound like an issue with the redirect uri. Perhaps a configuration issue in your app on the endpoint? Some endpoints will use the redirect uri from the request, some will ensure it matches perfectly with your settings for your app on their portal, some will just use the redirect in the

Re: text to speech android

2020-07-19 Thread Monte Goulding via use-livecode
Hi Scott The identifiers and names all come from the macOS NSSpeechSynthesizer API and yes Victoria does appear to be the only voice with an uppercase character in the identifier `com.apple.speech.synthesis.voice.Victoria`, Cheers Monte > On 20 Jul 2020, at 12:57 pm, scott--- via use-livecode

Re: Livecode S3 library for AWS compatible object store

2020-09-23 Thread Monte Goulding via use-livecode
Hi Mark If you would like to create an enhancement request at quality.livecode.com we can see what we can do. If it’s just a matter of changing the host (currently hard coded as s3[-].amazonaws.com ) then it’s a relatively trivial patch. FWI

Re: Need to track click on a MacStatusMenu without menu items

2020-11-02 Thread Monte Goulding via use-livecode
Hi Matthias It would be possible to add to the library I think. Should just be a matter of setting an action which posts a callback on the button of the NSStatusItem. If you want to have a play the library is open source ;-) Cheers Monte > On 2 Nov 2020, at 4:09 am, matthias rebbe via use-liv

Re: mergeJSON on server problem

2020-11-02 Thread Monte Goulding via use-livecode
> On 1 Nov 2020, at 6:21 am, David Bovill via use-livecode > wrote: > > Thanks Mark - I may give fastjson a go. > > I tracked down the problem to the "\u00a0” unicode character in the json I > fetched, which was causing mergeJSON to fail. This hack fixed the issue in a > temporary way. >

Re: Ali or Monte - MimeEncodeAsMIMEMultipartDocument

2021-01-03 Thread Monte Goulding via use-livecode
Hi Sean The MIME lib is all my fault so don’t blame Ali ;-) It may help you to read RFCs 2045-2049 to gain an understanding of MIME. With the exception of mimeEncodeFieldAsMIMEMultipartDocument you really need to understand MIME to use the library. You probably want the mimeEncodeAsMIMEEmail c

Re: MergExt BLE

2021-01-31 Thread Monte Goulding via use-livecode
Hi Camm The mergExt externals are supported by LiveCode so the best route for support is supp...@livecode.com . Cheers Monte > On 31 Jan 2021, at 1:16 am, General 2018 via use-livecode > wrote: > > Hi, > > Is Monte able to support MergeBLE still or is this now

Re: Polygon fill algo?

2021-02-14 Thread Monte Goulding via use-livecode
Hi Richard Have you checked out the `fillRule` property docs? Cheers Monte > On 15 Feb 2021, at 9:25 am, Richard Gaskin via use-livecode > wrote: > > I was hoping to use a single polygon draw a box, using the old trick of > making discontiguous regions by adding a blank line between lists o

Re: S3 Compatible?

2021-02-24 Thread Monte Goulding via use-livecode
Hi Todd Given I’m the expert that needs to review this (I wrote the library) I thought I’d comment. The library was implemented for a business customer that required AWS S3. There was no discussion or investigation at the time about whether it would be feasible to make the library work for no

Re: Array Split vs Combine

2021-03-10 Thread Monte Goulding via use-livecode
It’s probably most likely to do with the string buffer needing to be constantly resized as the array is iterated for combine. Some googling suggests Windows may have issues with this. Our strategy for growing string buffers at the moment is to allocate just enough for the string. Mark would need

Re: Array Split vs Combine

2021-03-10 Thread Monte Goulding via use-livecode
d-of blocks of n bytes. I'm just spit-balling but I guess > you get my thinking. > > Sean > > On Thu, 11 Mar 2021 at 00:52, Monte Goulding via use-livecode < > use-livecode@lists.runrev.com> wrote: > >> It’s probably most likely to do with the string buffer ne

Re: Rust

2021-04-28 Thread Monte Goulding via use-livecode
> On 29 Apr 2021, at 1:34 pm, David Bovill via use-livecode > wrote: > > I need to interface with an open-source project that is being ported to rust > (from C++). I would like to make an extensions library to add new syntax to > my scripts. > > Is the way to go to create some C code that

Re: Read barcodes on Mac with mergAV?

2021-08-04 Thread Monte Goulding via use-livecode
Hi Terry Sorry to say but mergAV has never supported barcode scanning on macOS Cheers Monte > On 4 Aug 2021, at 4:44 pm, Terry Judd via use-livecode > wrote: > > So, I’m trying to get mergAV to recognise any sort or barcode on a Mac but > when I query mergAVCamBarcodeTypes() it returns empt

Re: PDF Viewer widget - how to enable interaction?

2021-12-08 Thread Monte Goulding via use-livecode
Hi Keith I think you want the `linkClicked` message. Navigation via links is under script control so possibly what you want is: on linkClicked pAction if pAction[“type”] is “goto” then set the currentDestination of me to pAction end if end linkClicked > On 9 Dec 2021, at 2:01 am, K

Re: How to extract whole text from a PDF file with the PDF widget?

2021-12-12 Thread Monte Goulding via use-livecode
Hi Folks Currently you can extract text in the widget by setting the hilitedRange and getting the hilitedRangeText. It wouldn’t be that hard to add extracted text to the documentPages property. The PDF widget was built to meet the requirements for a client rather than to match the features of X

Re: How to extract whole text from a PDF file with the PDF widget?

2021-12-12 Thread Monte Goulding via use-livecode
and hilitedRangeText properties, can you just > advise on the correct use to get a PDF's text? i.e can you use a range of 1 > to -1 to get the whole document text or would that just be the current page > text? > > Thanks in advance, > > > On 12/12/2021 6:49 PM, Mo

Re: open socket on start up and can't close

2021-12-15 Thread Monte Goulding via use-livecode
Is there a reason you are trying to close it? This is the socket port the remote debugger is listening on and there is a loop ensuring its existence. Cheers Monte > On 16 Dec 2021, at 6:26 am, RobEppich via use-livecode > wrote: > > Downloaded and run Livecode 9.6.5, type “put the opensocket

Re: Encrypting long text

2021-12-16 Thread Monte Goulding via use-livecode
I have opened this issue to correct the documentation. Autocomplete parses the syntax definitions in the docs to create a list of possible command variations. https://quality.livecode.com/show_bug.cgi?id=23489 > On 17 Dec 2021, at 6:08 am, Sean Cole via use-livecode > wrote: > > Hi Mark > > S

Re: PDF Viewer widget: expected experience from set the currentDestination?

2021-12-22 Thread Monte Goulding via use-livecode
Hi Keith Yes it does look like the currentDestination docs leaves a lot to be desired. I think there’s a couple of missing related items which is making the document display incorrectly. I’ve created an issue for that here https://quality.livecode.com/show_bug.cgi?id=23493 Here’s a simple exam

Re: PDW widget: get the rect of the hilitedRange

2022-01-11 Thread Monte Goulding via use-livecode
I think we would need to add a new property for that. Quite feasible as we already need to determine rects of the halite text to draw the selection. Perhaps create an enhancement request for this? Cheers Monte > On 11 Jan 2022, at 9:19 am, Keith Clarke via use-livecode > wrote: > > Hi folks

Re: Widget properties

2022-04-06 Thread Monte Goulding via use-livecode
I suspect this will be classed as not a bug as there has never been any intention of supporting the properties for widgets as far as I’m aware but it might be worth submitting it anyway and detailing your use case. I think if you look at the old lcVCS discussions on the forums from before my tim

Re: Widget properties

2022-04-06 Thread Monte Goulding via use-livecode
> On 7 Apr 2022, at 9:39 am, Richard Gaskin via use-livecode > wrote: > > Monte Goulding wrote: > > > ...there has never been any intention of supporting the properties > > for widgets as far as I’m aware... > > If the company wants widgets to be seen as first-class citizens, a little > more

Re: Widget properties

2022-04-06 Thread Monte Goulding via use-livecode
> On 7 Apr 2022, at 11:25 am, Richard Gaskin via use-livecode > wrote: > > > I will say there’s two main use cases for `the properties` and neither > > of them it serves very well: > > > > - Getting the properties of an object to apply to recreate the object > > elsewhere. export widget does a

Re: remoteDebugger error

2022-07-13 Thread Monte Goulding via use-livecode
Hi Bob Could you create a bug report about this? The remote debugger obviously shouldn’t be throwing bugs itself. It should be telling the IDE about errors and getting it to show the debugger. Cheers Monte > On 14 Jul 2022, at 9:02 am, Bob Sneidar via use-livecode > wrote: > > Yup. Don't w

Re: REGRESSION in LC 9.6.9rc2

2023-03-07 Thread Monte Goulding via use-livecode
Hi Paul I believe this issue is already resolved for RC3. It is in the engine so not something that can be scripted around unfortunately. See https://quality.livecode.com/show_bug.cgi?id=24003 Cheers Monte > On 8 Mar 2023, at 4:58 am, Pau

Re: REGRESSION in LC 9.6.9rc2

2023-03-07 Thread Monte Goulding via use-livecode
to get me > 969rc3 ASAP as I was literally QA testing the last bug before customer > release of an maintenance update to our app based on 969rc2 (with regression > fixes) when I discovered this! > > Sigh, > > On 3/7/2023 4:26 PM, Monte Goulding via use-livecode wrote: &

Re: LC and Universal Links

2023-03-21 Thread Monte Goulding via use-livecode
Hi Dan The answer to your question is you could use a custom manifest to do this on Android. On iOS it would require an engine patch. Also note that for both platforms you need to place JSON files on your domain so the OS can confirm that the app does actually have the right to be the browser f

Re: mySQL and primary key

2023-04-30 Thread Monte Goulding via use-livecode
If you can connect remotely to the server then try using MySQL workbench (available from Oracle) if not then you will need to SSH to the server, login to mysql on command line and do it there. > On 29 Apr 2023, at 9:40 pm, jbv via use-livecode > wrote: > > Hi list, > > I have a mySQL table w

Re: OAuth2 broken in LC 10 (dp6)

2023-09-07 Thread Monte Goulding via use-livecode
Hi Ben Launching the url in the default browser is by design as it is a required change to conform to RFC 8252. The notion being the user’s default browser is trusted not to record entered credentials while web views presented in apps don’t have that trust. There are notes on this breaking chan

Re: PDF Widget No Filled Forms

2023-09-27 Thread Monte Goulding via use-livecode
Hi Bob Try setting the `drawAnnotations` to true and see if the form data renders Cheers Monte > On 28 Sep 2023, at 1:27 am, Bob Sneidar via use-livecode > wrote: > > Hi all. > > I have filled forms, and I am just now wanting to display those FILLED forms > in a PDF widget. Only problem i

Re: PDF Widget No Filled Forms

2023-09-27 Thread Monte Goulding via use-livecode
Hi Bob Hmm… OK, it could be a bit of a project to get your forms rendering then. If it’s something you need soon and you have a budget then contact supp...@livecode.com . Otherwise you can create a bug report and attach the PDF. FYI there is no support for form int

Re: arrayToJSON not working in lcserver on Linux - resolved

2023-10-29 Thread Monte Goulding via use-livecode
> On 30 Oct 2023, at 11:00 am, Neville Smythe via use-livecode > wrote: > > I remain rather puzzled that the multi-dimensional array handlers were not > embedded in the mergJSON C-code library in the first place by Monte or LC > when they took it over. Blazing speed when communicating with ja

Re: Working with AWS S3 commands

2024-02-13 Thread Monte Goulding via use-livecode
Hi Peter A couple of suggestions are to first check you called AWSSetCredentials with the region your bucket is in. If that is correct then try specifying the full endpoint url as https://s3 .your-bucket-region.amazonaws.com via the endpoint

Re: Working with AWS S3 commands

2024-02-13 Thread Monte Goulding via use-livecode
> On 14 Feb 2024, at 4:49 pm, Monte Goulding via use-livecode > wrote: > > It’s possible if you are using a newer region that AWS isn’t supporting the > older endpoint style on it. I just found where they documented this so I’ll create an issue to fix https://docs.aws.amaz

Re: LC Web integration is not good enough

2018-04-30 Thread Monte Goulding via use-livecode
> On 1 May 2018, at 11:29 am, Mark Wieder via use-livecode > wrote: > > On 04/30/2018 03:15 PM, Ralph DiMola via use-livecode wrote: >> Andre, >> I'm using JSONToArray and ArrayToJSON for round trip with no problems. I'm >> storing an LC config array in a JSON text file, then later read the fi

Re: LC Web integration is not good enough

2018-05-01 Thread Monte Goulding via use-livecode
> On 2 May 2018, at 9:20 am, Andre Garzia wrote: > > The problem is that no web api expects an object with numeric keys, it > expects an honest, real, array. The fact that LC arrays are actually hashmaps > is awesome, I love them as well, but it still makes it impossible to export > arrays fr

Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY UNHAPPY

2018-05-02 Thread Monte Goulding via use-livecode
Hi Sean I’m sorry to hear about your situation. It seems from the blog link you posted there was a notice on the iOS consent page. We weren’t notified in any other way and do not have a bug report open about this. It seems neither us, nor any of our users noticed the notice… anyway, we are here

Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY UNHAPPY

2018-05-02 Thread Monte Goulding via use-livecode
cement request for the OAuth2 library to use AppAuth on platforms that can: https://quality.livecode.com/show_bug.cgi?id=21256 <https://quality.livecode.com/show_bug.cgi?id=21256> > On 3 May 2018, at 8:50 am, Monte Goulding via use-livecode > wrote: > > Hi Sean > >

Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY UNHAPPY

2018-05-02 Thread Monte Goulding via use-livecode
The issue is google no longer allow you to use webviews in app to do OAuth. So basically this rules out anything that doesn’t open up an OS browser. The fastest way to resolve this for mergGoogle is to change to using GTMAppAuth from GTMOAuth2. It may be that the OAuth2 library can do what’s nee

Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY UNHAPPY

2018-05-03 Thread Monte Goulding via use-livecode
Hi Sean I realise it may be too late to recover with your client now but I have mergGoogle working with google’s OAuth library GTMAppAuth. The new lcext file is here: https://www.dropbox.com/s/2vuu3jed0dp3wai/mergGoogle.lcext?dl=0 Updated docs are here: https://www.dropbox.com/s/xy62zhetu7yt20r

Re: HTTPD Server Post Requests work ........about half the time

2018-05-07 Thread Monte Goulding via use-livecode
Andre I think that should only be an issue if your number of requests * time per request > client timeout. Tom probably the best place to start is some logs of the requests and responses on both client and server. Cheers Monte > On 8 May 2018, at 11:28 am, Andre Garzia via use-livecode > wr

Re: Sean?

2018-05-08 Thread Monte Goulding via use-livecode
> On 9 May 2018, at 2:13 am, Dan Brown via use-livecode > wrote: > > I just received word from Sean's family, he is safe and is coping with last > week's difficult events That is such a relief to hear! Thanks Dan Monte ___ use-livecode mailing lis

Re: [BUG] Browser widget implemented without access to localStorage API

2018-05-15 Thread Monte Goulding via use-livecode
Brahma I’m fairy sure the issue you are seeing is because you have so many behaviors and libraries added via copy files and we don’t check if those files happen to be stacks that are open and are saved before we include them in the build. So it is probably the case you have changes applied but n

Re: [BUG] Browser widget implemented without access to localStorage API

2018-05-15 Thread Monte Goulding via use-livecode
If we can come up with a recipe for the IDE telling you it has saved a stack and that not being the case I’d love to fix it! Cheers Monte > On 16 May 2018, at 1:51 pm, Sannyasin Brahmanathaswami via use-livecode > wrote: > > Because in quitting, the text only text appear you have unsaved cha

Re: new library messages

2018-05-16 Thread Monte Goulding via use-livecode
> On 17 May 2018, at 1:44 pm, Mark Wieder via use-livecode > wrote: > > Looking through some of the IDE's library stacks, I see handlers for the > messages extensionInitialize and extensionFinalize. From the code in the > handlers it seems that these are now standard ways to set up and tear

Re: Should "put" to the Message Box be affected by lockMessages?

2018-05-23 Thread Monte Goulding via use-livecode
Ah… yes please report it if you haven’t yet done so. It should just be a matter of temporarily setting the MClockmessages to False before sending the message in MCB_setmsg then back to the previous state after. We do that elsewhere for things like dispatch. The result will be better than reverti

Re: Was: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY UNHAPPY

2018-05-26 Thread Monte Goulding via use-livecode
Hi Sean It is a relief to hear from you. I’m sorry if you were weirded out by the help offered. I have struggled in the past to swallow my pride and just accept help when I need it. Last year dealing with Rebecca’s cancer was a humbling experience for me in this regard. Anyway, there’s a few

Re: Was: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY UNHAPPY

2018-05-27 Thread Monte Goulding via use-livecode
> On 28 May 2018, at 2:40 am, Pi Digital via use-livecode > wrote: > > Thanks for the clarification, Monte. > > But just to clarify in return (respectfully), when I spoke of IDE changes I > was specifically referring to the Project Browser (omitted from your quote). > As the greatest exten

Re: Windows 10 and LC9.0

2018-05-27 Thread Monte Goulding via use-livecode
Hi Folks I just wanted to chime in here on a couple of things. Regarding the windows day I am trying to do as much as I can on Windows now. It’s a bit easier now that 8.x has been EOLd there’s only one toolchain to deal with. Having said that though the way we work on LiveCode and the way you w

Re: LiveCode Builder linter support for Sublime Text

2018-05-28 Thread Monte Goulding via use-livecode
Trevor this is cool. I’ve recently been evaluating Sublime Text because I find Atom often goes very slow. One little tweak to the docs you have on that branch is that the `executable` for server needs to be specified in the builder settings also otherwise it won’t find it. Cheers Monte > On

Re: mergDoc - no preview, no sharing

2018-05-29 Thread Monte Goulding via use-livecode
Hi Ralf I think there is a bug or perhaps deliberate policy change on 11.2+ that means that files from within the app bundle are not recognised correctly. Try copying files out of the bundle. Cheers Monte > On 30 May 2018, at 7:32 am, Ralf Bitter via use-livecode > wrote: > > Is there anyb

Re: Help converting Hex UTF-8 bytes to character

2018-05-31 Thread Monte Goulding via use-livecode
Hi Trevor I’m pretty sure that the following will do what you want here: textDecode(format(),”utf-8”) Cheers Monte > On 1 Jun 2018, at 6:13 am, Trevor DeVore via use-livecode > wrote: > > Hi, > > I have a text file that contains Hex UTF-8 bytes encode in the following > manner: > > ``` >

Re: Help converting Hex UTF-8 bytes to character

2018-05-31 Thread Monte Goulding via use-livecode
> On 1 Jun 2018, at 2:18 pm, Trevor DeVore via use-livecode > wrote: > > Yes it does! `format` is my new best friend. Hmm… why not just throw the whole thing at format? If it has one escape sequence it might have others and you can’t put one in there and expect a single `\` to be literal.

Re: Cropping an image

2018-05-31 Thread Monte Goulding via use-livecode
This reminds me I was looking at this stuff the other day and it’s really not a big job to add a pixelData property that is ARGB instead of the xRGB we have for imageData which would reduce the data you are dealing with if you want to set the alpha at the same time. Good community contribution

Re: Linux Screen Resolution

2018-06-13 Thread Monte Goulding via use-livecode
Hi Glen Yes our linux engine does not support pixel scaling on high dpi screens. From the looks of things we could feasibly read the environment variable `GDK_SCALE` and if set use it. Is it set for you? I have only had the briefest look at this though so there may be things I haven’t considere

Re: Open recent File Menu

2018-06-14 Thread Monte Goulding via use-livecode
> On 15 Jun 2018, at 11:25 am, Brian Milby via use-livecode > wrote: > PR submitted against develop: > https://github.com/livecode/livecode-ide/pull/1984 Just reviewed it thanks again Brian. Still wondering why it’s useful given the menu cleans out deleted stacks by itself but it seems enough

Re: Dark Mode in macOS Mojave, any thoughts from the mothership?

2018-06-14 Thread Monte Goulding via use-livecode
> On 15 Jun 2018, at 12:05 pm, Brian Milby via use-livecode > wrote: > > I'm also interested to see what they have to say. I do like the dark look > (that is how I have Atom configured and the SE in LiveCode too). > > With property inheritance, it shouldn't be too difficult to implement for

Re: LiveCode - Andoid SDK - Java compatibility chart?

2018-06-15 Thread Monte Goulding via use-livecode
Hi Folks Just to clarify as I have looked into this. Android SDK itself requires you to install Java 8 max. So while we have a bug about this in our db it’s not really fixable by us. We do have some ideas about presenting dialogs if you have the wrong one installed though. Note this mainly im

Re: Open recent File Menu

2018-06-15 Thread Monte Goulding via use-livecode
Hmm… ok then > On 16 Jun 2018, at 1:11 am, Bob Sneidar via use-livecode > wrote: > > One reason is that sometimes I have to go to a backup or archive of a stack > to revert some script or object deletion. When that happens I get 2 instances > of the recent stack, but now they are prepended by

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: LCB Foreign LC9.0.0

2018-06-29 Thread Monte Goulding via use-livecode
Hi Kevin The code folder conform to the platform id spec. https://github.com/livecode/livecode/blob/develop/docs/development/platform-id.md For iOS it will likely be universal-ios presuming you have universal b

Re: Script Only Stack Behaviors and Nesting

2018-07-02 Thread Monte Goulding via use-livecode
> On 3 Jul 2018, at 9:16 am, Bob Sneidar via use-livecode > wrote: > > That would be very cool! That would mean you could get and set the script > locals of another object. No it really wouldn’t. It would make them worse than globals… eek. Cheers Monte

Re: Script Only Stack Behaviors and Nesting

2018-07-03 Thread Monte Goulding via use-livecode
> On 4 Jul 2018, at 12:52 am, Bob Sneidar via use-livecode > wrote: > > Jacque says you can reference a behavior's script locals ie. the sLocal of > THIS ME Well you can’t actually do that so maybe Jacque is being misquoted? Cheers Monte ___ use-

Re: How to create a QR Code Version 14 (73x73modules)

2018-07-17 Thread Monte Goulding via use-livecode
Hi Matthias This looks like a relatively easy patch to make. Probably adding min version and max version optional parameters which default to 1 and 40 then using those in the loop to find the min version at line 1525 of the script. Then you just use 14,14 for the parameters. It would be great

Re: Android, acceleratedRendering and visual effect

2018-07-19 Thread Monte Goulding via use-livecode
Hi Dan This looks like a regression from the large number of acceleratedRendering related patches that went into 9.0.1 rc 1. I am looking into it as it will be a blocker for 9.0.1-rc-2. Cheers Monte > On 20 Jul 2018, at 4:13 am, Dan Friedman via use-livecode > wrote: > > Hello! > > Using

Re: Android, acceleratedRendering and visual effect

2018-07-19 Thread Monte Goulding via use-livecode
heers Monte > On 20 Jul 2018, at 9:54 am, Monte Goulding via use-livecode > wrote: > > Hi Dan > > This looks like a regression from the large number of acceleratedRendering > related patches that went into 9.0.1 rc 1. I am looking into it as it will be > a blocker fo

Re: Oauth2 (Dropbox) on iOS

2018-07-25 Thread Monte Goulding via use-livecode
> On 26 Jul 2018, at 12:54 am, Ben Rubinstein via use-livecode > wrote: > > I've been trying with some variations of this - so far without success! Hi Ben As I just commented on the bug report you should be able to resolve this using the following plist entry: NSAppTransportSecurity N

Re: OT: Looking for a new programming language?

2018-07-27 Thread Monte Goulding via use-livecode
Ahaha… are you doing the LiveCode implementation? > On 28 Jul 2018, at 2:51 am, Mark Wieder via use-livecode > wrote: > > > "But why? > Mainly because if we make Rockstar a real (and completely pointless) > programming language, then recruiters and hiring managers won't be able to > talk abo

Re: Camera on iPad error?

2018-07-30 Thread Monte Goulding via use-livecode
Very odd that it would be IPv6 related. Are you doing anything with sockets? > On 31 Jul 2018, at 10:22 am, Alan via use-livecode > wrote: > > I've submitted an app update to the Apple store and have been rejected with > the following error: > > "We discovered one or more bugs in your app whe

Re: acceleratedRendering

2018-08-01 Thread Monte Goulding via use-livecode
Hi Brahma > > I am sure it is a priority with team. Keep fingers crossed. Yes I just patched it https://github.com/livecode/livecode/pull/6620 > FWIW... acceleratedRendering in causing trouble on Android, 9.0.1. RC 1. > > Disables "touch" mess

Re: acceleratedRendering

2018-08-02 Thread Monte Goulding via use-livecode
> @team-- would it possible to send a new build out this week? Even it has > only this patch > > It is the one thing in Android that is blocking. Everything else you have > accomplished on 9.0.1 is fantastic, and I really *need* get an Android > version that works one on Google Play asap. So

Re: CEF browser question

2018-08-03 Thread Monte Goulding via use-livecode
> On 4 Aug 2018, at 2:35 am, prothero--- via use-livecode > wrote: > > As I was working on and testing the browser widget, which seemed to fail when > tested on my iPhone, I thought the problem was with the browser widget, but > it turned out to be that I was trying to link to a web site tha

Re: Move command on iOS

2018-08-03 Thread Monte Goulding via use-livecode
Hmm… I patched the crash at startup when not in acceleratedRendering mode for iOS 12. I don’t think it will have much to do with the move command in acceleratedRendering mode. I did recently fix something in acceleratedRendering mode in a stack that had a group coming in from the side that was d

Re: Move command on iOS

2018-08-03 Thread Monte Goulding via use-livecode
@Jacque there was this one also but that is visual effects only https://quality.livecode.com/show_bug.cgi?id=21434 <https://quality.livecode.com/show_bug.cgi?id=21434> > On 4 Aug 2018, at 10:18 am, Monte Goulding via use-livecode > wrote: > > Hmm… I patched the crash at s

Re: Move command on iOS

2018-08-03 Thread Monte Goulding via use-livecode
first just ended because a second move ends the first and then the object is already at the location. Perhaps log when you are doing it? > On 4 Aug 2018, at 10:40 am, Monte Goulding via use-livecode > wrote: > > @Jacque there was this one also but that is visual effects o

Re: Move command on iOS

2018-08-03 Thread Monte Goulding via use-livecode
ould just send you my >> client's stack privately. Is that okay? I'll put in a bug report regardless. >> On 8/3/18 8:27 PM, Monte Goulding via use-livecode wrote: >>> @Jacque I’ve had a look around the engine… would be interested to know if >>> you are moving

Re: Move command on iOS

2018-08-03 Thread Monte Goulding via use-livecode
DestV in 500 milliseconds >>>> I put the wait command in there to see if it made any difference but it >>>> doesn't. >>>> If the above isn't enough, it would be quicker if I could just send you my >>>> client's stack privately. Is tha

Re: Move command on iOS

2018-08-04 Thread Monte Goulding via use-livecode
> On 5 Aug 2018, at 5:00 am, J. Landman Gay via use-livecode > wrote: > > I don't quite know why my stack ran okay on Monte's phone, and my > stripped-down test with the same code ran okay in the simulator, but my real > stack failed. Weird. When I said it worked ok here I should have prob

Re: LCB - Text entry/edit in a widget

2018-08-04 Thread Monte Goulding via use-livecode
There is still some work needed to be done in order for widgets to get keyboard focus and handle key events. A much simpler and available alternative though is to create and delete a field on top of the widget as required. > On 5 Aug 2018, at 2:08 am, pink via use-livecode > wrote: > > What I

Re: valueDiff for arrays?

2018-08-04 Thread Monte Goulding via use-livecode
Just to throw it out there I still want to add `each` to filter one day. So in this case I think it would be: filter keys of tArray1 with expression \ each is among the keys of tArray2 and \ tArray1[each] is not tArray2[each] > On 5 Aug 2018, at 11:23 am, Brian Milby via use-livecode

Re: valueDiff for arrays?

2018-08-04 Thread Monte Goulding via use-livecode
> On 5 Aug 2018, at 11:59 am, Monte Goulding via use-livecode > wrote: > > Just to throw it out there I still want to add `each` to filter one day. So > in this case I think it would be: > > filter keys of tArray1 with expression \ > each is among

Re: valueDiff for arrays?

2018-08-05 Thread Monte Goulding via use-livecode
> On 5 Aug 2018, at 10:32 pm, Mark Waddingham via use-livecode > wrote: > > Geez @Monte - you do like creating work for me don't you! ;) Aha.. sorry but I have been threatening to implement this for 2 years ;-) Cheers Monte ___ use-livecode maili

Re: valueDiff for arrays?

2018-08-05 Thread Monte Goulding via use-livecode
> On 6 Aug 2018, at 12:38 am, Mark Waddingham via use-livecode > wrote: > > keeping where P -> P > keeping with P -> each matches wildcard P > keeping without P -> not (each matches wildcard P) > keeping matching P -> each matches pattern P > keeping not matching P -> not (each matches wi

Re: valueDiff for arrays?

2018-08-05 Thread Monte Goulding via use-livecode
> On 6 Aug 2018, at 7:07 am, Mark Waddingham via use-livecode > wrote: > > filter X by keeping the lines not matching pattern "regex" My point was this statement can be written as both: filter X by keeping the lines not matching pattern “regex" and filter X by discarding the lines matching

Re: valueDiff for arrays?

2018-08-05 Thread Monte Goulding via use-livecode
> On 6 Aug 2018, at 8:03 am, Mark Wieder via use-livecode > wrote: > > True, but syntacticly I like the idea of being able to place "not" in front > of any boolean without having to remember where it's legal and where it's > not. I also think it's harder on the engine (this off the top of my

  1   2   3   4   5   6   >