<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.&nbsp; 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.&nbsp; 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&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br># Sample Cmenu script&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br><br>use Cmenu;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br>menu_initialise("Cmenu Sample Script");&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br>menu_init("Menu Title","Menu Help Text");&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br><br><br>menu_item("Option 1","gimme1");&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br>menu_item("Option 2","gimme2");<br>menu_item("Option 3","gimme3");<br>&nbsp;&nbsp;&nbsp; &nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br>chop($sel = menu_display("Menu Prompt"));&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br>menu_terminate("bye bye");<br><br><br><br><br><br>&nbsp;&nbsp;&nbsp; Chicago.pm chatter &lt;chicago-talk@pm.org&gt; wrote:<br><br><br>&nbsp;&nbsp;&nbsp; /usr/local/share/perl/5.10.0/Cmenu.pm<br><br>&nbsp;&nbsp;&nbsp; This is the one that Perl's going to be using w/ a<br>&nbsp;&nbsp;&nbsp; use Cmenu;<br><br>&nbsp;&nbsp;&nbsp; stmt<br><br>&nbsp;&nbsp;&nbsp; /home/richard/.cpan/build/Cmenu-1.1-2rnVpQ/blib/lib/Cmenu.pm<br>&nbsp;&nbsp;&nbsp; /home/richard/.cpan/build/Cmenu-1.1-2rnVpQ/Cmenu.pm<br>&nbsp;&nbsp;&nbsp; /home/richard/.cpan/build/Cmenu-1.1-xSHlXX/Cmenu.pm<br>&nbsp;&nbsp;&nbsp; /home/richard/.cpan/build/Cmenu-1.1-Ym3lRy/Cmenu.pm<br><br><br>&nbsp;&nbsp;&nbsp; These are all part of the install process - appears you installed v1.1 a couple times ... or at least&nbsp; fetched a 4 times and built one of them?&nbsp; Anyway, they might be useful if you break the usr/local one, if you've no backup.<br><br>&nbsp;&nbsp;&nbsp; a<br>&nbsp;&nbsp;&nbsp; ----------------------<br>&nbsp;&nbsp;&nbsp; Andy Bach<br>&nbsp;&nbsp;&nbsp; Systems Mangler<br>&nbsp;&nbsp;&nbsp; Internet: andy_bach@wiwb.uscourts.gov<br>&nbsp;&nbsp;&nbsp; Voice: (608) 261-5738;<br>&nbsp;&nbsp;&nbsp; Cell: (608) 658-1890<br><br>&nbsp;&nbsp;&nbsp; Any sufficiently advanced bug is indistinguishable<br>&nbsp;&nbsp;&nbsp; from a feature.&nbsp; -- Rich Kulawiec</div>