I'm using Win32::Console for my console output. I have one .pl file (this is main) calling few other .pl files. The subs are scattered across the files.
I'm using following code snippet using the module wherever I need to print something to console. The object is created once obviously in the main script.
$CONSOLE = Win32::Console->new(STD_OUTPUT_HANDLE); #in main
$attr = $CONSOLE->Attr(); # Get current console colors
$CONSOLE->Attr($FG_RED | $BG_BLACK); # red text on black
print "Hello world!\n";
$CONSOLE->Attr($attr); # Set console colors back to original
But I'm not seeing the colored outputs when the print command is in a sub which is in one of the called files.
The print from the sub in the main file is working. I'm using the latest ActivePerl community edition.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|