Changeset 2817
- Timestamp:
- Dec 1, 2017, 11:27:47 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/menu.e ¶
r2816 r2817 526 526 ; --------------------------------------------------------------------------- 527 527 ; Change a menu items text with a variable part (a part in brackets). 528 ; Note: The MenuIdName must here submitted, not the MenuId, which works 529 ; also in the defs above. 530 ; Additionally, the menu id and the menu text must have been stored in the 531 ; array vars 'mid_'MenuIdName and 'mtext_'MenuIdName. 532 defproc SetMenuVarText( IdName, VarTextPart) 528 ; The menu id and the menu text must have been stored in the array vars 529 ; 'mid_'MenuIdName and 'mtext_'MenuIdName. 530 defproc SetMenuVarText( MenuId, VarTextPart) 533 531 -- Optional appending text part 534 532 AppendTextPart = arg(3) 535 MenuId = GetAVar( 'mid_'IdName) 533 if IsNum( MenuId) then 534 IdName = GetAVar( 'midname_'MenuId) 535 else 536 IdName = lowcase( MenuId) 537 MenuId = GetAVar( 'mid_'IdName) 538 endif 536 539 MenuText = GetAVar('mtxt_'IdName) 537 540 parse value MenuText with next'['x']'rest
Note:
See TracChangeset
for help on using the changeset viewer.