DELETEMENU
Syntax DELETEMENU name
 
Explanation The DELETEMENU command deletes a menu from the menu bar. The menu cannot be restored. If you, for example, delete the "File" menu, it will be gone. You need to exit and restart Logo to have access to the File menu again.

Logo still understands the menu command numbers, however, so you can remove the File menu and still execute all the commands associated with the File menu. Use FINDMENUID to retrieve the command number for a menu item, and COMMAND to invoke a menu command.
 

Example DELETEMENU "File

TopIndex