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?
Substack not showing
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Re: Substack not showing
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!
Mainstacks stack script:
Done!
Best
Klaus
when you open a stackfile, only the mainstack will be opened automatically,
so add a script to your mainstack that opens the substack!

Mainstacks stack script:
Code: Select all
on openstack
go stack "def"
## More openstack stuff here...
end openstack
Best
Klaus
Re: Substack not showing
