/***
I agree about menu helps. It seems that the F1 can look for them, but
there does not seem to be a way to 'create' them.
I explored this once before and came up with a simplified one-line help
for any item in a menu.
The example below shows a 'message' after three commas after each menu
item. This message will appear on one line at the bottom of the screen
while each item is hilited. No need to press the F1 key.
***/
// jigmenuhelp.s - try to offer help on menu item
<ctrlshift x> execmacro("jigmenuhelp")
menu mtest()
title="Testing menu Help Menu"
history
"" , , divide
"" , , _mf_skip_
""
"I&tem 1" , , , "This is help for Item 1 in the mTest Menu."
"Item &2" , , , "This is help for Item 2 in the mTest Menu."
""
"" , , _mf_skip_
"" , , divide
end
proc main()
integer m=0
integer k=0
m=mtest()
k=query(key)
warn("Menu Selection: "+str(m)+chr(13)+"Key Pressed: "+keyname(k))
end