Copying image from one document to another
Hello,
It is probably a dumb question, but Macintosh and I are like fire and water. I made an indesign document where all the barcodes of my products are stored and another document with the layout of my catalogue. I would like now to paste the first barcode picture from the first document in the first rectangle of the second document using a script.
This is what i have so far (applescript):
tell application "Adobe InDesign CS4"
set Buffer to rectangle 1 of document "test.indd"
select Buffer
copy
set selected to rectangle 1 of page 1 of document "example.indd"
paste into selected
end tell
I'm getting the error: Invalid selection status.
Can someone help me?
Thanks