Re: Updated list of htmlText tags

2013-04-30 Thread Björnke von Gierke
i'd say the htmltext dictionary entry needs to mention that rework. On 30.04.2013, at 02:40, Peter Haworth wrote: I just discovered by accident, that htmlText now supports a tabstops definition within p tag. There's no mention of this in the dictionary not in the release notes for 5.5,

Re: Storing a control in a custom property

2013-04-30 Thread Dr. Hawkins
On Mon, Apr 29, 2013 at 5:52 PM, Mike Bonner bonnm...@gmail.com wrote: 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. (didn't check dictionary so not positive if objects is correct) Hmm.

Re: Storing a control in a custom property

2013-04-30 Thread Mike Bonner
Can't do it with a stack that is not its own mainstack so you have to make sure any stacks you store this way are set to point to themselves, but I don't see why you couldn't do it. Copy the stack to clipboard (after making sure it is not a sub) pop it out of the clipboard data, encrypt it and

Re: Storing a control in a custom property

2013-04-30 Thread Dr. Hawkins
On Tue, Apr 30, 2013 at 6:25 AM, Mike Bonner bonnm...@gmail.com wrote: Can't do it with a stack that is not its own mainstack so you have to make sure any stacks you store this way are set to point to themselves, but I don't see why you couldn't do it. Copy the stack to clipboard (after

Re: Storing a control in a custom property

2013-04-30 Thread Mike Bonner
Works with cards too. /shrug ## store card copy cd cardname put the clipboarddata[objects] into tVar encrypt tVar insert tVar into the database (binary/blob) ## retrieve card select the card put it into tVar decrypt set the clipboarddata[objects] to tVar paste On Tue, Apr 30, 2013 at 10:11

Re: Storing a control in a custom property

2013-04-30 Thread Peter Haworth
Thanks Mike, that's great. I see you can also do it for a group of objects. I'm impressed! Pete lcSQL Software http://www.lcsql.com On Mon, Apr 29, 2013 at 5:52 PM, Mike Bonner bonnm...@gmail.com wrote: Yes you can do that. Just copy the control to the clipboard and save the clipboard

Re: Storing a control in a custom property

2013-04-30 Thread BNig
You can do it for multiple objects also: - on mouseUp lock screen set the selected of button 1 to true set the selected of field 1 to true set the selected of field 2 to true set the selected of image 1 to true copy set the uObjects of this stack to the

Re: Canceled Meetup - Greater Toronto Area LiveCode Users Group May 1, 2013

2013-04-30 Thread Martin Koob
Hi. I have canceled the Meetup for May 1, 2013. I only had one other person RSVP so far. I should have given more advance notice. I will schedule another for some time around the end of May. If you are in the Greater Toronto Area and are interested in future LiveCode meetups you can join

Re: Storing a control in a custom property

2013-04-30 Thread Mike Bonner
Hmm had tried it, but only seemed able to restore a single object no matter how many were selected. Will have to try it again! (this is why I worked with groups for multiple objects, I could make it work) Thx for the script, will add it to my snippets. On Tue, Apr 30, 2013 at 11:14 AM, BNig

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

2013-04-30 Thread Dr. Hawkins
On Sun, Apr 28, 2013 at 1:41 PM, Bob Cole bobc...@earthlink.net 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. I

Re: Storing a control in a custom property

2013-04-30 Thread BNig
If you don't want to set the selected you can also say --- select button 1 and field 1 and field 2 and image 1 -- you can NOT say select button 1 select field 1 select field 2 select image 1 -- since each select will deselect

Re: Storing a control in a custom property

2013-04-30 Thread Peter Haworth
Thanks Bernd! Pete lcSQL Software http://www.lcsql.com On Tue, Apr 30, 2013 at 10:14 AM, BNig niggem...@uni-wh.de wrote: You can do it for multiple objects also: - on mouseUp lock screen set the selected of button 1 to true set the selected of field 1 to true

Re: Storing a control in a custom property

2013-04-30 Thread Mike Bonner
Yeah, I had tried it from the message box just manually selecting multiple objects and couldn't get it to work for me but will keep trying till I figure out where i'm going wrong. Yep, its working. Think a message box quirk was causing me troubles, moving the code into the stack itself works

[Ann] Canceled - May 1, 2013 Meetup Greater Toronto Area LiveCode Users Group

2013-04-30 Thread Martin Koob
I sent this again to start a new thread to show that the meetup is actually cancelled. Hi. I have canceled the Meetup for May 1, 2013. I only had one other person RSVP so far. I should have given more advance notice. I will schedule another for some time around the end of May. If you are in

Downloading *regular* 6.0.1 or 6.0?

2013-04-30 Thread Dr. Hawkins
I'm sitting here with rc7 for 6.0, and only community releases for 6.0.1. Where do I find the non-community versions? I only see the community release, and I need to send out encrypted stacks. Or do I need to use 5.5.4? (I have the whole shebang developer's license) -- Dr. Richard E.

Re: Downloading *regular* 6.0.1 or 6.0?

2013-04-30 Thread Colin Holgate
As part of that have you thought about subscribing to the LiveCode Developer list? Links to the commercial version are frequently posted there. The my products part of the store should give you a download link too, which currently points to 6.0.1 rc1. On Apr 30, 2013, at 2:21 PM, Dr. Hawkins

Re: Downloading *regular* 6.0.1 or 6.0?

2013-04-30 Thread Dr. Hawkins
On Tue, Apr 30, 2013 at 11:34 AM, Colin Holgate co...@verizon.net wrote: As part of that have you thought about subscribing to the LiveCode Developer list? Links to the commercial version are frequently posted there. I'm subscribed to it, yes. The my products part of the store should give

Re: Downloading *regular* 6.0.1 or 6.0?

2013-04-30 Thread Colin Holgate
Look for an email from Michael McCreary, timed at 9:53am today. The app coin is blue for the commercial one, and green for the community one. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe

revOpenDatabase acting differently in IDE and standalone

2013-04-30 Thread Dr. Hawkins
I have lost about 20 hours to this now. My whole application runs and functions just fine in the IDE. The standalone, however, is having problems. It seems that both sometimes globals aren't properly global, even when declared in a substack, and tthat revOpenDatabase acts differently. I have a

Re: revOpenDatabase acting differently in IDE and standalone

2013-04-30 Thread Mike Bonner
Sounds like something is up with the external for postgres standalone building. You might look in the installation folder for LC 6+, find the tools/runtime/windows/x86-32/externals folder, look at the file externals.txt and see if it looks right, then also look in the database drivers folder and

Re: revOpenDatabase acting differently in IDE and standalone

2013-04-30 Thread Dr. Hawkins
On Tue, Apr 30, 2013 at 7:59 PM, Mike Bonner bonnm...@gmail.com wrote: Sounds like something is up with the external for postgres standalone building. You might look in the installation folder for LC 6+, find the tools/runtime/windows/x86-32/externals folder, look at the file externals.txt

Re: revOpenDatabase acting differently in IDE and standalone

2013-04-30 Thread Mark Wieder
Richard- Tuesday, April 30, 2013, 9:35:12 PM, you wrote: I'm *trying* to get commercial 6.0.1, but all I've found so far is community. I *absolutely* need commercial, as I need the stacks encrypted. Well, as has been mentioned before, you don't need to encrypt them until you're ready to push