in reply to Win32::OLE Word Macro Conversion
You have
With Options .LocalNetworkFile = False
Now... Options is unqualified which means it belongs to the Application object (VBA assumes this), perl won't... try:
(untested!)... HTH - Mark$Word->Options->{LocalNetworkFile}=0; ... $Word->Options->{LabelSmartTags}=0;
In Section
Seekers of Perl Wisdom