How associate you two Indesign files

In InDesign, composed of 8 different InDesign files, I create an IPad app. for example Wedding.indd, Travel.indd, Pricing.indd, Home.indd, etc.

My goal is to associate the homepage of each of the other pages so that when a user clicks for example marriage on the homepage it will take them to the wedding Page and so on.

I used to page with no luck and go to file with no luck, can anyone out there help with this please?

Thanking you in advance

Barb

See https://helpx.adobe.com/digital-publishing-suite/help/hyperlink-overlays.html#create_links _to_other_articles for instructions on how to do it.

Neil

Tags: Digital Publishing Suite

Similar Questions

  • How do you rename a file on the cloud?

    How do you rename a file on the cloud?

    There are two ways to rename the file. If you use file synchronization, then you can rename it after finding in the creative Cloud Files folder. Or you can rename it using the active site CC to https://assets.adobe.com and on the Actions menu, choose Rename.

  • How do you export a file from lightroom if you do not have the original raw file

    How do you export a file from lightroom if you do not have the original raw file

    Hmm, the link disappeared. Let's try again:

    Extract previews

  • How do you download InDesign using the Adobe Download Manager?

    How do you download InDesign using the Adobe Download Manager?

    With Adobe Download Wizard installed, you should be able to start the download at http://www.adobe.com/cfusion/tdrc/index.cfm?product=indesign.  If this doesn't work for you then please try another browser.

  • 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

  • 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 can I transfer InDesign files and objects in Muse?

    I was given an InDesign file of many pages that I want to use in the creation of Web pages in Muse. I'm not a user of InDesign, and I'm learning tutorials for Muse. I have trouble finding a way to carry the drawings and objects in InDesign to Muse.

    Does anyone know how to do this or direct me to a tutorial?

    Thank you

    Gustavo

    Hi Gustavo,

    Although Muse and InDesign share some common ground, it is not possible to directly import the desings in Muse. You will need to have access to the original assets and establish the pages again.

    I hope this helps.

    David

    http://creativemuse.co

  • How to add two .cod files two ethical single file

    Hi all

    I am new to the blackberry development.

    I develop an inaugural recongnisation application in the use of blackberry

    http://www.iSpeech.org/

    But the problem is that

    1: file iSpeechSDK.cod you have installed everything first and then install your application.cod files.

    I want to merge two different .cod files in to one.

    is an idea for it.

    I'm working on 6. BlackBerry 9800 Simulator.

    Thanks in advance please

    It is not possible.  However, you can install two cod files at the same time by adding the library COD to your ALX file or JAD file.

  • How to merge two code files ksoap2.cod and Application.cod for the Distribution of the Application

    Hi all

    Can someone give me the steps defined in combile two .cod files? Because my client told me that we cannot distribute two as a single application .cod files. Is this good?

    If it is not possible to give me the steps to give the reference to combile two (ksoap2.cod and Application.cod) the .cod files in a .jad file.

    Thanks in advance,

    TEJ

    «the my client told me that we cannot distribute two as a single application .cod files.» It's just ".

    No it's not correct.  Each file of cod being limited to about 64K, if all applications had to be a cod, then things like App World which when I looked last was more than 500 KB, would not be a single application.

    Normally, you distribute applications like jads to download OTA or alx for Desktop or BES installation pushing.  Both these have methods to include several cod in the package.  Please see the developer's Guide for more information, section "packaging and distributing applications.

  • How to open an InDesign file without the extension .indd?

    Hello

    I am trying to open an InDesign file that does not have the .indd extension.

    I can open the InDesign file-> open menu item. But if I try to open programmaticaly it says that the file format is not supported.

    I tried to use SDKLayoutHelper::OpenDocument and IDocumentCommands::CreateOpenCommand both give the same error.

    Thank you

    I can, I use Utils()-> CreateOpenCommand.

  • How do you make PDF files?

    No it's not a matter of knowing how to make a PDF from Indesign.

    The two options of export which exist, Interactive and print, have options.  For example with a PDF Print (not to be confused with the printing of a PDF writer) in CS5 you now cannot include interactive elements, you have the choice between do not understand or appearance to include.  Dumb IMO.  And with an interactive PDF, you can set the display and default layout.

    My question is: is it possible to combine the useful bits of two dialog boxes?  Where should I look at how Indesign actually makes the PDF?  He was completely buried in the program itself?  Is it possible to script?  Scripts only I saw (admittedly not many) still use Indesigns 'Export as Adobe PDF' dialog box.

    I tried to see if we could change the interactive PDF joboptions file but seems not to have one, it is certainly not give you the ability to record one anyway.  So the features it offers appear to be unavailable to the other ways to export.

    PDFs created by some functions low low inside the ID, and this which is written in PDF format is totally and absolutely non-scriptable.

    Decision from Adobe to indulge typographically challenged e-advertising and creative web page 'Print' and 'Interactive' PDFs is... pathetic. They could have done with a PDF Export Preset and a support system that opens with "If you're not a graphic designer, but you have decided to use InDesign anyway? Click here. »

  • How to compare two similar files fo duplication

    I HAVE TWO FOLDERS OF MUSIC WITH SOME OF THE SONGS IN THEM. HOW DO I

    MERGE THEM WITHOUT DUPLICATE SONGS

    Hello

    Add or edit media information in Windows Media Player
    http://Windows.Microsoft.com/en-us/Windows7/add-or-edit-media-information-in-Windows-Media-Player

    Make sure that you back up a file somewhere else before you remove it to be sure that you are
    work on a copy and not a virtual folder.

    WMP11 - Tools - Options - Library tab - folder monitor - expand with down Advanced Options on the left.

    Close WMP using this - you can open WMP to look and then close that you check the results.

    Here are a few utilities to help, be sure to remove duplicates once and good
    folder. If If doubt copy the file to another folder, delete and then check WMP.

    Here are several free utilities and they have all their benefits and their methods.

    Auslogics Duplicate File Finder is the MD5 search engine that allows you to find duplicate
    files content, without worrying other matching criteria. It would be useful, for example, when two
    identical mp3 tracks or video files have different names
    http://www.Auslogics.com/en/software/duplicate-file-Finder

    find and delete the duplicate - free
    http://www.easyduplicatefinder.com/
    Versions Installer and Portable

    Search files in doubles or similar - even binary - free
    http://www.Joerg-Rosenthal.com/en/antitwin/

    quickly find all the files in a folder and its subfolders - free duplicate
    http://www.Mindgems.com/products/fast-duplicate-file-Finder/fast-duplicate-file-Finder-about.htm

    Duplicate File Finder - Smart Port Forwarding - TCP Port Scanner - TCP Port Tunnel - multi-minuterie-free
    http://www.brooksyounce.com/

    Duplicate File Finder software (pictures, mp3, iTunes)
    http://www.Moleskinsoft.com/

    Hope these helps.

  • Newbie question: how to merge two pdf files?

    Hello, I have two PDF documents, and I'm putting one right in the middle of the other. Can someone guide me through this process? Thank you.

    Hello

    Please see the following link for information on how to merge PDF'.

    Acrobat help. Combine or merge files into a single PDF file

    Concerning

    Sukrit diallo

  • How do you get the file, send a web page, it's gone

    I have more a file tab that allows me to send web pages to another address. How to do that.

    If the bar classic menu set is missing, you can display it temporarily by pressing the ALT or by pressing F10.

    To be displayed, you can use one of the following methods to display the list toolbar, and then select it there:

    • Right click on a place empty on the tab bar (or the button '+')
    • Press the Alt key to activate the classic menu bar > view > toolbars
    • in customize mode > show/hide toolbars

    Does it work? Is always there E-mail link in the file menu?

  • How to link two labview files

    Hello

    I have a file that generates a signal, I connect the signal generated in the first to the second file. You can help me please how to do this. waiting for your answer.

    Create a Subvi VI which generates the signal and use it in the main vi (second one).

Maybe you are looking for