Best Practices for Script Based Frameworks

2016-03-25 Thread Sannyasin Brahmanathaswami
We are launching into the creation of a new app. I hope to use script stacks as much as possible and also we will have a lot of API's on our web server running under LiveCode server + RevIgniter in some cases, since Ralf's Libraries are fantastic and we don't have to reinvent the wheel for many

[ANN} LiveCode List Processor - Version 1

2016-03-25 Thread Peter W A Wood
I have found time to complete version 1 of my LiveCode List Processor. You can find it at https://github.com/PeterWAWood/LiveCode-ListProcessor Many of you may be wondering why I bothered to write it when LiveCode’s built-in list processing (of delimited strings) is very good. The main reason i

Re: LC 8 dp 16 does recognize Xcode Version 7.3 (7D175)?

2016-03-25 Thread hlowe
If you have a backup (e.g. Time machine) just rename the xCode app that is in your applications folder as "xCode 7.3" then restore the older version of xCode from your backup into the applications folder. LC should find it at startup (if not go to LC preferences > Mobile Support and select xCode us

OT: Was Re: LC 8 dp 16 does recognize Xcode Version 7.3 (7D175)?

2016-03-25 Thread Alex Tweedly
On 26/03/2016 01:27, Sannyasin Brahmanathaswami wrote: big storm here last night, despite all kinds of surge protection seem the lightening force fields fried some routers and fiber...one thunder clap at around 11 PM shook my whole hut! (10 X 10 concrete box out in the jungle) I'm on a 100M

problem with large numbers in LC 8 arrays when exporting to json

2016-03-25 Thread Terry Judd
OK, so I’m putting some times (as seconds() values) into an array and then exporting the array to json using the jsonExport() function in LC8. When I query the various elements of the array containing these times individually they all report as expected (e.g. 1458954886). However, when I inspec

LC 8 dp 16 does recognize Xcode Version 7.3 (7D175)?

2016-03-25 Thread Sannyasin Brahmanathaswami
As we know Apple loves to update XCode automatically. I don't see an option to turn this off in xCode prefs on my mac. So... woke up today with xCode modification date yesterday and now LC 8 dp 16 Mobile prefs won't accept it. Red square asking for valid SDK from 6.1 up to 9.2. There is the op

Re: LC8 DP16

2016-03-25 Thread p...@livecode.org
Bill, I tried this and saw the problem once!, but now I’m not seeing it happen again. That’s kind of a familiar scenario with LC8 for me, often makes me think I’m doing something wrong, but then I can’t find enough evidence to make a recipe for a bug report. When I get a few minutes spare I’ll

Re: Delete the first entry of an array.

2016-03-25 Thread Richard Gaskin
Alex Tweedly wrote: > How about a Feature Exchange for adding arrays ? (i.e. not > dictionaries, but actual arrays with numeric indices and linear > access times) lulz. Cute, but of course associative arrays are indeed a type of array. But yes, it would be nice to also support indexed arrays.

Re: Delete the first entry of an array.

2016-03-25 Thread Alex Tweedly
On 25/03/2016 08:03, Peter TB Brett wrote: Hi Peter, LiveCode arrays are actually dictionaries (more like JavaScript objects than JavaScript arrays). There aren't currently any push/pop syntax for LiveCode arrays. ... I hope that's helpful. Would anyone be interested in a Feature Exchang

[OT] Useful resource

2016-03-25 Thread RM
https://thenounproject.com/ Richmond. ___ 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: Shorter Vibration?

2016-03-25 Thread Mark Wieder
On 03/25/2016 11:24 AM, Ralph DiMola wrote: Nothing like having footage of the take that was on the record. Mark, you like the doubling of the acoustic and electric bass? Brien Wilson the king of using the 3rd and 5th for the bass at times instead of the root. Yeah, I believe that's Lyle Ritz o

RE: Re: Shorter Vibration?

2016-03-25 Thread Ralph DiMola
Nothing like having footage of the take that was on the record. Mark, you like the doubling of the acoustic and electric bass? Brien Wilson the king of using the 3rd and 5th for the bass at times instead of the root. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net

OT: Re: Shorter Vibration?

2016-03-25 Thread Mark Wieder
Or better yet: https://www.youtube.com/watch?v=d8rd53WuojE -- Mark Wieder ahsoftw...@gmail.com ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: htt

Re: Shorter Vibration?

2016-03-25 Thread -hh
Good vibrations (4:56) https://www.youtube.com/watch?v=nC2gZMNkyJo -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Shorter-Vibration-tp4702599p4702614.html Sent from the Revolution - User mailing list archive at Nabble.com. __

Re: How you force inclusion of 'rev' functions in a standalone?

2016-03-25 Thread Paul Dupuis
On 3/25/2016 1:40 PM, J. Landman Gay wrote: > The library is included by default in all standalones, which is why > there is no selector for it. If it isn't working, the most likely > reason is that it hasn't loaded yet when its functions were called. > Are you trying to use the library some time d

Re: Shorter Vibration?

2016-03-25 Thread J. Landman Gay
On 3/24/2016 11:56 PM, Scott Rossi wrote: I don't suppose it's possible to change the duration of mobileVibrate? I don't think so. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com ___

Re: How you force inclusion of 'rev' functions in a standalone?

2016-03-25 Thread J. Landman Gay
On 3/25/2016 9:41 AM, Paul Dupuis wrote: I have a standalone that does not include functions like revCopeFolder, revCopyFile, revDeleteFolder, etc, The standalone does however, open an external stack that expects to use these functions, but what happens is I get an execution error handler not fo

How you force inclusion of 'rev' functions in a standalone?

2016-03-25 Thread Paul Dupuis
I have a standalone that does not include functions like revCopeFolder, revCopyFile, revDeleteFolder, etc, The standalone does however, open an external stack that expects to use these functions, but what happens is I get an execution error handler not found (i.e Handler: can't find handler: revDe

Re: Delete the first entry of an array.

2016-03-25 Thread Mike Bonner
Leave things as they are, delete the first element, and keep track of an offset value that you use to grab array elements. If your array starts at 1, and you haven't deleted any elements from the front, the offset is 0. If you delete 2 items, from the front, the offset is 2. If you want to access

Feature Exchange for Array extensions (Was Re: Delete the first entry of an array.)

2016-03-25 Thread Paul Dupuis
On 3/25/2016 4:03 AM, Peter TB Brett wrote: > Would anyone be interested in a Feature Exchange for adding some new > array operators (such as push and pop) to the language? > > Peter I'm not very interested in a push and pop functions, but what I have been

Re: Delete the first entry of an array.

2016-03-25 Thread Peter W A Wood
Thanks Kay > On 25 Mar 2016, at 17:22, Kay C Lan wrote: > > On Fri, Mar 25, 2016 at 3:33 PM, Peter W A Wood wrote: > >> delete pList[“numbers”] 1 ## Is this >> the correct syntax? > > No. Shouldn't it be: > > delete variable pList["number"][1] > > At le

Re: Looking for parser for Email (MIME)

2016-03-25 Thread Roland Huettmann
Hello Kay Thank you for your reply. It can be argued. ))) Well, actually i am using a naming convention using YYYMMDD_HHMM for myself, but it can not be enforced in a business environment easily and has other disadvantages. The problem with modification date/time is that it will be updated when

Re: Delete the first entry of an array.

2016-03-25 Thread Kay C Lan
On Fri, Mar 25, 2016 at 3:33 PM, Peter W A Wood wrote: > delete pList[“numbers”] 1 ## Is this > the correct syntax? No. Shouldn't it be: delete variable pList["number"][1] At least that works for me, although in your case I think, if I understand it corre

Re: Delete the first entry of an array.

2016-03-25 Thread Peter W A Wood
Peter Thanks for the suggestions. > On 25 Mar 2016, at 16:03, Peter TB Brett wrote: > > On 2016-03-25 08:33, Peter W A Wood wrote: >> I have an array which contains a second array. (myArray[“numbers”][]). >> ... >> automatically change the index of the remaining entries? > > Hi Peter, > > Liv

Re: Delete the first entry of an array.

2016-03-25 Thread Peter TB Brett
On 2016-03-25 08:33, Peter W A Wood wrote: I have an array which contains a second array. (myArray[“numbers”][]). The numbers array is a traditional array with elements 1..n. I want to remove the first element of the numbers array and shuffle all the others up. Is there a simple way of doing this

Delete the first entry of an array.

2016-03-25 Thread Peter W A Wood
I have an array which contains a second array. (myArray[“numbers”][]). The numbers array is a traditional array with elements 1..n. I want to remove the first element of the numbers array and shuffle all the others up. Is there a simple way of doing this in LiveCode (equivalent to the shift() fu