Same XMP for PDF and MS WORD

I have made a XMP for al the Pdfs that we have .. and I was wondering if I can use the XMP in MS WORD .. :-/
Am using for now Office XP soon it will Office 2003
thnx Helda

The following is extracted from an AppleScript that I used to determine properties across PDFs and docs on Macintoshes (using applescript). I'm afraid I can't help with the scripting of Win as I know little about that, but the essence should be the same, a script passes commands to gather variables from Word and then passes these to the javascript controls of Acrobat:
Word gathers variables with:
Dim DocTitleWd As Object
Set dp = ActiveDocument.BuiltInDocumentProperties
theProp = dp(wdPropertyTitle)
This then needs to be passed to "docTitle = info.Title;" in the javascript controls of Acrobat
Sorry I can't be of more help!
www.poundhill.com make (?) a Word XMP plugin, I think...

Similar Messages

  • I am currently receiving error message "Microsoft Excel quit unexpectedly".  Any suggestions on how to fix?  I notice same message for powerpoint and word.

    I am currently receiving error message "Microsoft Excel quit unexpectedly".  Any suggestions on how to fix?  I notice same message for powerpoint and word.

    That generally has to do with data corruption.   Is your data backed up?
    What version of Office do you have?
    What Mac operating system?

  • Search text in PDF and MS Word document

    Can any body tell me how search text in PDF and MS Word document through Java code, any body has code or any suggestion to give
    Thank You
    Adnan

    Can any body tell me how search text in PDF
    and MS Word document through Java code, any
    body has code or any suggestion to giveYes.
    First, you need to work out how to read each document type from Java.
    E.g, for MS Word you could use Apache Jakarta POI - HWPF: http://jakarta.apache.org/poi/hwpf/index.html
    Then, you use Apache Lucene to index and search.
    See http://lucene.apache.org/java/docs/index.html
    ~D

  • To upload pdf and ms word document in VA01 header menu -TEXT tab

    I want to upload local file (PDF and Word) in R/3-VA01-Text Header..
    Can any one tell me the solution for that.

    Can any body tell me how search text in PDF
    and MS Word document through Java code, any
    body has code or any suggestion to giveYes.
    First, you need to work out how to read each document type from Java.
    E.g, for MS Word you could use Apache Jakarta POI - HWPF: http://jakarta.apache.org/poi/hwpf/index.html
    Then, you use Apache Lucene to index and search.
    See http://lucene.apache.org/java/docs/index.html
    ~D

  • Japanese/C​hinese Font for PDF and MS Office files

    Hi,
    I have both the BB9860 and the Playbook, always uses the Playbook to download and read email attachments.
    However, I realise that for  PDF and MS Office files, japanese/Chinese fonts are not supported.
    Is there any way for me to download the add-ons and install into my playbook?
    Thanks.
    Regards, Song Por

    PDF can display chinese, MS Word cannot display chinese.

  • Bridge does not show dimensions for .PDF and .AI files

    Is there any way to see the dimensions in cm (or inch) for PDF and AI files in Bridge? I'm using Bridge CS5 4.1.0.54 as part of CS5.5 Design Premium, have set the preferences in Bridge to show them, but there are no values in the metadata fields for dimensions in inch/cm. I don't know if this behaviour is normal or if there's something wrong with my installation...
    TIA,
    Matthias

    May be 'dimension' is not the right word/translation. In my german version it says 'Abmessungen (in Zoll)' or 'Abmessungen (in cm)', which should mean something like 'dimension' or 'size'. DIN A4, A5, US Letter, Legal etc. pp. in cm or inch.

  • How to open and read pdf and micrsoft word (.doc) files or documents

    My problem is how to use my BB 9800 software version 6.0.0.546 to read/view pdf files and microsoft office documents. I have also bought documents to go from online and have installed it on my phone, but whenever i try to open it I receive a message that it is incompactible. Any help will be greatly appreciated.

    Hi, Sammy.
    Why not install a 3rd party PDF reader and Word Doc reader to help open and read pdf and micrsoft word (.doc) files or documents? You can google it and select one whose way of processing is simple and fast to help you with the related converting work.  It will be better if it is totally manual and can be customized by users according to our own favors. Remember to check its free trial package first if possible. I hope you success. Good luck.
    Best regards,
    Arron

  • Lick on the icon in appstore which allows to gift an app or copy link , post to facebook etc does not open it stucks.Also same case for itunes and moreover when I play music in iTunes it

    Itunes and appstore problems:
    i have an iPhone 5 whenever I try to click on the icon in appstore which allows to gift an app or copy link , post to facebook etc does not open it stucks.Also same case for itunes and moreover when I play music in iTunes it stops ..start again stops and start again ..stops and does not play..so I  am unable to make gift purchase and listen to the songs..are these bugs or what? help

    ps when syncing it jumps through steps 1 - 4 real fast, i seem to remeber iphone showing the number of tracks transferring and names, but i see nothing? then it sits on 5 saying "waiting for changes to be applied"

  • Same BS for sender and receiver comms

    Hey pals,
    can we use same BS for sender and reciever communication channels?!!
    -Esha

    Hello Esha,
    You have to you 2 BS
    One from where u hav to pick the file and the other one where you want to post it.
    what is a Business system? What is use of creating it
    Business System have an entry in the SLD and Buiness Service do not.
    Business Systems are used when you are sending data to and from an R3 system and can be of ABAP, JAVA and Third Party Types.
    Business System is a logical representation of a Technical System.
    Business Service is a abstract representation of a System. For instance, www.google.com have a several system working together and IPs of this machines change eventually. When we use a Business Services like google we reference a computer that we don't know the phisical implementation.
    Thanks,
    Satya
    Edited by: SATYA KUMAR AKKARABOYANA on May 15, 2008 5:51 PM

  • Different segment in same document for leading and non-leading ledger

    Hi,
    Is it possible to have different segments derived in the same document for Leading and Non-leading ledgers.
    Is there an exit where we can substitute the segment originally derived so as to update only in one particular ledger
    Please suggest.

    Thanks Alex for your response.
    But would it be possible to update the segment only in one ledger, the other one carrying the default values coming from profit center?

  • Bug or feature: TableView.EditEvent - same type for value and row?

    Just noticed (normally I don't care overly much about generics, they are my natural enemies : -) that the return type for both cell and row data is the same:
    class EditEvent<T> {
        T getNewValue()
        T getOldValue()
        T getRowValue()
    }old/new value is fine, but typically the row has another type, which most probably is completely unrelated, as f.i. in
    TableView<Person> tableView = new TableView<Person>(persons);
    TableColumn<String> firstName = new TableColumn<String>("First Name");
    firstName.setProperty("firstName");
    EventHandler<EditEvent<String>> nameEditHandler = new EventHandler<TableView.EditEvent<String>>() {
                @Override
                public void handle(TableView.EditEvent<String> e) {
    // compile error
                    Person p = (Person)e.getRowValue();
                    String newValue = (String)e.getNewValue();
                    p.setFirstName(newValue);
    firstNameCol.setOnEditCommit(nameEditHandler);The compile error is due to the event requiring the same type for row and cell. Obviously, can remove all type parameters - but how to solve cleanly without getting unchecked/rawtype warnings?
    Thanks
    Jeanette

    Good morning, Jonathan (my day time : -)
    If you mean that big issue where you threaten (and locally actually already did) to remove all the niceties of auto-magic column binding via setting property names - yeah, I've read it, partly unhappily. But that's another story.
    to create two separate EditEvents - one for row edits and one for cell edits.
    hmm .. have been expecting something along the lines of
    EditEvent<R, C> {
         R getRowValue();
         C getOldValue();
         C getNewValue();
    // used in
    TableView<R>
    TableColumn<C>
    // for row edits
    R == C
    getRowValue() == getOldValue()Musing a bit longer, the event could be streamlined a bit - remove all the convenience sugar: the receiver has to know the exact details of grabbing the data anyway in order to be able to change it (in the current workflow, it's not necessarily the way to go) so old/row is redundant
    EditEvent<S> {
       <S> getEditValue();
    }Cheers
    Jeanette

  • Same SLD for dvlpmnt and prod servers??

    Is it right to have same SLD for Development and Production servers??

    Hello,
    Is it right to have same SLD for Development and Production servers??
    The answer actually depends on your requirements, you can refer to this thread for more information (see the reply of Bhavesh):
    Re: Difference Between Central SLD & Local SLD
    The approach we've taken is more like what Barry suggested in the thread.
    Hope this helps,
    Mark

  • PDF and MS-Word files on iPad

    Hi,
    Can somebody help me with information about how to read PDF and MS-Word file on iPad? If Yes then how to achieve that.
    Regards,
    Ratnakar

    Have a look at the following (in my order of preference)
    http://itunes.apple.com/sg/app/quickoffice-pro-hd-edit-office/id376212724?mt=8&l s=1
    http://itunes.apple.com/sg/app/documents-to-go-premium-office/id317107309?mt=8&l s=1
    http://itunes.apple.com/sg/app/office2-hd/id364361728?mt=8&ls=1

  • Can I search for pdf and word documents at the same time in finder?

    I often want to search for more than one file type at a time - for instance pdfs and word docs in a directory, or Jpgs, GIFs, PNGs etc.
    Can I do this in the finder in one go (so I can save it as a folder I can then select when I want to)?
    I tried typing OR between the 'tokens' it creates, but then it just searches for OR - so not as intelligent as one would think?!
    Surely there must be a way to do something as simple as this?
    regards
    Rob

    Forget the whole "tokens" business (I think that is a pretty useless "improvement" to constructing Spotlight searches). Hit command-F to bring up the search window, and set your first criteria, in the example I changed it from the default Kind to Created Date, to keep the number of results manageable. Now hold down the Option key and click on the "+" at the end of the criteria line, it will change to "..." and you get a new criteria line. From the dropdown menu choose "Any" if necessary (this will give you the Boolean OR), then enter what you want in the first sub-head. To get a second sub-head OR criteria click the "+" at the end of the Any line.
    I don't generate many MS Word docs, so I just stopped in the example above after typing Microsoft, since that brought up all the MS anything I have from this year (a couple of Power Point thingies sent to me by friends).
    Francine

  • Export for PDF and items disapear from the page...

    Hello Big Masters,
    please give me a solution to the fact that:
    I lose some items (a text box and a graphic) at the export from Indesign to PDF.
    -The file is 6 pages long. Simple. Some text and small pictures.
    -The missing items are close to the right bottom of the page. It is allways on the same page. In my case on the last page.
    -The missing item is exactly the same like some others. (it is like an object I could put on master page, but I wanted only to COPY/ PASTE IN PLACE)
    -I tried countless solutions, but no one passed successfully. I tried to ungroup/regroup (it is an object made of letters and outlined letters), I tried to outline all of the object, I tried recopy the object, I tried to put the page in a different order (thinking that the bug always came on the last page), I closed down indesign, I tried different PDF quality options, I tried renaming and overwriting, I checked all the layers (they are all printable). NOTHING worked.
    I start worring about the quality of Indesign, that I thought being the perfect software for multipage layouts, but I experienced this bug that wasted me 2 hours. In the researches for solutions I also found out that more problems are ahead in big ePubs or when you bring old big files, with Masterpages, it seems that is a real mess what comes out.
    Do you experience these troubles with Bermuda-effect in Indesign (dissapearing items surprisingly unexpected...)???

    The answer for you is YES.
    But Still didn't get the bug solved.
    The first pic as you see, is from ID before I export to PDF
    and the last image is the crazy pdf file, I am getting.
    If the adobe guys need my file for investigation, I can send it to them somehow.
    But then again, I got a compromise solution by putting the "missing" object on a separate masterpage.

Maybe you are looking for

  • How to write text vertically in an table cell?

    Is it possible to make a table cell where the text would be written along a vertical base line? I found how to make a text box and rotate it vertically. How may I place such a text box in a table cell? dan    

  • I am getting this error while doing pgi

    Account determination for entry DDEL GBB DDEL VAX 7920 not possible Message no. M8147 Diagnosis The system did not find an account for this transaction. This means that the account determination for key DDEL GBB DDEL VAX 7920 is not maintained in MM

  • Chinese characters in EXCEL

    Hi Friends, I am facing problem regarding EXCEL download with Chinese Language character. I am using following code to download internal table contains Chinese character on presentation server.   CALL METHOD cl_gui_frontend_services=>gui_download    

  • I need to re install mac os x lion 10.7 for my mac s no c0*****hjf

    I need to re install mac os x lion 10.7 for my mac s no c0*****hjf <Edited by Host>

  • Laptop comparisons

    I have been trying to find out what is the difference between these 2 HP laptops: 1) G60-635DX Notebook, and 2) G60-630 Can anyone please explain the difference Need new laptop today. Thanks Louise