How to export the indesign file to coreldraw

Hi all

I had created a brochure that would be printed to a professional printer. There, they use Indesign. Instead, they use Corel Draw.

How to export the indesign file created in corel draw.

and printing

@Dov, sorry. But there are places on Earth where the upgrade to a more modern workflow just will not happen either by choice, or more often, because of the money. I've dealt with a few printers to India use CD (beautiful dig to Corel, btw) or Illy. Just like that.

@srikanth977, all printers I treated using an older workflow and equipment that use CD or Illy for output agreed a PDF file. In addition, each of them wanted to PDFX-1A a PDF file without crop marks, bars of color, etc.. So check with your printer. They then add these features when they print.

Best regards, Mike

Tags: InDesign

Similar Questions

  • How to export the Indesign to Format XML using JavaScript document

    Hi all...

    Can someone help me, how to export the indesign document to XML Format using JavaScript...

    Thanks in advance...

    doc.exportFile ( ExportFormat.XML, File(Folder.desktop+"/doc.xml" )
    
  • It is possible in "CC Indesign" to export the indesign file to .mobi format?

    HY!

    I have a question for InDesign CC, the new version... I needed to export the indesign file to the domain .mobi for Kindle support? I can do it with this version? Or it is possible with InDesign CS6?

    Thank you

    Sonia Vairo

    The plug has not been updated since InDesign CS6.

    You can easily convert your file produced ePub from InDesign CC2014/CC2015 with the Kindle Previewer:

    http://www.Amazon.com/GP/feature.html?docid=1000765261

  • I have problem in the PDF export to save only the layers appeared only. When I export the indesign file to PDF that contains layers hidden pdf placed, pop up problem when I use the search field in exported pdf file. hidden text of hits from search results

    I have problem in the PDF export to save only the layers appeared only. When I export the indesign file to PDF that contains layers hidden pdf placed, pop up problem when I use the search field in exported pdf file. hidden text of hits from search results to laye

    I answered your question: there is nothing you can do in InDesign. You need to ask in the Acrobat forum I linked.

  • Export the InDesign file as text

    Hi all

    I need to export the InDesign file as text (textType). There are several examples of this, but I could not found the script that export InDesign file as text in the path of the active Indesign with the indesign file name document.

    For example: If the file is MyDoc.indd, export text file name should be mondoc.txt.

    If anyone has this code, please give me.

    Thank you

    Chang

    Talk in circles, are we not? See anwser #1 above!

    But suit yourself. That's what you ask:

    app.activeDocument.stories[0].exportFile(ExportFormat.TEXT_TYPE, new File(app.activeDocument.fullName.fullName.replace(/\.indd$/i,'')+".txt"));
    
  • How to export the XFDF file from PDF file?

    I need to export as long as XFDF file from the PDF file and then record the xfdf file at the same location through javascript. I used this.exportAsXFDF (); for export. But I do not know how to save the xfdf file in a script. Kindly advice me. It comes to Acrobat professional 8.0 and windows platform.

    mariaprabu wrote:

    I need to export as long as XFDF file from the PDF file and then record the xfdf file at the same location through javascript. I used this.exportAsXFDF (); for export. But I do not know how to save the xfdf file in a script. Kindly advice me. It comes to Acrobat professional 8.0 and windows platform.

    In the documentation, you will notice the for exportAsXFDF cPath parameter to specify a path and name of the file to save to.

  • How to get the indesign files subfolder

    Hi experts

    How can I tell the script what I get is the subfolders but not sub sub folder or sub sub sub... folder files.

    my script like this:

    function GetFiles (theFolder) {}
    var = [] files,
    fileList = theFolder.getFiles (),
    i, file;

    for (i = 0; i < fileList.length; i ++) {}
    file = list of files [i];
    If {(instanceof file folder)
    files = files.concat (GetFiles (file));
    }
    ElseIf (file instanceof file & & file.name.match(/\.indd$/i)) {}
    files.push (file);
    }
    }

    return files;
    }

    How can it change?

    Thank you

    Respect of

    John

    Hi John,.

    Try this code...

    The Final PDF files stored in the desktop / folder PDF

    //======================================================================================
    var gScriptName = "Batch export INDD-files to PDF"; // Name of the script
    var gScriptVersion = "1.0"; // Version
    var gSet = GetSettings();
    var flag=0,files = [];
    var fileLs=[];
    CreateDialog();
    //===================================== FUNCTIONS  ======================================
    function CreateDialog() {
    var pdfPresetsList =app.pdfExportPresets.everyItem().name;
    var win = new Window("dialog", gScriptName + " - " + gScriptVersion);
    win.p = win.add("panel", undefined, "");
    win.p.alignChildren = "right";
    win.p.alignment = "fill";
    
    win.p.g = win.p.add("group");
    win.p.g.st = win.p.g.add("statictext", undefined, "PDF-presets:");
    win.p.g.ddl = win.p.g.add("dropdownlist", undefined, pdfPresetsList);
    win.p.g.ddl.selection = gSet.selectedPdfPresetIndex;
    win.p.g.ddl.preferredSize.width = 220;
    win.buttons = win.add("group");
    win.buttons.orientation = "row";
    win.buttons.alignment = "center";
    win.buttons.ok = win.buttons.add("button", undefined, "OK", {name:"ok" });
    win.buttons.cancel = win.buttons.add("button", undefined, "Cancel", {name:"cancel"});
    var showDialog = win.show();
    if (showDialog == 1) {
      gSet.selectedPdfPresetIndex = win.p.g.ddl.selection.index;
      app.insertLabel("Kas_" + gScriptName + gScriptVersion, gSet.toSource());
      Main();
    }
    }
    //---------------------------------------------------------------------------------------- ----------------------------------------------------------------
    function Main() {
    var folder = Folder.selectDialog("Select a folder with InDesign files to export");
    if (folder == null) exit();
    var files = GetFiles(folder);
    var pdfFolder = new Folder(Folder.desktop+ "/" + "PDF");
    if (files.length == 0) {
      alert("No files to open.", gScriptName + " - " + gScriptVersion);
      exit();
    }
    if(!pdfFolder.exists)pdfFolder.create();
    //VerifyFolder(pdfFolder);
    var pdfPresets =app.pdfExportPresets.everyItem().getElements();
    var selectedPdfPreset = pdfPresets[gSet.selectedPdfPresetIndex];
    var count = 1;
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
    // Progress bar -----------------------------------------------------------------------------------
    var progressWin = new Window ("window", gScriptName + " - " + gScriptVersion);
    var progressBar = progressWin.add ("progressbar", [12, 12, 350, 24], 0, files.length);
    var progressTxt = progressWin.add("statictext", undefined, "Starting exporting files");
    progressTxt.bounds = [0, 0, 340, 20];
    progressTxt.alignment = "left";
    progressWin.show();
    // Progress bar -----------------------------------------------------------------------------------
    for (var i = 0; i < files.length; i++) {
      var currentFile = files[i];
    
      try {
       var doc = app.open(currentFile, false);
       var docName = doc.name;
       // Progress bar -----------------------------------------------------------------------------------
       progressBar.value = count;
       progressTxt.text = String("Exporting file - " + docName + " (" + count + " of " + files.length + ")");
       // Progress bar -----------------------------------------------------------------------------------
       var file = new File(pdfFolder + "/" + GetFileName(docName) + ".pdf");
       if (file.exists) {
        var increment = 1;
        while (file.exists) {
         file = new File(pdfFolder + "/" + GetFileName(docName) + "(" + increment++ + ").pdf");
        }
       }
    
       doc.exportFile(ExportFormat.pdfType, file, false, selectedPdfPreset);
       doc.close(SaveOptions.NO);
       count++;
      }
      catch(e) {}
    }
    // Progress bar -----------------------------------------------------------------------------------
    progressWin.close();
    // Progress bar -----------------------------------------------------------------------------------
    alert("Done.", gScriptName + " - " + gScriptVersion);
    }
    //---------------------------------------------------------------------------------------- ----------------------------------------------------------------
    function VerifyFolder(folder) {
    if (!folder.exists) {
      var folder = new Folder(folder.absoluteURI);
      var array1 = new Array();
      while (!folder.exists) {
       array1.push(folder);
       folder = new Folder(folder.path);
      }
      var array2 = new Array();
      while (array1.length > 0) {
       folder = array1.pop();
       if (folder.create()) {
        array2.push(folder);
       } else {
        while (array2.length > 0) {
         array2.pop.remove();
        }
        throw "Folder creation failed";
       }
      }
    }
    }
    //---------------------------------------------------------------------------------------- ----------------------------------------------------------------
    function GetFiles(theFolder) {
        var file,filesub;
            fileList = theFolder.getFiles();
        for (i = 0; i < fileList.length; i++) {
            file = fileList[i];
            if(file.name==".DS_Store") continue;
            if (file instanceof Folder) {
              fileLs = file.getFiles();
              alert(fileLs.length);
                for (j = 0; j < fileLs.length; j++) {
                    filesub = fileLs[j];
                    if (filesub instanceof File && filesub.name.match(/\.indd$/i)) {
                       files.push(filesub);
                    }
                }
            }
          else if (file instanceof File && file.name.match(/\.indd$/i)) {
           files.push(file);
          }
        }
        return files;
        }
    //---------------------------------------------------------------------------------------- ----------------------------------------------------------------
    function GetFileName(fileName) {
    var string = "";
    var result = fileName.lastIndexOf(".");
    if (result == -1) {
      string = fileName;
    }
    else {
      string = fileName.substr(0, result);
    }
    return string;
    }
    //---------------------------------------------------------------------------------------- ----------------------------------------------------------------
    function GetSettings() {
    var set = eval(app.extractLabel("Kas_" + gScriptName + gScriptVersion));
    if (set == undefined) {
      set = { selectedPdfPresetIndex : 0 };
    }
    return set;
    }
    
  • How to export the MTS files without losing quality 1080 p?

    I tried to figure this out for weeks with other different publishers, and they always a get reduced in quality or have issues of interlacing. Does anyone have a solution?

    Your going about this wrong.

    Click on your finished sequence to select.

    Go to the file menu > export > Media

    When Media Encoder opens, choose the H.264 format and for the preset choose YouTube 1080 p.

    Now, look at the summary.

    (If you haven't already done so, you will need to complete your You Tube credentials tab publish).

    MtD

  • How to export the InDesign CS6 document with animations?

    I tried to export my ID CS6 document with animations in PDF, but the animation does not work.

    Thnx for help!

    Animations are not supported in PDF format

  • SOA 11 g: how to export the new files in the MDS

    Guys,

    We have DB base MDS with few common files. We wanted to add new files on MDS, can someone give me the steps to do this.

    Thank you
    AB

    Yes, directories behaves like files.

  • How to export a PDF file to make nonprinting objects show but don't print not AND hyperlinks on the top of the page work at the same time?

    Firstly - I work in InDesign CC 2015.

    My problem is, I had this 10 page document, which, on every page, shows an object that must be in PDF format - but do not print. I made this object into a button and unchecked "Printable". On top of this object, I made 10 hyperlinks (separate layer) that point to the page 1-10.

    When you export the document and I use the interactive PDF format , works ' show nonprinting object but do not print ' well, BUT hyperlinks don't. If I uncheck the "layer of nonprinting objects" in the file PDF, then hyperlinks work, but the problem now is that the nonprinting objects are invisible...

    When you export the document and I use a PDF to print the "unprintable object show but do not print" does not work BUT the hyperlinks don't...

    I put hyperlinks to post a link to pages and also tried the link to the anchor text. No difference.

    So my question is: How to export a PDF file to make nonprinting objects show but don't print not AND hyperlinks on the top of the page work at the same time?

    Thank you

    Mette from Denmark

    I swapped my links to the buttons - AND NOW IT WORKS; (o)

  • I need a file to an exact width and height and it must be in png format, because it allows to translucency. My graphics are only the top of the page and when I export only the graph is not exported the entire file. How can I get the entire file to ex

    I need a file to an exact width and height and it must be in png format, because it allows to translucency. My graphics are only the top of the page and when I export only the graph is not exported the entire file. How can I get the entire file of export including blank parts?

    in the export dialog box, you have chcked 'use of work plans? ''

  • Problem of color with pdf from Indesign. I have a special mix CMYK for a bcard in Indesign. When I export the pdf file that the CMYK mix has changed just started today 1.13.15 Running Yosemite 10.10.1 all help to what to look for would be greatly apprecia

    I have a special mix CMYK for a bcard in Indesign. When I export the pdf file that the CMYK mix has changed just started today 1.13.15 Running Yosemite 10.10.1 all help to what to look for would be greatly appreciated.

    You are mixing color profiles a-place, or document workspace does not match the destination to export space is incompatible.

  • How to remove the value of the XML attribute in the Indesign file with javascript

    Hi all

    How to remove the value of the XML attribute in the Indesign file.

    1.jpg

    What error is this?

    in any case try this as well (one another),

    var myDoc = app.activeDocument;
    attrDelete(myDoc);
    function attrDelete(elm)
    {
        for (var i = 0; i < elm.xmlElements.length; i++)
        {
            try{
                for(j=0; j
    

    Vandy

  • InDesign CC 2014 "can't export the PDF file.

    I am trying to export a small document to PDF using InDesign CC 2014, something I've done many times before, but it now says "unable to export the PDF file.

    There is no errors in the document (at least according to the preflight Panel) and the error does not say why InDesign doesn't have to export the PDF file.

    Does anyone have suggestions on what to check to find out what it is exactly that InDesign cannot or will not do?

    Thank you!

    Adobe Community: File overwriting on output - print/PDF/other

Maybe you are looking for

  • Firefox crashes on the youtube homepage

    Whenever I try to raise to youtube.com, I get the spinning wheel of death, and firefox is not responding. This happens ONLY on the homepage. If I go to video pages, they play very well. This happens on other websites as well. If this happens on a giv

  • No option "organize bookmarks" is displayed when I click on "Bookmarks".

    Where the option "organize the bookmar4ks? It does not appear when I click on "bookmarks".

  • Laptop does not, shows "press the ESC key for startup menu?

    HelloI have a hp laptop Pavilion g6 (product QE05UA #ABA, model: g6-1c35dx). For a while his summer of problems, it was slow, showing the virus, and now it won't start.I left it on the mode 'sleep' last night, once I opened it today, it has been disa

  • Installation of 3rd party software to stream 7 5709 hp

    As of February 11/2015 - I have a HP Jet 7 5709 purchased from the Microsoft Store.  Need help Can I download a program on a cd via an external cd drive connected to the port of loading (using a converter OTG usb microphone to the USB standard).  Min

  • UDF CD XP Pro SP3 reading 2.0 file format

    I can't read the files from a CD/R created on another XP system.  The CD was written to the file UDF 2.0 format.  When I try to open the CD, my system said that this CD has "0" space and '0' used space.  Pointers for finding a way to read these files