Re: glx2

2015-10-23 Thread Terry Judd
I¹d forgotten how much I liked GLX2. Thanks so much for maintaining it Mark. Terry... On 23/10/2015 1:11 pm, "use-livecode on behalf of Mark Wieder" wrote: >On 10/22/2015 05:05 PM, Peter Haworth wrote: >> Well there's Mark Wieder's GLX2 editor plugin >>Mark? > >Sheesh. I've been without int

Different window behavior in LC 6.7.6 and up

2015-10-23 Thread Tiemo Hollmann TB
Hello, I have a stack, using as a kind of answer dialog with 3 buttons, where I dynamically change the button labels, visibility, default, width etc. depending on the kind of answer dialog I just need. I usually keep this stack all time open and just show and hide it, when needed. In my dialog co

Re: Different window behavior in LC 6.7.6 and up

2015-10-23 Thread Mark Waddingham
Hi Tiemo, On 2015-10-23 17:00, Tiemo Hollmann TB wrote: Hello, I have a stack, using as a kind of answer dialog with 3 buttons, where I dynamically change the button labels, visibility, default, width etc. depending on the kind of answer dialog I just need. I usually keep this stack all time

Re: [ANN] "language-livecode" 0.6.0 for Atom Editor

2015-10-23 Thread Peter TB Brett
On 22/10/2015 22:15, Monte Goulding wrote: On 23 Oct 2015, at 3:17 am, Peter Haworth wrote: The script editor ( and TextMate) automatically indent after if/repeat/switch statements, Atom doesn't. I know it has snippets that will insert a complete if block with indentation but if I simply t

Re: [ANN] "language-livecode" 0.6.0 for Atom Editor

2015-10-23 Thread Peter TB Brett
On 22/10/2015 18:33, Bob Sneidar wrote: So am I supposed to copy scripts back and forth, or is Atom supposed to be able to jack into my Livecode stack and read the scripts in the individual objects? Don't see how that is possible, and I don't see how it would be better, or that much better to us

AW: Different window behavior in LC 6.7.6 and up

2015-10-23 Thread Tiemo Hollmann TB
Hi Mark, I already tried to create a recipe, but didn't found the relevant statements yet. As soon I can reproduce this behavior in a test stack, I will file a bug in QC. Thanks Tiemo -Ursprüngliche Nachricht- Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag v

Re: [ANN] "language-livecode" 0.6.0 for Atom Editor

2015-10-23 Thread Peter TB Brett
On 22/10/2015 17:38, Bob Sneidar wrote: I had typed up an email to that effect yesterday, but deleted it without sending it, because I thought that maybe I was asking too much of the Atom Editor. But if this is what ist should be doing then +1! Bob S On Oct 21, 2015, at 16:36 , Peter Hawor

AW: Different window behavior in LC 6.7.6 and up

2015-10-23 Thread Tiemo Hollmann TB
I created a recipe stack and filed it as bug 16275 Thanks Tiemo -Ursprüngliche Nachricht- Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag von Tiemo Hollmann TB Gesendet: Freitag, 23. Oktober 2015 17:15 An: 'How to use LiveCode' Betreff: AW: Different window beh

REST API support (and OAuth too)

2015-10-23 Thread Richard Gaskin
I periodically run into people who say they can't use LC with some REST APIs, but I've not been able to solicit specifics about what's not working for them. Most REST APIs require GET, POST, PUT, and DELETE. I know LC supports GET and POST, but are PUT and DELETE supported for HTTP as they ar

Re: REST API support (and OAuth too)

2015-10-23 Thread Magicgate Software - Skip Kimpel
I would love to also have a solution to the OAuth issue as I run into this all the time. My gut feeling there is a way to deal with it, I have not found a way. SKIP KIMPEL On Fri, Oct 23, 2015 at 1:00 PM, Richard Gaskin wrote: > I periodically run into people who say they can't use LC with som

Re: REST API support (and OAuth too)

2015-10-23 Thread Roger Eller
This is a wonderful example of using a REST API with nothing but LiveCode. Read the .rtf manual included. http://www.phoenixsea.ch/downloads/Livecode/phxDropboxLib.zip ~Roger On Fri, Oct 23, 2015 at 1:00 PM, Richard Gaskin wrote: > I periodically run into people who say they can't use LC with

How can a button not have properties?

2015-10-23 Thread Dr. Hawkins
How can put the properties of btn "File" of grp "mcp_menu" of cd 1 of stack "old_cp" *possibly* come up empty? This has come up while copying stacks out of my program into a new file. I shed .9mb, but am having other issues. Anyway, this comes about in a maintenance script that sets the tr

Re: How can a button not have properties?

2015-10-23 Thread Peter Haworth
The properties property is an array so a simple put will not display anything. Pete lcSQL Software Home of lcStackBrowser and SQLiteAdmin On Fri, Oct 23, 2015 at 1:43 PM, Dr. Hawkins wrote:

Re: How can a button not have properties?

2015-10-23 Thread Dr. Hawkins
On Fri, Oct 23, 2015 at 1:53 PM, Peter Haworth wrote: > The properties property is an array so a simple put will not display > anything. > Yes, but put the keys of the properties of btn "File" of grp "mcp_menu" of cd 1 of stack "old_cp" also comes up empty. I found this when setting the p

Re: How can a button not have properties?

2015-10-23 Thread Mark Schonewille
Hi, Actually, a property isn't an array. You have to put the properties property into a variable to make it an array. Mark Schonewille http://economy-x-talk.com Buy the most extensive book on the LiveCode language: http://livecodebeginner.economy-x-talk.com Op 10/23/2015 om 23:07 schreef Dr.

Re: REST API support (and OAuth too)

2015-10-23 Thread Mike Kerner
The dropbox library also uses oauth - but 1, not 2 There CAN be issues with REST API's, if the site in question implements TLS a certain way. I have a bug report in on this, but the team hasn't dealt with it, yet, presumably because it's a PITA to figure out, and they seem to think it's caused by

Re: How can a button not have properties?

2015-10-23 Thread Ali Lloyd
Indeed, or you can force evaluation to an array using brackets. put the keys of (the properties of btn "File" of grp "mcp_menu" of cd 1 of stack "old_cp") On Fri, Oct 23, 2015 at 10:09 PM Mark Schonewille < m.schonewi...@economy-x-talk.com> wrote: > Hi, > > Actually, a property isn't an array.

Re: How can a button not have properties?

2015-10-23 Thread Ali Lloyd
I wonder if this is something we can fix. At the moment "the keys" is hard-coded to allow the drag/clipboard data properties as source arrays. There's probably a parsing ambiguity involved in having an object property source that is not currently obvious to me. On Fri, Oct 23, 2015 at 10:15 PM Al

Sending encrypted and authenticated emails

2015-10-23 Thread Bob Sneidar
Hi all. I just figured out how to send encrypted authenticated emails via Exchange servers (although the same process applies to non-Exchange systems) via a shell. Telnet has to be installed to do this however, and Windows 7 and up have the telnet client disabled by default for some reason. If

Keep Selection Focus When Switching to Substack

2015-10-23 Thread Sannyasin Brahmanathaswami
I think I asked this before, but… is there a way to keep the selection when switching to a substack that is set to palette? The goal is to have buttons that operate on selected text, but in a separate stack. Brahmanathaswami ___ use-livecode mailin