Ken, Thanks for your quick reply! I will try your suggestion. This is the first time I have used a substack in Rev. As you guess, I am still new at using Rev.
I'm sure what's going on is that the main stack has an "on closeStack" handler in it stack script that quits the main stack. When you close the substack, the "closeStack" message gets sent to the substack and then travels through to the main stack where it is trapped. The solution is one of the following: 1) Move the main stack's "on closeStack" handler to the card script instead of the stack script of the main stack (if it is appropriate to your deployment). Since open/close/etc. messages are first sent to the *card* this will allow the main stack to get the closeStack message it needs, but also allow the substack's closeStack message to zip right past it and not get trapped by the main stack. 2) Change the "on closeStack" handler of the main stack to include a line like: on closeStack if the owner of the target is me then quit else pass closeStack end if end closeStack This will evaluate who originally got the message; if it was the main stack's card, then the "owner of the target" would be the main stack itself, and it would quit. If, on the other hand, it was the *substack's* card, then the "owner of the target" would be the substack, and so it would pass the closeStack message and not quit. 3) In your substack, put the following handler in either the card or stack script: on closeStack end closeStack This will trap the message and prevent if from being passed, but at the same time won't prevent the substack from closing. On the other hand, I could be completely wrong about why your stacks are quitting, but this is a situation I've seen many times, and it usually boils down to the above. HTH, Ken Ray Sons of Thunder Software, Inc. Email: [EMAIL PROTECTED] Web Site: http://www.sonsothunder.com/ _______________________________________________ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution -- View this message in context: http://www.nabble.com/Closing-a-substack-tp17551238p17551474.html Sent from the Revolution - User mailing list archive at Nabble.com. _______________________________________________ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution