How to export PDF attachments to Endnote?

Dear Devs,

I know there is a way to import Endnote attachments to Zotero: http://forums.zotero.org/discussion/5311/importing-endnote-libaray-including-pdf-attachments/ But can I Export Zotero attachments (mainly PDF files) to Endnote?

Thank you!
  • Do I need to write an extra RIS export translator as this discussion suggested?
    http://forums.zotero.org/discussion/9733/how-to-export-item-pdf-from-zotero-to-endnote/
    Many thanks!
  • edited September 14, 2010
    Here it is
    http://forums.zotero.org/discussion/7961/export-in-ris-format-link-to-pdf-file/

    cumuluss Jun 20th 2010 edited
    Now I have a two-step solution for the file path including in the RIS output.
    1. Exporting the references with this complemented code for the L1 line in the RIS output.

    //attachments
    if(item.attachments) {
    for each(var attachment in item.attachments) {
    var string = "storage/"+attachment.key+"/"+attachment.title;
    addTag("L1", string);}}

    2. Replacing the "storage" part of the L1 line in the generated RIS output by the current used storage directory of the library added by file:// in the beginning.
    For example: storage replaced by file:// C:/Users/<User Name>/AppData/Roaming/Mozilla/Firefox/Profiles/<randomstring>/zotero/storage
    Maybe one can improve this.
Sign In or Register to comment.