Re: OT : Hosting providers

2015-05-04 Thread Matthias Rebbe | M-R-D
I just noticed, that one of our accounts which is on JASMINe since 2013 (it was moved from pancake at that time), now shows also old DB data from 2014. Not only our shop is no showing outdated products, but also it is not working correctly anymore because the onfiguration is stored in the db

Re: OT : Hosting providers

2015-05-04 Thread Pierre Sahores
Matthias, Went you able to check them via CPANEL access ? On my side, https://jasmine.on-rev.com:2083/ stay unreachable with an ERR_CONNECTION_TIMED_OUT status. Regards, Pierre Le 4 mai 2015 à 09:11, Matthias Rebbe | M-R-D matthias_livecode_150...@m-r-d.de a écrit : So if there are

Re: OT : Hosting providers

2015-05-04 Thread Matthias Rebbe | M-R-D
Pierre, tried my 2 accounts on jasmine now. The newly moved one and the one where the DBs were overwritten. PHPMyAdmin access from within CPanel is successful for both. Regards, Matthias Am 04.05.2015 um 09:52 schrieb Pierre Sahores s...@sahores-conseil.com

Re: OT : Hosting providers

2015-05-04 Thread Matthias Rebbe | M-R-D
Just to clarify: I have to correct my self. The DBs were not overwritten. I can see the current data using phpMyAdmin. Only our shop is not able to show the current data. Interestingly new orders and customers can also be seen. Only data between April 2014 and up to 30rd April 2015 cannot be

Release 6.7.5 RC 2 / 7.0.5 RC 2

2015-05-04 Thread Fraser Gordon
Dear List Members, We are pleased to announce the release of LiveCode 6.7.5 RC 2 and 7.0.5 RC 2. This release is a maintenance release which contains bug fixes for both versions. The list of bugs fixed can be found in the Release Notes. *Getting the Release* To get the release please select

New LiveCode book

2015-05-04 Thread stgoldb...@aol.com
My new book, LiveCode Lite: Computer Programming Made Ridiculously Simple, is at this time available free for download in PDF format at www.medmaster.net/livecode.html. If anyone has comments or suggestions for improvement, please let me know, so that the book can be as useful as possible to

Anyone have a LC based PHOTO Organizer app?

2015-05-04 Thread Mark Rauterkus
Hi, I need a photo organizer to catalog, trim, move, delete, tag, etc. I have been using google's Picasa 3 but now it chokes as I've got too many images (15,000). Does anyone have a LiveCode solution for this already built and is it open source? Even a LC widget to find duplicate files /

Re: New LiveCode book

2015-05-04 Thread Richmond
On 04/05/15 16:43, stgoldb...@aol.com wrote: My new book, LiveCode Lite: Computer Programming Made Ridiculously Simple, is at this time available free for download in PDF format at www.medmaster.net/livecode.html. If anyone has comments or suggestions for improvement, please let me know, so

3 strategic questions I have re iOS development

2015-05-04 Thread William Prothero
Folks: I’ve been getting more and more into iOS development and need some direction. If you have input on any of the questions below, I’d appreciate it very much. I’d like to implement solutions that will last well into LC8. 1. Can iOS do audio recording, without Xtras? If not, is mergAV a good

Re: LC7 arrayEncode/Decode

2015-05-04 Thread William Prothero
Richard: You may be right about inconsistent formatting in the array. I started the array with: put myVal into myArray[1][“name”] Then later do: put myNextVa; into myArray[“i”][“name”], where i is an index in a repeat loop So, one would have an integer and the others would be a string of an

Re: LC7 arrayEncode/Decode

2015-05-04 Thread William Prothero
Richard: By the way, the fix was to do: put myVal into myArray[“1”][“name”] instead of myArray[1][“name”] Bill On May 4, 2015, at 11:43 AM, William Prothero proth...@earthednet.org wrote: Richard: You may be right about inconsistent formatting in the array. I started the array with: put

RE: LC7 arrayEncode/Decode

2015-05-04 Thread Ralph DiMola
Shouldn’t myArray[“i”][“name”] be myArray[i][“name”] ? Otherwise all the data would be put into array key i instead of the value of i. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode

Re: LC7 arrayEncode/Decode

2015-05-04 Thread William Prothero
Ralph: The first index is the integer 1, not the string representing the integer 1. So, it is probably an improper way to set an element of an array. Was my bad. Best, Bill On May 4, 2015, at 11:51 AM, Ralph DiMola rdim...@evergreeninfo.net wrote: Shouldn’t myArray[“i”][“name”] be

Re: fastes way to search an array?

2015-05-04 Thread Bob Sneidar
I wrote a couple functions that “flatten” an array into a string in such a way that it can be converted back into an array again when done. Here they are: function altPrintKeys @pArray, theKeyList, pFullData put numtochar(11) into vertTab put numtochar(30) into altCr put the keys of

Re: fastes way to search an array?

2015-05-04 Thread Eric Corbett
Cool function Bob, I always love a good recursive handler. It might be broken when an array element contains more than one word. (Limited testing tho.) Eric On May 4, 2015, at 2:14 PM, Bob Sneidar bobsnei...@iotecdigital.com wrote: I wrote a couple functions that “flatten” an array into a

Unicode

2015-05-04 Thread Peter Haworth
Busy converting SQLiteAdmin to be Unicode compliant using LC 7.0.4. It's going very smoothly so far and no performance issues or crashes. Couple of things I'm not clear on. These questions all refer to variables that hold textDecoded strings Does toUpper/toLower work? Similarly, does the

Re: fastes way to search an array?

2015-05-04 Thread Bob Sneidar
That is in an array key name. Bob S On May 4, 2015, at 14:32 , Bob Sneidar bobsnei...@iotecdigital.commailto:bobsnei...@iotecdigital.com wrote: That may be. I never use multiple words in an array so it would never have occurred to me to test for that. Bob S

Re: Unicode

2015-05-04 Thread Richard Gaskin
Peter Haworth wrote: Does toUpper/toLower work? Similarly, does the setting of caseSensitive work OK when comparing textDecoded strings? Can I use char references, e.g. char x to y of tVar or offset, or do I need to use byte x to y, byteOffset? Character is safer for strings since it

Re: Unicode

2015-05-04 Thread Peter Haworth
Great, thanks Richard. Pete lcSQL Software http://www.lcsql.com Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and SQLiteAdmin http://www.lcsql.com/sqliteadmin.html On Mon, May 4, 2015 at 1:39 PM, Richard Gaskin ambassa...@fourthworld.com wrote: Peter Haworth wrote: Does

Re: fastes way to search an array?

2015-05-04 Thread Bob Sneidar
That may be. I never use multiple words in an array so it would never have occurred to me to test for that. Bob S On May 4, 2015, at 14:30 , Eric Corbett e...@canelasoftware.com wrote: Cool function Bob, I always love a good recursive handler. It might be broken when an array element