How can I create items of a Tk pop-up menu conditionally, for example with a switch 0/1 for the first command? (Possibly still using the same way to construct the -menuitems array (since I ve got increadibly many of such menus). This is how I construct my menu:

$menu = $mw->Menu(-tearoff=>0, -menuitems=>[ [command=>$MESS_0= -command=>[\&DialogMove, $obj,]], '', [command=>$MESS_1, -command=>[sub {MoveColumn('right')}, $obj,]], [command=>$MESS_2, -command=>[sub {MoveColumn('left')}, $obj,]], '', [command=>$MESS_3, -command=>[sub {HideColumn()}, $obj,]], [command=>$MESS_4, -command=>[sub { if ($ContentColumn11GLOBAL eq 11){$ContentColumn11GLOBAL=0} else {$ContentColumn11GLOBAL=11} SetViewFromSearchFrame11($ContentColumn11GLOBAL); }, $obj,]], [command=>$MESS_5, -command=>[sub { if ($ContentColumn12GLOBAL eq 12){$ContentColumn12GLOBAL=0} else {$ContentColumn12GLOBAL=12} SetViewFromSearchFrame12($ContentColumn12GLOBAL); }, $obj,]], ]); $menu->configure(-postcommand => sub { redefine_labels(); $menu->entryconfigure(2, -label => $MESS_1); $menu->entryconfigure(3, -label => $MESS_2); $menu->entryconfigure(5, -label => $MESS_3); $menu->entryconfigure(6, -label => $MESS_4); $menu->entryconfigure(7, -label => $MESS_5); });

In reply to Tk create menu item dynamically by IB2017

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.