Help for this page

Select Code to Download


  1. or download this
    @color = qw|red green blue|;
    
    ...
            $X+1, $Y+1,
            -fill => $color[1];
        );
    
  2. or download this
    $widget->setPalette('red');
    
  3. or download this
    ($r, $g, $b) = $widget->rgb("red");
    $hex_color = "$r$g$b$";
    $mw->Button( -background => $hexcolor);