Re: Inconsistent comma requirements

2017-06-25 Thread Monte Goulding via use-livecode
> On 26 Jun 2017, at 4:05 pm, hh via use-livecode > wrote: > >> I have seen it before in user scripts but never used it myself. >> It’s one of those things you discover (like when {} could be used >> interchangeably with []) that you quickly realise you should never >> rely on so you forget pre

Re: Inconsistent comma requirements

2017-06-25 Thread Mark Waddingham via use-livecode
On 2017-06-26 08:05, hh via use-livecode wrote: Monte wrote: I have seen it before in user scripts but never used it myself. It’s one of those things you discover (like when {} could be used interchangeably with []) that you quickly realise you should never rely on so you forget pretty quickly ;-

Re: Inconsistent comma requirements

2017-06-25 Thread Mark Waddingham via use-livecode
On 2017-06-26 01:42, Monte Goulding via use-livecode wrote: On 25 Jun 2017, at 1:37 am, Richard Gaskin via use-livecode wrote: How many of you have never before known that commas are optional between definition arguments? I have seen it before in user scripts but never used it myself. It’s

Re: Inconsistent comma requirements

2017-06-25 Thread hh via use-livecode
> Monte wrote: > I have seen it before in user scripts but never used it myself. > It’s one of those things you discover (like when {} could be used > interchangeably with []) that you quickly realise you should never > rely on so you forget pretty quickly ;-) You are member of the LC-team and you

Re: How do we access the clipboard on mobile devices?

2017-06-25 Thread Jonathan Lynch via use-livecode
Thanks Richard, This conversation has made me realize I am about to have a yak shaving moment... The most important field for submitting a report in Augmented Earth is the Content field. Because it is an LC field, I use it to allow the user to enter text, format the text, and upload images. The i

Re: Inconsistent comma requirements

2017-06-25 Thread Monte Goulding via use-livecode
> On 25 Jun 2017, at 1:37 am, Richard Gaskin via use-livecode > wrote: > > How many of you have never before known that commas are optional between > definition arguments? I have seen it before in user scripts but never used it myself. It’s one of those things you discover (like when {} coul

Re: How do we access the clipboard on mobile devices?

2017-06-25 Thread Richard Gaskin via use-livecode
jonathandlynch wrote: > I really want to have the same forms for every platform, not have to > generate 40 different fields on the fly and manage all of that. You don't need to. Write a loop that instantiates any editable fields for you on preOpenCard and LiveCode will do the rest. I don't kn

Re: How do we access the clipboard on mobile devices?

2017-06-25 Thread Jonathan Lynch via use-livecode
I really want to have the same forms for every platform, not have to generate 40 different fields on the fly and manage all of that. I might try converting my forms into HTML forms and using the browser widget. I hate that because I invested so much time into the forms I have created, but not b

Shell - Swift

2017-06-25 Thread JB via use-livecode
Name the project args.swift /* After Build the product is a .swift file and can be run with Livecode. */ /* You can choose either */ import Foundation //import Darwin var x = 0; for arg in CommandLine.arguments { print("argument \(x) is: \(arg)") x += 1 } print("Number of arguments =

Re: Creating installers when packaging a Levure application

2017-06-25 Thread Trevor DeVore via use-livecode
On Sat, Jun 24, 2017 at 12:41 PM William Prothero via use-livecode < use-livecode@lists.runrev.com> wrote: > Trevore: > I looked at the helper video and noted the yml file for each helper. > However, I didn’t know where to add those lines to the main app yml file. > But, I will take another look a

Re: How do we access the clipboard on mobile devices?

2017-06-25 Thread J. Landman Gay via use-livecode
They can paste text normally if you use a native field. The only restriction is that LC can't manage the clipboard through script alone. But if you create a mobile field the OS handles it as expected. In other words, copy and paste is currently limited to manual user actions. -- Jacqueline Lan

Re: How do we access the clipboard on mobile devices?

2017-06-25 Thread Jonathan Lynch via use-livecode
I was very surprised it wasn't. I plan to submit Augmented Earth to the apple App Store today. I am going to be embarrassed to tell users they cannot paste text into their reports on a mobile device. I think I will try to find a workaround between version 1 and version 1.1 Sent from my iPhone

Re: How do we access the clipboard on mobile devices?

2017-06-25 Thread hlowe via use-livecode
iOS native text fields (and I presume other native mobile text fields) support manual copy and paste actions - the user has to manually select the text and then initiate the action. I don't know of any way to programatically copy and paste to/from the iOS clipboard nor to access the data on the cli

Re: Docs for IDE hooks

2017-06-25 Thread AndyP via use-livecode
Thanks, Mark. - Andy Piddock My software never has bugs. It just develops random features. TinyIDE a Free alternative minimalist IDE Plugin for LiveCode TinyIDE Script editor Themer for LC http://2108.co.uk PointandSee is a FREE simple but full featured under cursor colour picker

Re: Shell - argv parameter with SPACE

2017-06-25 Thread Sean Cole (Pi) via use-livecode
On 25 June 2017 at 04:12, JB via use-livecode wrote: > What the code provided does it it gives you the > ability to use c, c++, objective-c, and Java code > in your Livecode stacks. > This is really useful. Thanks JB Sean Cole ___ use-livecode mailing

Re: Inconsistent comma requirements

2017-06-25 Thread Sean Cole (Pi) via use-livecode
On 24 June 2017 at 16:37, Richard Gaskin via use-livecode < use-livecode@lists.runrev.com> wrote: > Two questions: > > How many of you have never before known that commas are optional between > definition arguments? > > For those who've known about this, were you confused to discover that this > o

Re: Inconsistent comma requirements

2017-06-25 Thread Sean Cole (Pi) via use-livecode
On 24 June 2017 at 20:59, hh via use-livecode wrote: > Here's to all who didn't ignore the wonderful LC lessons for years! > > on mouseUp > I > end mouseUp > > on I don't care >answer I'm ("fan of it.") > end I > > function I'm fan >return "Beautiful LiveCode! I'm " & fan > end I'm > B