Page 1 of 1

Substack not showing

Posted: Thu Aug 18, 2011 12:38 pm
by ibe
I must be missing something obvious, but my problem is the following:
1. create main stack "abc"
2. create new substack of "abc" called "def"

both stacks are shown on the screen. Save and close Livecode. Next time I open stack "abc" only it is displayed. If i got to Application Browser and double-click on "def" it pops up.

How do I get the stack "def" to show automatically?

Re: Substack not showing

Posted: Thu Aug 18, 2011 12:43 pm
by Klaus
Hi ibe,

when you open a stackfile, only the mainstack will be opened automatically,
so add a script to your mainstack that opens the substack! :D
Mainstacks stack script:

Code: Select all

on openstack
  go stack "def"
  ## More openstack stuff here...
end openstack
Done!


Best

Klaus

Re: Substack not showing

Posted: Thu Aug 18, 2011 4:21 pm
by ibe
:-) Thanks.