Page 1 of 1

Listing all the stacks that make up a stack

Posted: Tue Dec 13, 2016 11:51 am
by Mag
When you deal with external file stacks you have a lot of new things to keep in count, for example you cannot open a file stack that has the same name of a stack you use in your project because they can conflict (another one is that you cannot open file stacks with a integer as name because can conflict with the possibility of LC to refer to a stack with its name).


If you want to have a list of openStacks, you can use "the openStacks", is there also the possibility to dinamically list all the stack and substacks that make up a project (open and close ones)?

Re: Listing all the stacks that make up a stack

Posted: Tue Dec 13, 2016 1:18 pm
by Ledigimate
the mainStacks
lists all main stacks currently loaded into memory (one stack per line).

the subStacks of stack "mainStackName"
lists the substacks of a main stack, (one per line).

I hope this helps.

Gerrie

Re: Listing all the stacks that make up a stack

Posted: Tue Dec 13, 2016 4:53 pm
by Mag
Thank you Gerrie, it's exactly what I was searching for.