So the Menu() command is my weapon of choice for creating user interfaces about 66.67% of the time. When I don't use it, it's because I need multi-layered menus, like the ones you get when you hit [MATH], or [prgm]. Is it possible to do this with menu() or any other single command?
example code:
WORKS:
Code:
DOESN'T WORK:
Code:
Code:
[/code]
example code:
WORKS:
Code:
Menu("name","a",a,"b",b,....
DOESN'T WORK:
Code:
Menu("layer1","a",a,"b",b,"layer2","ab",ab,"bb",bb,...
Code:
Menu("layer1","layer2","a",a,"b",b,"ab",ab,"bb",bb,...
[/code]