Re: Identifying IDE stacks

2018-04-27 Thread J. Landman Gay via use-livecode
This has been informative. IDEUserMainStacks() is exactly what I want, I don't care about substacks at the moment. With four or five different ways to get the info, I think all bases are covered. Many thanks to those who have the courage to dig through the IDE scripts. On 4/27/18 7:42 PM, Br

Re: Identifying IDE stacks

2018-04-27 Thread Brian Milby via use-livecode
If you just want a list then: ideUserMainStacks will provide part of what you are looking for (no sub stacks in my brief test). If you want substacks too, then use: revLoadedStacks (Common library) On Fri, Apr 27, 2018 at 7:24 PM Mark Wieder via use-livecode < use-livecode@lists.runrev.com> wrote:

Re: Identifying IDE stacks

2018-04-27 Thread Mark Wieder via use-livecode
On 04/27/2018 03:40 PM, Bob Sneidar via use-livecode wrote: Redundantly redundant. Heh. There's a hierarchy here: revIDEStackIsIDEStack(id) calls revIDEStackNameIsIDEStack(short name) which calls revStackNameIsIDEStack(short name) ... which may call revInternal__ListLoadedLibraries(), but tha

Re: Identifying IDE stacks

2018-04-27 Thread J. Landman Gay via use-livecode
Interesting...so there are two ways. It looks like revIDEStackIsIDEStack needs a long id, and revStackNameIsIDEStack needs only the short name but will also accept a long ID. Thanks for finding the list of qualifications. On 4/27/18 5:09 PM, Mark Wieder via use-livecode wrote: On 04/27/2018 0

Re: Identifying IDE stacks

2018-04-27 Thread Bob Sneidar via use-livecode
Redundantly redundant. Bob S > On Apr 27, 2018, at 14:59 , Ali Lloyd via use-livecode > wrote: > > That would be revIDEStackIsIDEStack ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and

Re: Identifying IDE stacks

2018-04-27 Thread Mark Wieder via use-livecode
On 04/27/2018 02:45 PM, J. Landman Gay via use-livecode wrote: It used to be we could identify IDE stacks because their names started with "rev" but that's not true anymore. I want to scan for and list any open non-IDE stacks. Does anyone know offhand if there's an existing function in the IDE

Re: Identifying IDE stacks

2018-04-27 Thread J. Landman Gay via use-livecode
Thanks Ali. :) On 4/27/18 4:59 PM, Ali Lloyd via use-livecode wrote: That would be revIDEStackIsIDEStack On Fri, Apr 27, 2018 at 10:45 PM J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: It used to be we could identify IDE stacks because their names started with "rev" b

Re: Identifying IDE stacks

2018-04-27 Thread Ali Lloyd via use-livecode
That would be revIDEStackIsIDEStack On Fri, Apr 27, 2018 at 10:45 PM J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: > It used to be we could identify IDE stacks because their names started > with "rev" but that's not true anymore. I want to scan for and list any > open no

Identifying IDE stacks

2018-04-27 Thread J. Landman Gay via use-livecode
It used to be we could identify IDE stacks because their names started with "rev" but that's not true anymore. I want to scan for and list any open non-IDE stacks. Does anyone know offhand if there's an existing function in the IDE that identifies IDE stacks? Or maybe there's a property to chec