in reply to Re^2: Icon generation on the fly
in thread Icon generation on the fly
#!/usr/bin/perl use strict; use warnings; use SystemTray::Applet; my $num = 10; my $applet = SystemTray::Applet->new( "text" => $num, "callback" => sub { my ($self) = @_; $self->{"text"} = $num; } );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Icon generation on the fly
by chessgui (Scribe) on Feb 01, 2012 at 05:36 UTC |