SoCal LC User Group meeting Thurs, Pasadena

2013-04-29 Thread Richard Gaskin
The next SoCal LiveCode User Group meeting is coming up Thursday, May 2, at 7PM in Pasadena - details in the LUG section of the LiveCode forums: See ya' there... -- Richard Gaskin Fourth World Systems Software Design and Development for

Re: Blocking COPY ???

2013-04-29 Thread Paul Hibbert
On 2013-04-29, at 10:38 AM, Richmond wrote: > On 04/28/2013 09:43 PM, Paul Hibbert wrote: >> Didn't we have this discussion a short while ago? >> >> I tried Jacque's suggestion and (after removing the 'pass copyKey') it >> worked fine in a standalone, just not in the IDE… >> >>> On 3/31/13 3:0

Re: Faceless LiveCode App for CLI on Mac OS X and Windows 7

2013-04-29 Thread Bob Cole
Richard: This is a wonderful response with great detail and advice; just what I need. I continue to be impressed with the responsiveness and thoughtfulness of the members on this LiveCode list. With genuinely useful help like this, LiveCode becomes even more valuable. I also received knowledg

android keyboard problems

2013-04-29 Thread Terry Judd
I'm just starting my first real foray into Android development and I've immediately run into a problem with the keyboard behaviour. I have a login screen with username and password fields towards the top of the screen but when I tap in one of the fields and the onscreen keyboard comes up (in the

Re: Storing a control in a custom property

2013-04-29 Thread Mike Bonner
Yep, just did a test and it is indeed "objects" On Mon, Apr 29, 2013 at 6:52 PM, Mike Bonner wrote: > Yes you can do that. Just "copy" the control to the clipboard and save > the clipboard data to a property. (clipboarddata["objects"] I think) > > I was doing this with whole stacks and it wor

Re: Storing a control in a custom property

2013-04-29 Thread Mike Bonner
Yes you can do that. Just "copy" the control to the clipboard and save the clipboard data to a property. (clipboarddata["objects"] I think) I was doing this with whole stacks and it works fine. To restore the object, put the cWhereIStoredIt into the clipboarddata["objects"] and then paste it.

Storing a control in a custom property

2013-04-29 Thread Peter Haworth
Is it possible to store a control in a custom property and then create a control by referencing that custom property? I'm guessing the only way to do it is to store the object's properties in the custom control then create a new control and set its properties to the custom control Pete lcSQL Soft

Updated list of htmlText tags

2013-04-29 Thread Peter Haworth
I just discovered by accident, that htmlText now supports a tabstops definition within tag. There's no mention of this in the dictionary not in the release notes for 5.5, although other new htmlText tags are mentioned in the release notes. Is there a complete list of tags that are supported in h

Re: Strange compile error

2013-04-29 Thread Robert Brenstein
On 25.04.2013 at 16:46 Uhr -0700 Peter Haworth apparently wrote: Don't think it needs anyone to spend any more time on it now that I've got it working. I'll just accept it as a compiler weirdness, although the error message didn;t give any clue as to what the the real problem might have been.

Re: Blocking COPY ???

2013-04-29 Thread Richmond
On 04/28/2013 09:43 PM, Paul Hibbert wrote: Didn't we have this discussion a short while ago? I tried Jacque's suggestion and (after removing the 'pass copyKey') it worked fine in a standalone, just not in the IDE… On 3/31/13 3:07 PM, Richmond wrote: I am aware one can do this: on copyKey

Re: Comparing two databases

2013-04-29 Thread Peter Haworth
Hi Skip, I'd say it would be quite easy to open both dbs in LC, do a SELECT on each one for the primary key and the three fields you're interested in, then use LC to compare the results. One way to do it might be to put the results of the first SELECT into an array keyed by the primary key, do th

Re: Comparing two databases

2013-04-29 Thread william humphrey
Igor Thanks for the suggestions. I think doing it with LiveCode text handling is going to be a very flexible solution and you could just dump the data from the databases after a certain "date" which is set based on the last time they were synchronised. On Mon, Apr 29, 2013 at 11:32 AM, Ruslan Za

Re: Comparing two databases

2013-04-29 Thread Ruslan Zasukhin
On 4/29/13 6:06 PM, "Lynn Fredricks" wrote: > Hi SKIP, > >> Is that something that can be scripted? I need to create an >> automated >> report of differences and emailed out to the appropriate >> parties. I briefly looked at the SQL DIFF function that you >> described but it looks like it is

Re: Fresh meat - rc3

2013-04-29 Thread Dr. Hawkins
On Sun, Apr 28, 2013 at 8:37 AM, Richmond wrote: > Am I right in thinking there is a rc3 version floating around, and if so, is > this commercial only, > or is this OSS as well, and if the latter does anyone know the download > address??? I haven't even found rc1 commercial yet; it keeps insistin

Re: Faceless LiveCode App for CLI on Mac OS X and Windows 7

2013-04-29 Thread Richard Gaskin
Bob Cole wrote: > I am looking for an example of how to create a utility program in LC > to process a text file on Mac OS X and Windows 7. > I want to put it in a faceless processing stream perhaps with pipes > or redirection or options. Such as: > ... > cat textfile1 | myLCprogram | more

RE: Comparing two databases

2013-04-29 Thread Lynn Fredricks
Hi SKIP, > Is that something that can be scripted? I need to create an > automated > report of differences and emailed out to the appropriate > parties. I briefly looked at the SQL DIFF function that you > described but it looks like it is all manually run from Studio Pro. It should be poss