Data Crid - set the dgNumberOfRecords

2015-04-01 Thread JB
I am using a table form of data grid and trying to display the records using a cursor and then setting the dgNumberOfRecords. I am able to get the cursor and the record count of the cursor and I can get dgNumberOfRecords before I set dgNumberOfRecords. I want to set dgNumberOfRecords so the recor

Re: ABC of arrays

2015-04-01 Thread Richard Gaskin
Ralph DiMola wrote: > Mike, > > Well explained... Agreed. I think he gets Explaintion of the Month for that. Sure, the month just started, but that was good. > Just when I learned the power of LC array the fact that a box > could only contain a data item OR other boxes is what bit me. > I a

Re: ABC of arrays

2015-04-01 Thread Richard Gaskin
Graham Samuel wrote: > Hi Richard > > As it’s evident I’m interested in this, I had a quick look through > the User’s Guide sections on arrays ... > I could go on, but perhaps it wouldn't be productive. On the contrary, though I'm certain this could be even more productive if we were back at th

RE: ABC of arrays

2015-04-01 Thread Ralph DiMola
Mike, Well explained... Just when I learned the power of LC array the fact that a box could only contain a data item OR other boxes is what bit me. I actually coded up a mini storm and it wasn't until I start testing that I figured this out. At the time I couldn't think of a reason why LC coul

Re: Accessing Amazon Database?

2015-04-01 Thread Vaughn Clement
Hi Kee I am a database developer and I am also familiar with Amazon's seller reports. The reports can be exported so the data is available to use in a database. But why not just use the reports Amazon provides? Do you need to something special with the data? Vaughn Clement www.ontargetsolutions.

Re: ABC of arrays

2015-04-01 Thread Mike Bonner
I'm one who uses visualization to get a handle on things like arrays. For me, arrays are just a bunch of nested boxes. And a box can contain other boxes, or a dataitem, but not both. So if you get the keys of myArray you've just looked into the first box to see whats there. If there are no keys

Re: Accessing Amazon Database?

2015-04-01 Thread Skip Kimpel
I am actually in the process of experimenting with Azure and SQL. Very, very impressed with what I have been able to do so far and how easy it is to implement and manage. SKIP > On Apr 1, 2015, at 7:18 PM, kee nethery wrote: > > I want to build a multi-user database client that uses Amazon A

Re: [OT] And You Thought Richmond Kept Old Macs Alive

2015-04-01 Thread kee nethery
Or if they have RJ11 phone jacks, PhoneNet connectors. Kee > On Mar 27, 2015, at 1:39 PM, Bob Sneidar wrote: > > Localtalk connectors. > > Bob S ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubsc

Accessing Amazon Database?

2015-04-01 Thread kee nethery
I want to build a multi-user database client that uses Amazon AWS capabilities for the centralized database. I envision one S3 bucket for app updates. Have the app hit a text file to see if it is up to date and if not, download the latest version. I envision some kind of SQL-ish database where

Re: LiveNode Server

2015-04-01 Thread David Bovill
On 1 April 2015 at 16:55, Richard Gaskin wrote: > > > David Bovill wrote: > > > The question is can you create in Livecode an aynchronous event-drive > > architecture? .. > > With socket I/O apparently handled asynchronously when the "with " option is used, this is a very tempting pursuit. > > The

Re: [ANN] libDate on gitHub

2015-04-01 Thread Monte Goulding
Hi Malte The engine can now load a text file as a stack. If you use the livecodescript extension I think newer versions will launch the file at some point. All you need to do is write this on the first line: stack "libDate" It might be worth modifying libDate so the current libDate stack is jus

Re: ABC of arrays

2015-04-01 Thread Dave Cragg
> On 1 Apr 2015, at 21:48, Graham Samuel wrote: > So, following on another mail I just sent, I think people can get confused by > sub-arrays and what ‘the keys’ actually looks at. More examples needed in the > docs, perhaps. > > Hope this is not seen as wilful misunderstanding - it’s not meant

Re: ABC of arrays

2015-04-01 Thread Michael Doub
Graham, I think one of the things that is confusing you as you are trying to learn arrays is the fact that you are looking at output created by ConvertXMLToArray. ConvertXMLToArray is working as designed, but it just happens to create key in a syntax that looks like a livecode array referen

Re: ABC of arrays

2015-04-01 Thread Graham Samuel
Richard, forgive me for just extracting a bit of your interesting mail. I see that the real issue is with the idea of sub-arrays, which have their own sets of keys. You emphatically do not get a list of all the keys of an array with subarrays in it from the ‘put the keys’ action. I modified your

Re: ABC of arrays

2015-04-01 Thread Graham Samuel
Hi Richard As it’s evident I’m interested in this, I had a quick look through the User’s Guide sections on arrays as you suggested to Thierry. FWIW I think it is pretty helpful, and it gives a very good idea of the power of LC arrays and the corresponding built-in operations. I think the vocab

Re: ABC of arrays

2015-04-01 Thread Richard Gaskin
Graham Samuel wrote: > Well, Richard, I am always very willing to believe that I’ve > misunderstood something, but this is what happened (this material is > extracted from conversations I had on this list in the middle of > March). > > 1. I had an XML file - it was actually a .gpx file, which sho

Re: ABC of arrays

2015-04-01 Thread Graham Samuel
Yes I do, because the LC dictionary does not qualify ‘the keys’ in any way. It just says: > returns a list of the element names in an array variable It doesn’t suggest that an ‘array variable’ can’t be multi-dimensionl - in fact we know that it can. So maybe I’m just looking at a documentatio

Re: ABC of arrays

2015-04-01 Thread Graham Samuel
Well, Richard, I am always very willing to believe that I’ve misunderstood something, but this is what happened (this material is extracted from conversations I had on this list in the middle of March). 1. I had an XML file - it was actually a .gpx file, which shows a geographical route as a se

Re: Summer (Winter) Time Fun

2015-04-01 Thread Pyyhtiä Christer
Thanks, folks! It looks like there is a great challenge to make it work correctly. Let me refine the problem just to add interest. First, the client signs into the app (getDealDone), at the same time committing to automatically renewing subscription. Let's assume this is on the next to the l

Re: ABC of arrays

2015-04-01 Thread Phil Davis
If you want to see a visual representation of the array, the following code will give that to you: -- your stack has a field and a button -- button code: global gSomeBigArray on mouseUp put dataTree(gSomeBigArray) into field 1 end mouseUp function dataTree pData, pSpacer put pSpacer

Re: ABC of arrays

2015-04-01 Thread Thierry Douez
> I've never had any problems with "put the keys of myArray". > Maybe you expect It to return all the keys of a multidimensional array? Jacque, I think that is what he meant. Thierry ___ use-livecode mailing list use-livecode@lists.runrev.com Please v

Re: ABC of arrays

2015-04-01 Thread Thierry Douez
>> replace "scary" by "intimidating" in your post >> Sounds better? :) >> >> the subject is ABC... > Thanks. > The docs are being dramatically revised, so your feedback is very helpful. Richard, I don't think in this case my comments are too relevant. I'm not the one who want an ABC of arrays

Re: system weekdayNames

2015-04-01 Thread Peter Haworth
Thanks you Thomas and Antti. That answers my question. Pete lcSQL Software Home of lcStackBrowser and SQLiteAdmin On Wed, Apr 1, 2015 at 2:32 AM, Antti Ilola wrote: > There should be Finni

Re: Summer (Winter) Time Fun

2015-04-01 Thread Peter Haworth
I also found another video by the same guy explaining how UTF-8 works at the binary level. I think I finally understand it! Pete lcSQL Software Home of lcStackBrowser and SQLiteAdmin On Wed,

Re: ABC of arrays

2015-04-01 Thread Richard Gaskin
Thierry Douez wrote: http://lessons.runrev.com/searches?utf8=✓&text=array&commit=Search As we explore options for unifying and expanding various help resources in the community it would be helpful to know, what is it about the lessons that seems "scary"? replace "scary" by "intimidati

Re: ABC of arrays

2015-04-01 Thread J. Landman Gay
I've never had any problems with "put the keys of myArray". Can you give an example where it fails? Maybe you expect It to return all the keys of a multidimensional array? On April 1, 2015 11:14:10 AM CDT, Graham Samuel wrote: >I’m coming from the same place. When you find this material, I’ll

Re: ABC of arrays

2015-04-01 Thread Thierry Douez
>> >>http://lessons.runrev.com/searches?utf8=✓&text=array&commit=Search > > As we explore options for unifying and expanding various help resources in > the community it would be helpful to know, what is it about the lessons that > seems "scary"? replace "scary" by "intimidating" in your

Re: ABC of arrays

2015-04-01 Thread Richard Gaskin
Thierry Douez wrote: Otherwise, there is this one, but I find it scary and certainly not useful as a 1st reading about arrays. http://lessons.runrev.com/searches?utf8=✓&text=array&commit=Search As we explore options for unifying and expanding various help resources in the community it

Re: ABC of arrays

2015-04-01 Thread Thierry Douez
> I’m coming from the same place. > When you find this material, I’ll be looking at it too! > Best of luck > > Graham Hello Graham, As usual, Bernd came to the rescue with a nice link from Devin Asay: http://livecode.byu.edu/arrays/introToArrays.php I did read it quickly and might be eno

Re: OT: On-Rev issue (non-emergency)

2015-04-01 Thread Matthias Rebbe
> Am 01.04.2015 um 15:55 schrieb Graham Samuel : > > Matthias, you’re a treasure! I did what you said, using the files you kindly > put onto dropbox. I assume my account name is just ‘livfoss’ (that’s the > unique part of my On-Rev presence). It looks as if things are going OK > despite my dee

Re: ABC of arrays

2015-04-01 Thread Richard Gaskin
Thierry Douez wrote: > I'm looking for any learning material to understand > the basics of arrays in Livecode. 1. Skim these: 2. Set aside an hour to experiment With that modest investment you'll gain a good understanding of arrays, and onc

Re: ABC of arrays

2015-04-01 Thread Mark Schonewille
Hi Thierry, My book explains arrays in just over 2 pages. If this isn't enough, then I'd be very interested in reading the person's questions. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/

SoCal LUG tomorrow - NEW LOCATION

2015-04-01 Thread Richard Gaskin
Pardon the second notice on this, but it's important to note for anyone interest in attending tomorrow night's SoCal LiveCode Group meeting that our location has changed - details in the forum: At the meeting I'll cover a Q/A on LiveCode

Re: ABC of arrays

2015-04-01 Thread Graham Samuel
I’m coming from the same place. When you find this material, I’ll be looking at it too! Although I have made some baby steps with arrays with lots of help from members of this list (I can send you references to these conversations if you want), I still find them confusing. I have already complai

Chromebooks revisited

2015-04-01 Thread Earthednet-wp
Thinking about Chromebooks because my son, a 4'th grade teacher will be using them in his school. Still just a browser in a box? So we'll be waiting for livecode export to html5? Bill William Prothero http://es.earthednet.org > On Apr 1, 2015, at 8:55 AM, Richard Gaskin wrote: > > GMTA: the

Re: LiveNode Server

2015-04-01 Thread Richard Gaskin
GMTA: the folder where I keep my experimental server stacks is named "LiveNode". :) Good stuff here, a very useful and practical pursuit, IMO, in a world where one of the largest MMOs is also written in a high-level scripting language (EVE Online, in Python) so we know it's more than possible

ABC of arrays

2015-04-01 Thread Thierry Douez
Hi, I'm looking for any learning material to understand the basics of arrays in Livecode. It's for someone who is working since eons with Livecode but who doesn't understand arrays. Thanks for any pointer on the best beginner's lessons, stacks or whatsoever. Kind regards, Thierry

exporting htmlText for use in current browsers

2015-04-01 Thread Paul Dupuis
I have run into a problem where current versions of FireFox, IE, and Chrome appear no longer recognize the HTML generated by the htmlText of a field, specifically the depricated tag (among others) When I wrap the htmText of a field in an HTML document structure, such as: [[title_HERE]]

Re: Summer (Winter) Time Fun

2015-04-01 Thread FlexibleLearning.com
I was going to post a link to EXACTLY the same video clip! There are simply some things that defy any reasonable solution, but a 3am check-point on the change-over day is perhaps the least painful... or you allow a 1-day grace period on any date. Hugh Senior FLCo Peter wrote... If you have 10

Re: OT: On-Rev issue (non-emergency)

2015-04-01 Thread Graham Samuel
Matthias, you’re a treasure! I did what you said, using the files you kindly put onto dropbox. I assume my account name is just ‘livfoss’ (that’s the unique part of my On-Rev presence). It looks as if things are going OK despite my deep ignorance (as you see I am not even certain about my accoun

LiveNode Server

2015-04-01 Thread David Bovill
The question is can you create in Livecode an aynchronous event-drive architecture? Livecode is built after all around an event loop, and through commands like dispatch, send in time, and wait with messages, it is possible to create asynchronous call back mechanisms - so why can we not create a nod

Re: [ANN] libDate on gitHub

2015-04-01 Thread David Bovill
Cool - and you name your handlers just the same way I do :) On 1 April 2015 at 11:36, Malte Brill wrote: > Hi all, > > trying to get my feet wet with gitHub I have now created a repository for > libDate. > > https://github.com/derbrill/libdate > > It remains released into the PD. :-) > > Hope so

[ANN] libDate on gitHub

2015-04-01 Thread Malte Brill
Hi all, trying to get my feet wet with gitHub I have now created a repository for libDate. https://github.com/derbrill/libdate It remains released into the PD. :-) Hope some of you find this useful. All the best, Malte ___ use-livecode mailing lis

Re: system weekdayNames

2015-04-01 Thread Antti Ilola
There should be Finnish day names. I forget to mention. 2015-04-01 12:29 GMT+03:00 Antti Ilola : > I get always english day names in OS 10.9.5 on what ever version of LC. > Starting day Sunday. > > 2015-04-01 8:57 GMT+03:00 Thomas von Fintel : > >> I get "Sonntag Montag Dienstag Mittwoch Donners

Re: system weekdayNames

2015-04-01 Thread Antti Ilola
I get always english day names in OS 10.9.5 on what ever version of LC. Starting day Sunday. 2015-04-01 8:57 GMT+03:00 Thomas von Fintel : > I get "Sonntag Montag Dienstag Mittwoch Donnerstag Freitag Samstag" > using LC 6.7.3 on OS 10.7.5 with week starting on Monday. > > Thomas > > Am 01.04.201