DELETEMENUITEM
Syntax DELETEMENUITEM itemID
 
Explanation Use the DELETEMENUITEM command to delete a single item from a menu. The item will be gone;to access it, you will have to redefine it with the APPENDMENUITEM command or exit and restart Logo. The input to DELETEMENUITEM is the command number of the menu item which you can find with the FINDMENUID command.

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

Example FINDMENUID "File "Quit
Result: 32759
DELETEMENUITEM 32759

TopIndex