http://qs1969.pair.com?node_id=861450


in reply to Re: How do I apply formatting to a particular word in a docx file using Win32::Ole in Perl?
in thread How do I apply formatting to a particular word in a docx file using Win32::Ole in Perl?

@NetWallah, thanks for the guidance. But perl throws me an error suggesting that $w->Text returns an uninitialized value. I've used the following lines of code to check for the keys of the $w hashref:
my @keys = keys %{$w}; print @keys,"\n";
And I get the following hash keys: Count First Last Application Creator Parent

It seems I can only use something like $w->First->Text. But I'm stuck there :(