Re: tabbed windows in Mac - as setProp

2018-10-27 Thread Paul Hibbert via use-livecode
The menu item “View > Show Tab Bar” does show up occasionally, there does seem to be a trick to getting it to show up if it’s not there right now. I find that switching apps will sometimes return the menu item occasionally, but I seem to be able to force it to show up by switching to an app

Re: [ANN] IPA Build Tool for iOS

2018-10-27 Thread Randy Hengst via use-livecode
Sean, Thank you, thank you, thank you for making this plugin available. I’ve been working the past month to update my apps to iOS12… your plugin has been a LIFE SAVER! be well, randy www.classroomFocusedSoftware.com > On Sep 27, 2017, at 9:43 AM, Sean Cole (Pi) via use-livecode > wrote: >

Re: “Make Docset” updated to 3.1, DASH docset for LC now at 1.7.1

2018-10-27 Thread Mike Kerner via use-livecode
First of all, thanks a lot for doing this. Dash is now my default way to access the docs, on both my ipad and mac. I love it. Second, I have auto-updates turned on for both platforms, but they both show the LC docs at 1.6.1 ___ use-livecode mailing

Standalone issue ... was starting the Project Browser

2018-10-27 Thread Douglas Ruisaard via use-livecode
I've changed the subject line (from Re: starting the Project Browser) to reflect this discussion more accurately. If that's true then there's (sigh!) one more reason to stay away from LC v9... but I really don't understand the reason why this is necessary in the first place. I've never had a

Auth token + Firebase

2018-10-27 Thread Jose Enrique Montero via use-livecode
Hi, I am starting a project of an IOS / android app, and I want to use firebase for the database, but can't authenticate the users because there is no SDK for LIVECODE. I have created an OAUTH2 server that generates a token and I can validate the email / password pair through API and receive

Re: Numbering lines

2018-10-27 Thread J. Landman Gay via use-livecode
Another issue may be the line that updates the scrollbar. Try commenting out that line as a test just to see if that's the problem. If so, you might opt for a spinner or progress bar instead. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software |

Re: Standalone issue ... was starting the Project Browser

2018-10-27 Thread Brian Milby via use-livecode
If your code does things that break when called as a part of the build process, then you need to check and exit the handler before the code executes. Putting it at the end of the handler is not needed. If needed, it probably needs to go toward the top of the handler. When the IDE first

Re: is anyone able to use fileDSN for ODBC connections in LC?

2018-10-27 Thread Matthias Rebbe via use-livecode
I´ve filed a bug now. #21658 If anyone has additional comments please add them to the bug. Regards, Matthias Rebbe free tools for Livecoders: https://instamaker.dermattes.de https://winsignhelper.dermattes.de > Am 26.10.2018 um 00:33

Re: Numbering lines

2018-10-27 Thread David V Glasgow via use-livecode
Thanks Mark. What you said makes sense, but when I actually tested it, your routine is about the same as mine - 3200 lines in 106 seconds (on my fairly old MacBook). Cheers, David G > On 26 Oct 2018, at 6:41 pm, Mark Hsu via use-livecode > wrote: > > I think your issue is where you say

Re: “Make Docset” updated to 3.1, DASH docset for LC now at 1.7.1

2018-10-27 Thread Mike Kerner via use-livecode
I should say that just worked on mac (as in I manually updated). On ios, it just prompted me that there was an update and auto-updated. On Sat, Oct 27, 2018 at 8:12 PM Mike Kerner wrote: > is it because of the versioning? Anyway, thanks, that worked. > > On Sat, Oct 27, 2018 at 4:00 PM J.

Re: “Make Docset” updated to 3.1, DASH docset for LC now at 1.7.1

2018-10-27 Thread Mike Kerner via use-livecode
is it because of the versioning? Anyway, thanks, that worked. On Sat, Oct 27, 2018 at 4:00 PM J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: > And on Android it doesn't work at all, which is where I wanted to use > it. The Android build won't load user contributions. :(

Re: Numbering lines

2018-10-27 Thread Geoff Canyon via use-livecode
Converted to functions with the text and delimiter as paramaters for ease of use: -- Add "inline line numbers" [-hh fecit, 2014] function numberText T,D split T by return put "1:" && T[1] into R repeat with K = 2 to item 2 of the extents of T put cr & K & D & T[K] after R end

Re: Numbering lines

2018-10-27 Thread Geoff Canyon via use-livecode
Sorry, missed a delimiter reference: function numberText T,D split T by return put "1" & D & T[1] into R repeat with K = 2 to item 2 of the extents of T put cr & K & D & T[K] after R --> change separator here end repeat return R end numberText On Sat, Oct 27, 2018 at 5:27 PM

Re: Numbering lines

2018-10-27 Thread Geoff Canyon via use-livecode
And of course if retaining the order isn't critical you could just go with: function numberText T,D split T by cr combine T by cr and D return T end numberText function unNumberText T,D split T by cr and D combine T by cr return T end unNumberText On Sat, Oct 27, 2018 at 5:29

tabbed windows

2018-10-27 Thread Neville Smythe via use-livecode
Extraordinary thanks, Paul, you have reduced my blood pressure by 30 points. I can’t think why I so obtuse as to not think of going to a different app and then sliding from the Development menu to the View menu! Simples! ___ use-livecode mailing

Re: ?Make Docset? updated to 3.1, DASH docset for LC now at 1.7.1

2018-10-27 Thread James Hale via use-livecode
>From Mike > First of all, thanks a lot for doing this. Dash is now my default way to > access the docs, on both my ipad and mac. I love it. > Second, I have auto-updates turned on for both platforms, but they both > show the LC docs at 1.6.1 I am glad it is useful. I to really like the

how to properly use the fullscreenmode and screen scaling

2018-10-27 Thread Mike for GDC via use-livecode
Hello, I am new to LC and have learned much so far but I am having an issue with the proper scaling of my app on different size screens. I have created the app with the dimensions of 913 w X 636 h. All looks great on the desktop. When I deploy it to my 8 inch Samsung Tab A (Android) it

Re: Numbering lines

2018-10-27 Thread hh via use-livecode
1. Besides removing scroll-update, which takes most of the time, you could try the following array-methods (which are essentially from my stack http://forums.livecode.com/viewtopic.php?p=101301#p101301 , see there card "LineNums, tab "Nb2"). This needs here on a medium fast machine (Mac mini,

Re: Standalone issue ... was starting the Project Browser

2018-10-27 Thread J. Landman Gay via use-livecode
On 10/27/18 10:26 AM, Douglas Ruisaard via use-livecode wrote: If that's true then there's (sigh!) one more reason to stay away from LC v9... but I really don't understand the reason why this is necessary in the first place. I've never had a standalone fail with a "can't find stack" error:

Re: “Make Docset” updated to 3.1, DASH docset for LC now at 1.7.1

2018-10-27 Thread Ron Metzker via use-livecode
Hi Mike, You have to chose the user contributed docs and do a check for updates. I did it yesterday. Mine is also set on auto update but it seems to only work on the main docset. Best Regards, Ron > On Oct 27, 2018, at 6:45 AM, Mike Kerner via use-livecode > wrote: > > First of all, thanks

Re: “Make Docset” updated to 3.1, DASH docset for LC now at 1.7.1

2018-10-27 Thread J. Landman Gay via use-livecode
And on Android it doesn't work at all, which is where I wanted to use it. The Android build won't load user contributions. :( On 10/27/18 2:24 PM, Ron Metzker via use-livecode wrote: Hi Mike, You have to chose the user contributed docs and do a check for updates. I did it yesterday. Mine is