Thread In Taskleiste verschwinden lassen (44 answers)
Opened by Froschpopo at 2005-04-04 23:59

Froschpopo
 2005-04-23 19:28
#43220 #43220
User since
2003-08-15
2653 Artikel
BenutzerIn
[default_avatar]
ich hab mal was ausprobiert:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
sub systray_RightClick {
my $systray_menu = new Win32::GUI::Menu(
"SystrayMenu Functions" =>"SystrayMenu",
"> Öffnen" => "welcome",
);
my($x, $y) = Win32::GUI::GetCursorPos();
$config{Win32Window}->TrackPopupMenu($systray_menu->{SystrayMenu}, $x, $y-50);
}

sub welcome {
print "hallo\n",
}

warum gibt er "hallo" nicht aus?

View full thread In Taskleiste verschwinden lassen