<div>Hello all,<br><br>After spending half an hour looking at Cmenu.pm I've come to the conclusion that hacking up Cmenu.pm is beyond my limited programing skills. If someone is willing to look at the module and let me know how much $ they would need to make it do what I need (print menu choices in different colors) I would be interested in hiring them if the cost is not prohibitive. <br><br>MORE ABOUT WHAT I NEED:<br><br>If you install Cmenu and run the script below the choices gimmie 1, gimmie 2, gimmie 3 are in plain text. I would like to find a way to make those choices different colors. For example, gimmie 1 (in red), gimmie 2 (in yellow), gimmie 3 (in blue).<br><br><br>#!/usr/bin/perl <br> <br># Sample Cmenu script <br><br>use Cmenu;<br> <br>menu_initialise("Cmenu Sample Script"); <br> <br>menu_init("Menu Title","Menu Help Text"); <br><br><br>menu_item("Option 1","gimme1"); <br>menu_item("Option 2","gimme2");<br>menu_item("Option 3","gimme3");<br> <br> <br>chop($sel = menu_display("Menu Prompt")); <br> <br>menu_terminate("bye bye");<br><br><br><br><br><br> Chicago.pm chatter <chicago-talk@pm.org> wrote:<br><br><br> /usr/local/share/perl/5.10.0/Cmenu.pm<br><br> This is the one that Perl's going to be using w/ a<br> use Cmenu;<br><br> stmt<br><br> /home/richard/.cpan/build/Cmenu-1.1-2rnVpQ/blib/lib/Cmenu.pm<br> /home/richard/.cpan/build/Cmenu-1.1-2rnVpQ/Cmenu.pm<br> /home/richard/.cpan/build/Cmenu-1.1-xSHlXX/Cmenu.pm<br> /home/richard/.cpan/build/Cmenu-1.1-Ym3lRy/Cmenu.pm<br><br><br> These are all part of the install process - appears you installed v1.1 a couple times ... or at least fetched a 4 times and built one of them? Anyway, they might be useful if you break the usr/local one, if you've no backup.<br><br> a<br> ----------------------<br> Andy Bach<br> Systems Mangler<br> Internet: andy_bach@wiwb.uscourts.gov<br> Voice: (608) 261-5738;<br> Cell: (608) 658-1890<br><br> Any sufficiently advanced bug is indistinguishable<br> from a feature. -- Rich Kulawiec</div>