in reply to Re^2: Term::ANSIMenu help
in thread Term::ANSIMenu help
The color is simple (a feature to prevent color bleeding). The style is by DEFAULT the value CLEAR, which means "nothing". so you need to unset it to make it work:
item_fgcolor => "YELLOW", item_style => [],
item_style: must be one or more of BLINK, REVERSE, BOLD, UNDERLINE and CLEAR
edit:
also, end your script with:
$menu->pos($menu->item_count() + 7, 1);
It will move the cursor to the bottom of your menu
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Term::ANSIMenu help
by PerlTwo (Initiate) on Dec 10, 2016 at 08:10 UTC |