I don't know if I completely understood durnurd's suggestion, but I did get an idea from it (which maybe matches the intent). Rather than creating multiple separate layers or maps to contain this content, you could just have one overlay layer that you use to display menus, and write some functions to update this layer as if it were a screen of text. You can create a "PrintText" function, a "Locate" function, a "clear" function and so forth to output text, set the current position and reset the content of the layer. On the plus side, you don't have to create a new layer every time you introduce a new menu screen, and all the menu behavior could maybe be maintained in one place. On the negative side, though, you wouldn't be able to visually design how your menus look in a WYSIWYG editor, and easily add fancy decorations and such. Positioning things correctly would be trial and error. If you think your menus are going to be formatted in a relatively static way (not be constantly changing), and will include lots if formatting and decoration, you might want to go the route of designing them in the layer editor, but if you want the freedom to change, add and reformat the menus easily by editing the code, you might not want to lock down each menu's design in the layer editor.