Help for this page

Select Code to Download


  1. or download this
           my @menu_bar_names = qw ( aMenu bMenu ... );
           my @MenuItems="";
    ...
                         MenuItems => [ @MenuItems ] };
           my %cMenu = { label => "  C",
                          MenuItems => [ @MenuItems ] };
    
  2. or download this
       foreach my $app (@sorted_applications) {
          $app = lc $app;
    ...
             push  (@{ $bMenu{MenuItems} },$app);
             next;
    ...
    
  3. or download this
             print " @{$aMenu{MenuItems}}[0]\n";
    
  4. or download this
    foreach my $abc_menu (@menu_bar_names) {
             print " @{$abc_menu{MenuItems}}[0]\n";
    }