Link to home
Start Free TrialLog in
Avatar of altrnt
altrnt

asked on

Perl script to open document in Word

Dear reader,

if Microsoft Word is already open on my desktop, does a script excist to open a document in word from a certain part on my HD? Also is it possible to copy a certain word in Word with perl?

Thanks in advance.
Avatar of clockwatcher
clockwatcher

Win32::OLE's GetActiveObject method can return a reference to the currently running word application.  The code snippet below is an example of opening a document within the currently running word app.

As far as copying a word goes, what word are you trying to select?  You can do anything that Word's object model supports and copying a word is definitely part of it.  But in order to give you an example that would be of any help, you'd need to describe how to go about finding the word you want to copy (e.g., "want to select the word(s) that are between some other specific words" or "the second word of the third paragraph").
use Win32::OLE;
 
my $wd = Win32::OLE->GetActiveObject("Word.Application") || die Win32::OLE->LastError();
 
if ($wd) {
  $wd->Documents->Open("c:\\some\\path\\somewhere\\document.doc");
}

Open in new window

Do you need something like this:

http://www.adp-gmbh.ch/perl/word.html
Avatar of altrnt

ASKER

clockwatcher:

for example I want to select the word: "typing" in the first and only sentence.
So the sentence in the word document would be:
I am currently typing in word.

And then I would like to copy the word "typing"..
ASKER CERTIFIED SOLUTION
Avatar of clockwatcher
clockwatcher

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial