You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
437 B
Perl

#!/usr/bin/perl
use warnings;
use strict;
use Win32::OLE;
chomp( my $line = <STDIN> );
my $word = new Win32::OLE( "Word.Application" )
or die( "Error opening a document in Word: $!" );
$word->{ Visible } = 1;
$word->Documents->Add();
$word->Selection->Font->{ Size } = 100;
$word->Selection->Font->{ SmallCaps } = 1;
$word->Selection->Font->{ Animation } = 3; # sparkle text
$word->Selection->TypeText( $line );