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: Working with AWS S3 commands

2024-02-13 Thread Monte Goulding via use-livecode
ws.com <https://s3.amazonaws.com/> . It’s possible if you are using a newer region that AWS isn’t supporting the older endpoint style on it. Let me know how you go with that. Cheers Monte > On 14 Feb 2024, at 3:50 pm, Peter Bogdanoff via use-livecode > wrote: > > Hi all, >

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

Re: PDF Widget No Filled Forms

2023-09-27 Thread Monte Goulding via use-livecode
r form interactivity at the moment so the select text is on the PDF text rather than the form fields. Cheers Monte > On 28 Sep 2023, at 9:58 am, Bob Sneidar via use-livecode > wrote: > > Nope. Not only that, but the autoHilite (Select Text) is

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

Re: OAuth2 broken in LC 10 (dp6)

2023-09-07 Thread Monte Goulding via use-livecode
be most helpful. Just change the client id and secret so it is different but conforms to the same pattern as you are using. If you can launch the url in your browser and copy the url the browser is trying to open that would be helpful but we can do that once we have the parameters. Thanks Monte

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

Re: LC and Universal Links

2023-03-21 Thread Monte Goulding via use-livecode
for the domain urls. Cheers Monte > On 16 Mar 2023, at 5:14 am, Dan Friedman via use-livecode > wrote: > > I know that LC supports Custom URLs… I have used on both iOS and Android and > it works great! But it looks like there is a new method, “Universal Links”

Re: REGRESSION in LC 9.6.9rc2

2023-03-07 Thread Monte Goulding via use-livecode
Hi Paul RC3 is not far off and both Kevin and Mark are already very keen to get it out already. I believe there are arrangements for access to internal builds, however, I’m not sure of the fees involved. Might be best to query Heather on that. Cheers Monte > On 8 Mar 2023, at 8:38 am, P

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 <https://quality.livecode.com/show_bug.cgi?id=24003> Cheers Monte > On 8 Mar 2023, 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: > >

Re: Widget properties

2022-04-06 Thread Monte Goulding via use-livecode
p the existing means of extracting > widget properties to "the properties”? I don’t think it would be particularly tricky to iterate the exported property definitions to come up with a list of property names then turn that into a key/value array. Whether it would provide the utility

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

Re: Widget properties

2022-04-06 Thread Monte Goulding via use-livecode
report is it could be changed to a docs bug and resolved by deprecating the properties, adding a note about the lack of widget support and the import/export command that can be used there and perhaps opening a feature request to support other objects in import/export. Cheers Monte > On 6

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: &

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

2021-12-22 Thread Monte Goulding via use-livecode
example of using the currentDestination though: local tDest put "goto" into tDest["type”] put "Fit" into tDest["mode”] put 3 into tDest["page”] set the currentDestination of widget “pdf" to tDest Cheers Monte > On 23 Dec 2021, at 4:24 am, Keith Clark

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 > >

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.

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

2021-12-12 Thread Monte Goulding via use-livecode
Both the page and character index are clamped to the number of pages and characters on a page so you could set both to very high numbers. Adding character counts to the documentPages property might be useful here too. Cheers Monte > On 13 Dec 2021, at 11:17 am, Paul Dupuis via use-livec

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

2021-12-12 Thread Monte Goulding via use-livecode
of XPDF so it’s worthwhile anyone still using XPDF to take the time to audit their use and see if there’s any extra features required. If so please create feature requests for them. While XPDF will continue to function we intend to stop including it in LiveCode. Cheers Monte > On 12 Dec 2

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,

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 mergAVCamBarcodeTyp

Re: Rust

2021-04-28 Thread Monte Goulding via use-livecode
by following the directions there. Cheers Monte ___ 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-livecode

Re: Array Split vs Combine

2021-03-10 Thread Monte Goulding via use-livecode
to it can use a different strategy. Anyway, I’m actually only guessing at the problem so best to create an issue from which we can create a benchmark test. Cheers Monte > On 11 Mar 2021, at 1:28 pm, Sean Cole (Pi) via use-livecode > wrote: > > Monte, > Would it be possible to precalc

Re: Array Split vs Combine

2021-03-10 Thread Monte Goulding via use-livecode
need to chime in on whether growing the buffer exponentially would be suitable. It would result in more memory being allocated than necessary but much less frequent allocations so it depends on what’s most costly as memory gets cheaper. Cheers Monte > On 11 Mar 2021, at 11:34 am, Sean Cole

Re: S3 Compatible?

2021-02-24 Thread Monte Goulding via use-livecode
...@livecode.com <mailto:supp...@livecode.com> about your needs and discuss how they could be pushed higher up our todo list. Cheers Monte > On 25 Feb 2021, at 5:51 am, Tom Glod via use-livecode > wrote: > > Hi Folks, > > I'm really annoyed at the moment realiz

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 lin

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 <mailto: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 Merge

Re: Ali or Monte - MimeEncodeAsMIMEMultipartDocument

2021-01-03 Thread Monte Goulding via use-livecode
t’s nothing to do with the library. See tsNet recipients list for that. Cheers Monte > On 29 Dec 2020, at 3:18 am, Sean Cole (Pi) via use-livecode > wrote: > > Hi all, > > The dictionary, as usual, is a bit lacking in regards to the Mime Library. > For MimeEncodeAsMIMEMultip

Re: mergeJSON on server problem

2020-11-02 Thread Monte Goulding via use-livecode
mat("[ \"\\u00a0\" ]") into tJSON; get JSONToArray(tJSON); put tJSON && it[1] Cheers Monte ___ 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-livecode

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

Re: Livecode S3 library for AWS compatible object store

2020-09-23 Thread Monte Goulding via use-livecode
rivial patch. FWIW I just opened this issue after reminding myself how we build the endpoint https://quality.livecode.com/show_bug.cgi?id=22917 Cheers Monte > On 24 Sep 2020, at 5:28 am, Mark Clark via use-livecode > wrote: > > Hello, I have been away from LC for a while and n

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

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: LC9.6 Android EXIF image data issue

2020-05-12 Thread Monte Goulding via use-livecode
be there (depending on what the camera app does). Cheers Monte > On 13 May 2020, at 11:39 am, Alan Stenhouse via use-livecode > wrote: > > There seems to be an issue with getting EXIF data from images using > mobilePickPhoto on Android (well, at least new Samsung mobile phones). > > I

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

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: [ANN] Release 9.6.0 RC-1

2020-05-11 Thread Monte Goulding via use-livecode
but compact and regular width/height categories. Cheers Monte > On 12 May 2020, at 12:55 pm, Ralph DiMola via use-livecode > wrote: > > Monte, > > Thanks for the reply! But the problem I have is I want to match pixel for > pixel the splash page with the first card on all d

Re: [ANN] Release 9.6.0 RC-1

2020-05-11 Thread Monte Goulding via use-livecode
and landscape you would need a square image. As the image is not scaled you would need to update it if Apple releases a larger device. Cheers Monte > On 12 May 2020, at 1:51 am, panagiotis merakos via use-livecode > wrote: > > Hello Ralph, > > I'll leave this for Mon

Re: mergAV Select specific rear camera

2020-04-30 Thread Monte Goulding via use-livecode
depending on the zoom factor. If you would like to open a report about this so it gets prioritised that would be great. Cheers Monte > On 1 May 2020, at 7:51 am, Andrew at MidWest Coast Media via use-livecode > wrote: > > The only devices that are returned by mergAVCamGet(“v

Re: md5Digest gives different results Mac vs Windows LC 9.5.1

2020-04-19 Thread Monte Goulding via use-livecode
A3-256"), tHash); put tHash Cheers Monte > On 20 Apr 2020, at 10:14 am, Bill Vlahos via use-livecode > wrote: > > The LiveCode Dictionary states: > When generating a messageDigest for a string, it is a good idea to encode it > to binary data using the textEncode <&

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

Re: Video format for mobile

2020-04-13 Thread Monte Goulding via use-livecode
ood.) Hmm… I only needed to change the url to https here. > > Sorry you had to spend time on this, especially since Panos beat you to it. Actually it’s good that we have had a chance to identify an improvement we can make to the standalone builder. Cheers Monte ___

Re: a QR Code reader for iOS and Android?

2020-04-13 Thread Monte Goulding via use-livecode
using QR codes (assuming QR codes are supported by > ios for scanning). Yes they are Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://l

Re: a QR Code reader for iOS and Android?

2020-04-13 Thread Monte Goulding via use-livecode
ndroid barcode scanner widget to be cross platform. Cheers Monte ___ 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-livecode

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

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-12 Thread Monte Goulding via use-livecode
>> Not specifically as yet I don't think - Monte noticed some issues late last >> week, and is the progress of fixing them. I've asked him to chime in when >> he's back to work :) > > Thanks, that's good. I can give him a link to one of my videos that doesn't > work

Re: Speech on Android

2020-04-02 Thread Monte Goulding via use-livecode
nizable names like > nl-nl-x-lgc-network or nl-nl-x-dma-local, how can we change this like > male-female or with names like Hans-Cynthia-Ben-Susan Unfortunately Android does not appear to have any user friendly names for voices. Cheers Monte ___ u

Re: Targeting iOS 5.1

2020-03-05 Thread Monte Goulding via use-livecode
is in the release notes which you can download from https://downloads.livecode.com/livecode/ <https://downloads.livecode.com/livecode/> I’d take a stab at LiveCode 6.7.11 Cheers Monte > On 6 Mar 2020, at 10:12 am, Ben Rubinstein via use-livecode > wrote: > > We've got some first gener

Re: LC Server: shebang breaks tags?

2020-02-10 Thread Monte Goulding via use-livecode
uld be useful. Perhaps the engine could maintain a stack of compiled server style scripts like it does for regex. I’m not overly sure it adds a great deal to the platform though. Probably use cases for this are better served my multi-line string literals. Cheers Monte _

Re: LC Server: shebang breaks tags?

2020-02-09 Thread Monte Goulding via use-livecode
ld generate the same output as: FooBar You can see why this is necessary if you consider that you don’t want the engine to output the shebang line. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url t

Re: Remote Debugger 9.6dp1?

2019-12-01 Thread Monte Goulding via use-livecode
Is the iPhone on the same local network as IDE? > On 1 Dec 2019, at 1:27 pm, Sannyasin Brahmanathaswami via use-livecode > wrote: > > I have Remote Debugger in the inclusions for making a mobile standalone > The Development Menu has checked "Script Debug Mode" > > I put an explicit

Re: mergAV and AVkit

2019-11-27 Thread Monte Goulding via use-livecode
mergAV has already supported this for a while. You set the microphone to empty before creating the camera. It is in the docs for mergAVCamCreate. > On 28 Nov 2019, at 5:30 am, Andrew Bell via use-livecode > wrote: > > I'm excited to see that the switch to AVkit in LC 9.6 fixes the bug where

Re: Does anyone know...

2019-09-26 Thread Monte Goulding via use-livecode
Perhaps create a bug report with the document attached etc. > On 26 Sep 2019, at 11:15 pm, Paul Dupuis via use-livecode > wrote: > > Thank you Monte! > > I ask because a text document we're working with word counting and word > searching was returning odd results for a

Re: Does anyone know...

2019-09-25 Thread Monte Goulding via use-livecode
We currently use ICU 58.2 which looks to be Unicode 9.0 + some extras http://site.icu-project.org/download/58 > On 26 Sep 2019, at 7:50 am, Paul Dupuis via use-livecode > wrote: > > ... how often the Unicode engine/rules are updated in LiveCode? For

Re: high resolution when printing to pdf, either from images or pdf widgets

2019-08-28 Thread Monte Goulding via use-livecode
> On 28 Aug 2019, at 5:07 pm, Mark Waddingham via use-livecode > wrote: > > I'm not entirely clear what Monte meant by 'print to pdf directly' in one > of those comments.. Ah I was talking about printing the PDF file directly. May have been before I realised there needed to

Re: Datagrid2 Form view slow down.

2019-08-23 Thread Monte Goulding via use-livecode
should >> not be moving. My DataGrid is not in any other container so sits directly on >> the card. And it has all of the properties listed in my previous mail. >> >> Sean Cole >> Pi Digital Prod Ltd >> >>> On 23 Aug 2019, at 03:36, Monte Gould

Re: Datagrid2 Form view slow down.

2019-08-23 Thread Monte Goulding via use-livecode
) so either one of the properties of the main datagrid group is causing an issue or the acceleratedRendering of the stack isn’t true (this will cause the effective layerMode to always return static). Cheers Monte ___ use-livecode mailing list use-livecode@l

Re: Datagrid2 Form view slow down.

2019-08-22 Thread Monte Goulding via use-livecode
;O2AccountsGrid" > textSize > cantDelete false > textFont > unboundedVScroll false > disabled false > unboundedHScroll false > *colorOverlay* > altId 0 > hiliteColor > behavior button id 1005 of stack "revDataGridLibrary" > borderColor 64,64,64 > *

Re: Datagrid2 Form view slow down.

2019-08-22 Thread Monte Goulding via use-livecode
boolean properties in that list you want them false. Cheers Monte ___ 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-livecode

Re: Unicode is not "everywhere"...

2019-08-22 Thread Monte Goulding via use-livecode
tps://quality.livecode.com/show_bug.cgi?id=14015 > <https://quality.livecode.com/show_bug.cgi?id=14015> that your references > Monte. However, I now consider that urlEncode and urlDecode are NOT broken > and bug 14015 is really a Documentation bug that the urlEncode and urlDecod

Re: Datagrid2 Form view slow down.

2019-08-22 Thread Monte Goulding via use-livecode
handy to have an indicator on the property inspector about whether there’s an issue with these properties in the object hierarchy. It wouldn’t be that complicated, just recurse through the owner groups and check these properties. Cheers Monte ___ u

Re: Datagrid2 Form view slow down.

2019-08-22 Thread Monte Goulding via use-livecode
> On 23 Aug 2019, at 12:27 am, Sean Cole (Pi) via use-livecode > wrote: > > Hi Monte, > > Many thanks for your response. I don't know how I had inferred that I was > using mobile as this is ONLY for PC Desktop and HTML5 emscripten running in > Chrome on a PC Desktop

Re: Unicode is not "everywhere"...

2019-08-22 Thread Monte Goulding via use-livecode
esolve the detailed files/folders issue is to have a new parameter for the files and folders function to return an array. Anyone want to suggest a name for the parameter? Cheers Monte > On 23 Aug 2019, at 1:37 am, Paul Dupuis via use-livecode > wrote: > > I have fil

Re:

2019-08-21 Thread Monte Goulding via use-livecode
said that I see you are posting on the HTML5 forum about mobile performance. Are you talking about HTML5 on mobile or did you just post to the wrong forum? Cheers Monte > On 22 Aug 2019, at 11:32 am, Sean Cole (Pi) via use-livecode > wrote: > > Hi All > > I posted this up

Re: [ANN] Release 9.5.0 RC-1

2019-07-25 Thread Monte Goulding via use-livecode
> On 26 Jul 2019, at 6:53 am, Pi Digital via use-livecode > wrote: > > And a big thank you to Monte for all the work he’s put into these libraries > for us. Barcode scanning for android is a very welcome addition. Actually thank Michael for this one ;-)

Re: mobileSetKeyboardDisplay

2019-07-22 Thread Monte Goulding via use-livecode
Could you open a report about the issue with an example stack please. Thanks Monte > On 23 Jul 2019, at 1:01 pm, Dan Friedman via use-livecode > wrote: > > First, may I say that mobileSetKeyboardDisplay is a beautiful thing! This is > a game-changer in working with data in m

Re: PDF Widget

2019-06-24 Thread Monte Goulding via use-livecode
ferent into a printing context than it does normally. Cheers Monte > On 25 Jun 2019, at 6:33 am, Tom Glod via use-livecode > wrote: > > nope thats the way. makes sense that it works that way. > > On Mon, Jun 24, 2019 at 4:26 PM Paul Dupuis via use-livecode < > use-livecode@lists

Re: Filter an array by content

2019-06-20 Thread Monte Goulding via use-livecode
Hi Jacque, does the output also need to be a sequential numeric array? If so then no variant of the filter command will help. If not then can’t you `filter elements of theArray with “*foobar*”``? It would be a nice addition to filter elements to have `as sequence` or something so the result had

Re: Visual Studio 2017 to the rescue

2019-06-11 Thread Monte Goulding via use-livecode
Thanks Mark! Will sort it out ASAP > On 12 Jun 2019, at 8:06 am, Mark Talluto via use-livecode > wrote: > > I reported the bug: https://quality.livecode.com/show_bug.cgi?id=22169 > <https://quality.livecode.com/show_bug.cgi?id=22169> > > -Mark > >>

Re: Visual Studio 2017 to the rescue

2019-06-10 Thread Monte Goulding via use-livecode
Yes this does indeed sound like a bug so if you could report it that would be great. > On 11 Jun 2019, at 2:11 am, Trevor DeVore via use-livecode > wrote: > > On Mon, Jun 10, 2019 at 10:19 AM Mark Talluto via use-livecode < > use-livecode@lists.runrev.com> wrote: > >> Hello Friends, >> >>

Re: Line Graph Widget - Plotting time series

2019-06-04 Thread Monte Goulding via use-livecode
No the line graph widget only treats the X axis values as labels to be evenly spaced along the axis. It would be nice to add a way to scale the X axis value along the chart so that it is a scatterplot then a way to format the values on both/either axes as time/date/decimal precision etc. > On

Re: critical: new pdf widget causes stack to crash when opening

2019-05-31 Thread Monte Goulding via use-livecode
Hi Richard Have you tried setting the filename or filedata of the offending widget to empty before going to the card? It sounds like there is something in one of your PDFs that PDFium doesn’t like. Either way we really need that stack to figure this one out. Cheers Monte > On 1 Jun 2

Re: slow slower slowest scroll on Android

2019-05-29 Thread Monte Goulding via use-livecode
renthesis after the target name in the menu. https://quality.livecode.com/show_bug.cgi?id=22114 <https://quality.livecode.com/show_bug.cgi?id=22114> Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to s

Re: Setting mobile scroller hScroll fails

2019-05-29 Thread Monte Goulding via use-livecode
> On 30 May 2019, at 5:01 am, J. Landman Gay via use-livecode > wrote: > > Thanks Monte, I did over-summarize. I'm not sure why it's going wrong, but it > sounds like it's something I'm doing. I have a standard "createScroller" > handler that I've been using f

Re: Ken Burns Effects - acceleratedRendering

2019-05-28 Thread Monte Goulding via use-livecode
background objects or perhaps one or more scrolling layers which can cycle through their content at different rates. FWIW I suspect Mark may correct me on some of what I’ve said here but hopefully I’m not too far wrong. Cheers Monte ___

Re: Setting mobile scroller hScroll fails

2019-05-28 Thread Monte Goulding via use-livecode
Hi Jacque I’m thinking you are over summarising what you are doing here. For example, I expect you mean to set the hScroll of the group to the formattedWidth - the width of the group. Are you setting the contentRect appropriately before setting the hScroll of the scroller? Cheers Monte

Re: slow slower slowest scroll on Android

2019-05-28 Thread Monte Goulding via use-livecode
dorned. Cheers Monte ___ 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-livecode

Re: Why such a large external folder on Windows?

2019-05-23 Thread Monte Goulding via use-livecode
CEF is large. On mac we use the system browser. > On 23 May 2019, at 5:56 am, Glen Bojsza via use-livecode > wrote: > > Hello, > > I took a very basic app that has a browser widget and made a standalone for > OS X and Windows in LC 9.0.5 > > I was shocked that the Windows standalone has an

Re: 9.5 DP 1 Unadorned - LayerMode - Container

2019-05-23 Thread Monte Goulding via use-livecode
he dictionary. >> It is still written in "deep-in-the-engine-jungle-geek-speak" >> >> For us lay people, we need a few more words. E.g. >> >> layerMode >> >> What does "unadorned" mean? > > > My understanding is that the group mu

Re: Failure to build on Android.

2019-05-16 Thread Monte Goulding via use-livecode
uot;rotationTest9.livecode" on the phone at the same > time > > Once I deleted "rotationTest9.livecode", then "myApp.app" was installed > without errors. > > BR > > On 5/16/19, 11:23 AM, "use-livecode on behalf of Monte Goulding

Re: Seeking confirmation of a bug...

2019-05-16 Thread Monte Goulding via use-livecode
> On 17 May 2019, at 7:29 am, Monte Goulding via use-livecode > wrote: > >> I just added an updated test stack that showed another issue of only a >> single file type is specified. If you have have a chance could you check >> that the fix addresses that use case

Re: Seeking confirmation of a bug...

2019-05-16 Thread Monte Goulding via use-livecode
> On 17 May 2019, at 6:25 am, Paul Dupuis via use-livecode > wrote: > > Thank you Monte! > > I just added an updated test stack that showed another issue of only a single > file type is specified. If you have have a chance could you check that the > fix address

Re: Failure to build on Android.

2019-05-16 Thread Monte Goulding via use-livecode
I think it’s complaining the version of your app is lower that the installed version. Perhaps either bump it up or manually delete the installed version. > On 17 May 2019, at 6:42 am, Sannyasin Brahmanathaswami via use-livecode > wrote: > > Less that 36 hour went by, when I could build on

Re: Seeking confirmation of a bug...

2019-05-16 Thread Monte Goulding via use-livecode
https://github.com/livecode/livecode/pull/7056 <https://github.com/livecode/livecode/pull/7056> > On 17 May 2019, at 5:43 am, Monte Goulding via use-livecode > wrote: > > Hi Paul > > I can confirm it is broken. I’ll patch it this morning. If it has been broken

Re: Seeking confirmation of a bug...

2019-05-16 Thread Monte Goulding via use-livecode
Hi Paul I can confirm it is broken. I’ll patch it this morning. If it has been broken at some point during the refactor as the blame commit hash is a merge at that time. It’s an easy fix though which is good ;-) Cheers Monte > On 17 May 2019, at 5:26 am, Paul Dupuis via use-livec

Re: return with ?

2019-05-15 Thread Monte Goulding via use-livecode
Yes it puts the `with` value into the urlResult. It is deliberately not documented so up for change if necessary so I wouldn’t recommend using it. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to sub

Re: return with ?

2019-05-15 Thread Monte Goulding via use-livecode
lause is something specifically for libURL which ends up setting the urlResult. Cheers Monte ___ 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-livecode

Re: Android needs 64 bit builds

2019-05-13 Thread Monte Goulding via use-livecode
The PIC issue will not be resolved for dp 1 as it doesn’t impact our toolchains on travis or vulcan and as Mark pointed out there’s a workaround. > On 14 May 2019, at 10:25 am, Brian Milby via use-livecode > wrote: > > Yes, building against develop. > Using gcc 7.4.0 > > This was a laptop I

Re: Notarization & hardening for macOS non-App Store Apps?

2019-05-09 Thread Monte Goulding via use-livecode
> On 10 May 2019, at 10:49 am, kee nethery via use-livecode > wrote: > > > >> On May 9, 2019, at 5:42 PM, Monte Goulding via use-livecode >> mailto:use-livecode@lists.runrev.com>> wrote: >> >> Looks like the hardened runtime needs —options=r

Re: Notarization & hardening for macOS non-App Store Apps?

2019-05-09 Thread Monte Goulding via use-livecode
Looks like the hardened runtime needs —options=runtime https://developer.apple.com/documentation/security/notarizing_your_app_before_distribution/resolving_common_notarization_issues?language=objc

Re: Question for LCB FFI workshop attendees at upcoming conference

2019-05-07 Thread Monte Goulding via use-livecode
> On 8 May 2019, at 9:25 am, Mark Wieder via use-livecode > wrote: > > On 5/7/19 4:06 PM, Monte Goulding via use-livecode wrote: >>> On 8 May 2019, at 2:36 am, Mark Wieder via use-livecode >>> wrote: >>> >>> is just too unreadable, unma

Re: Question for LCB FFI workshop attendees at upcoming conference

2019-05-07 Thread Monte Goulding via use-livecode
esher/primer before entering the workshop can get one. Cheers Monte ___ 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/

Re: Android needs 64 bit builds

2019-05-06 Thread Monte Goulding via use-livecode
> On 7 May 2019, at 3:08 am, Mark Wieder via use-livecode > wrote: > > On 5/5/19 9:52 PM, Monte Goulding via use-livecode wrote: >>> On 6 May 2019, at 12:18 pm, Mark Wieder via use-livecode >>> wrote: >>> >>>> Most new device

Re: Android needs 64 bit builds

2019-05-05 Thread Monte Goulding via use-livecode
cessors but did not include the arm64 OS >> libraries so only load armv7 binaries. These are generally low end devices. > > Any chance we can leverage this to create a raspberry pi LC build? Not unless the pi is running android. Cheers Monte ___

Re: Android needs 64 bit builds

2019-05-05 Thread Monte Goulding via use-livecode
> On 4 May 2019, at 3:45 am, JJS via use-livecode > wrote: > > @Monte. I only see Atom x64 ARM for Android 7.1.1 in the SDK list in Android > Studio. For all the higher Android versions i only see x86 and no ARM. I > don't know if there are phones sold which have A

Re: Android needs 64 bit builds

2019-05-02 Thread Monte Goulding via use-livecode
lone builder. Cheers Monte ___ 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-livecode

Re: Engine: Socket limit?

2019-04-26 Thread Monte Goulding via use-livecode
/Forums/en-US/69449ce9-ea58-48ec-b675-c55480ba4bbb/windows-server-2012-and-tcpip-maxuserport?forum=winserverPN <https://social.technet.microsoft.com/Forums/en-US/69449ce9-ea58-48ec-b675-c55480ba4bbb/windows-server-2012-and-tcpip-maxuserport?forum=winserverPN> Cheers Monte > On 26 Apr 2

Re: MouseMove less responsive in 9.0.4

2019-04-03 Thread Monte Goulding via use-livecode
I’m not sure why there would be a change in speed for editing a group but I thought it might be helpful to suggest just using the relayer command here: on mouseEnter if the tool is “browse tool” then relayer me to front of owner end if end mouseEnter > On 3 Apr 2019, at 10:43 pm,

  1   2   3   4   5   6   7   8   9   10   >