Do you need something like this:
http://www.adp-gmbh.ch/per
Main Topics
Browse All TopicsDear 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.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Do you need something like this:
http://www.adp-gmbh.ch/per
I'm still not clear what you're really trying to do within Word. By copying, do you mean selecting and copying to the clipboard or do you mean placing inoto a perl variable or something altogether different?
The following code dumps the words out of the document that you loaded into your active word app.
Business Accounts
Answer for Membership
by: clockwatcherPosted on 2009-07-11 at 10:48:01ID: 24831487
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").
Select allOpen in new window