Re: Which git service suits a LiveCoder best?

2020-04-23 Thread Mark Wieder via use-livecode
On 4/23/20 9:04 PM, Brian Milby via use-livecode wrote: New dedicated repo is located at: https://github.com/bwmilby/scriptTracker Oh, cool. I'll change my git remote. -- Mark Wieder ahsoftw...@gmail.com ___ use-livecode mailing list

Re: Which git service suits a LiveCoder best?

2020-04-23 Thread Brian Milby via use-livecode
New dedicated repo is located at: https://github.com/bwmilby/scriptTracker Thanks, Brian On Apr 24, 2020, 12:02 AM -0400, Mark Wieder via use-livecode , wrote: > On 4/23/20 6:58 PM, Brian Milby via use-livecode wrote: > > My scriptTracker plugin is an easy way to get the scripts out as text

Re: Which git service suits a LiveCoder best?

2020-04-23 Thread Mark Wieder via use-livecode
On 4/23/20 6:58 PM, Brian Milby via use-livecode wrote: My scriptTracker plugin is an easy way to get the scripts out as text files for use with git (binary stack stays the same, plugin can automatically export scripts on every save of the stack) Which, if you can deal with the sluggishness

Re: Which git service suits a LiveCoder best?

2020-04-23 Thread Brian Milby via use-livecode
My scriptTracker plugin is an easy way to get the scripts out as text files for use with git (binary stack stays the same, plugin can automatically export scripts on every save of the stack) Thanks, Brian On Apr 23, 2020, 9:20 PM -0400, doc hawk via use-livecode , wrote: > Andreas announced, >

Re: Which git service suits a LiveCoder best?

2020-04-23 Thread doc hawk via use-livecode
Andreas announced, > Thanks everyone for your feedback and insights. Nothing speaks against > GitHub, it seems, so I’ll give that a try then. I’m curious though: *how* are you gong to do this? Don’t you need to reduce the stacks to text files first?

Re: Widget Properties

2020-04-23 Thread scott--- via use-livecode
Hello Graham, Sorry if I missed this earlier but, what made you go with a button widget rather than just using a standard LiveCode button? — Scott > On Apr 23, 2020, at 9:41 AM, Graham Samuel via use-livecode > wrote: > > I am getting rather fed up with the widgets I’ve been trying to use

Re: Which git service suits a LiveCoder best?

2020-04-23 Thread Andreas Bergendal via use-livecode
Thanks everyone for your feedback and insights. Nothing speaks against GitHub, it seems, so I’ll give that a try then. Andreas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Widget Properties

2020-04-23 Thread Graham Samuel via use-livecode
I am getting rather fed up with the widgets I’ve been trying to use for my mobile app. For example, the iOS button widget (a press button, not a switch) has so few properties that you can’t change the colour of the text in any way I could see and sometimes mine turn out blue or red for no

Re: Is there a general mobile picker available?

2020-04-23 Thread Graham Samuel via use-livecode
Thanks Klaus and Ben! It’s easy to miss stuff, then one feels stupid. I can’t immediately remember what an “options” menu is, or how to invoke one, so I’ll just go with a simple ‘mobilepick’ for now. Graba > On 23 Apr 2020, at 17:18, Ben Rubinstein via use-livecode > wrote: > > Also, a

Re: Native Switch Button?

2020-04-23 Thread Ben Rubinstein via use-livecode
Hi Graham - I can't answer this in detail, but I have used the native switchbutton widget, a bit, without seeing any problem of the kind you describe. I'm catching the hiliteChanged message in the widget itself, not in the card script, for what that's worth. (By the way, it scales - it's just

Re: Is there a general mobile picker available?

2020-04-23 Thread Ben Rubinstein via use-livecode
Also, a standard LiveCode "Options" menu renders as a native picker on iOS (not sure about Android). This is convenient, because it works in a sensible way on desktop, and in a native way on iOS. Of course, it looks like a shitty motif button until the user touches it... On 23/04/2020 13:48,

Re: Mobile text input mystery

2020-04-23 Thread panagiotis merakos via use-livecode
You're welcome, Graham - thanks for the follow up. I'll make sure we add a note about this simulator keyboard trick in the dictionary. Kind regards, Panos -- On Thu, 23 Apr 2020 at 15:33, Graham Samuel via use-livecode < use-livecode@lists.runrev.com> wrote: > Thanks a million, Panos, it all

Re: Is there a general mobile picker available?

2020-04-23 Thread Klaus major-k via use-livecode
Hi Graham, > Am 23.04.2020 um 14:39 schrieb Graham Samuel via use-livecode > : > > Another mobile question: > > We have a Native Date Picker, and a Native Time Picker, but what about a > picker where you construct your own picking list? I would like to use a > picker on iOS to replace radio

Is there a general mobile picker available?

2020-04-23 Thread Graham Samuel via use-livecode
Another mobile question: We have a Native Date Picker, and a Native Time Picker, but what about a picker where you construct your own picking list? I would like to use a picker on iOS to replace radio buttons, but I don’t know a way to do it. Have I just missed it, or isn’t it possible?

Re: Mobile text input mystery

2020-04-23 Thread Graham Samuel via use-livecode
Thanks a million, Panos, it all works! Apart from the simulator keyboard trick, I can’t see immediately what I did wrong. Probably haven’t got time to crawl over it now… obviously I can use this as a model in any part of the app that needs it. Thanks again Graham > On 23 Apr 2020, at 13:39,

Re: Mobile text input mystery

2020-04-23 Thread Graham Samuel via use-livecode
Sorry Panos, my short email crossed with your long one. I am trying all your suggestions now! Graham > On 23 Apr 2020, at 13:39, panagiotis merakos via use-livecode > wrote: > > Hello Graham, > > The following works as expected for me: > > on opencard > global gInputID > if

Re: Mobile text input mystery

2020-04-23 Thread Graham Samuel via use-livecode
Just tried it after switching to LC9.6.0 DP4 - no change. I’m keen to see if you can indeed reproduce it. Graham > On 23 Apr 2020, at 13:03, panagiotis merakos via use-livecode > wrote: > > Hello Graham, > > Oh, ignore my previous comment about mobileControlDo , "focus", > as this bug

Re: Mobile text input mystery

2020-04-23 Thread panagiotis merakos via use-livecode
Hello Graham, The following works as expected for me: on opencard global gInputID if environment() = "mobile" then mobileControlCreate "input" -- so the user can type in put the result into gInputID answer "opening text field for input. ID created is:" && gInputID

Re: Mobile text input mystery

2020-04-23 Thread panagiotis merakos via use-livecode
Hello Graham, Oh, ignore my previous comment about mobileControlDo , "focus", as this bug affected Android only. I'll try to reproduce the recipe here and see if I get the same problem. Kind regards, Panos -- On Thu, 23 Apr 2020 at 13:54, panagiotis merakos wrote: > Hello Graham, > > > > >

Re: Mobile text input mystery

2020-04-23 Thread panagiotis merakos via use-livecode
Hello Graham, *> but despite executing> > mobileControlSet "FRadiusText", "keyboardType", "numeric"> mobileControlDo "FRadiusText", "focus"> > following what the LC Dictionary says , I do not see the soft keyboard* This will not work in LC 9.5.1 - it is an old bug that is fixed in LC 9.6

Re: Native Switch Button?

2020-04-23 Thread Graham Samuel via use-livecode
To add to my query below, there’s something even more strange. In my beta app there is a card with three Native Switch Buttons on it (they all have different names). i have another test card, as described before, with its own switch. When a button script on yet another card executes a ‘go' to

Native Switch Button?

2020-04-23 Thread Graham Samuel via use-livecode
Is anyone using the Native Switch Button? It looks OK (a bit big on my iOS simulator, but it will do) and it works - although the insanity of spelling “highlight” two ways in the one object is apparent - but running an experiment just now in which I go to a card with such an on object on it and

Re: Android Release Requires 21 but 911 Devices Get Dropped?

2020-04-23 Thread Ben Rubinstein via use-livecode
On 17/04/2020 20:58, Ralph DiMola via use-livecode wrote: From the release notes: 4.x support is dropped. That represents 5% of all active installs but may be a higher percentage of devices. It very much depends where you're looking (or more to the point, where you're looking to distribute).