7 Einträge, 1 Seite |
1
2
3
4
5
6
7
use Tk;
$top = new MainWindow;
$top->update;
$top->grabGlobal;
$top->after(3000, sub { $top->destroy });
$top->bind("<Motion>" => sub { warn join ",", $top->pointerxy });
MainLoop;
1
2
3
4
5
6
7
8
9
10
11
# Modul einbinden
use Win32::GUI;
# Bildschirm holen
my $screen = Win32::GUI::DC -> new( "SCREEN" );
# Bilddaten auslesen ( da gibts bestimmt schon ne Funktion GetRect() oder ähnlich, habs aber gerade nur so im Kopf )
my $color = $screen -> GetPixel( $x, $y );
# Desktop bemalen ( bestimmt kannste auch direkt ein Rechteck malen, hab nur gerade nur diese Funktion im Kopf )
$screen -> SetPixel( $x, $y, $color );
7 Einträge, 1 Seite |