[plt-scheme] Re: Proper way to close windows
> Matthew Flatt wrote:
> Does closing the child window in this test program prevent Alt from
> working right on your machine?
No, you have to modify the labels so they are Alt key accessible, then they don't work. Change:
> (make-mb f "Parent")
> (make-mb c "Child")
to:
(make-mb f "&Parent")
(make-mb c "&Child")
Before you close the child window, Alt-C selects the Child menu. Close the Child window and Alt-P does not allow you to access the Parent menu.
Thank you for your reply.