Linking a common Pages file to several other Pages files

I have a common section called "Terms and Conditions" that is used in several different documents. If I change the "Terms and Conditions" I have to edit every file that contains that section. Is there a way to "Link" a seperate "Terms and Conditions" file to each document that contains that section, therfore editing only a single file and each document gets updataed automatically?

Hi emarino,
You can create a link between Pages documents. It will only serve to open the other document; it won't automatically update the content. You will have to copy the revised Terms and Conditions and paste them into each document.
Or, just leave it as a link for the user to follow to the revised Terms and Conditions document:
Page 112 of the Pages User Guide: Linking to Another Pages Document.
Download the Guide from the Help Menu in Pages.
Regards,
Ian.

Similar Messages

  • Linking to specific pages within several other pdfs

    My source pdf has ~700 references and I need to create a link to each reference (target pdfs).  There are hundreds of target pdfs and the source document references different pages within each of the target pdfs.  The target pdfs need to contain the entire document and not just the cited pages.  What I am doing is creating a link and selecting opening a file.  What I am not able to do, is assign a page number to this link so that a certain page will appear instead of page 1.  I understand that you can set the initial view with file properties, but that will not work as I would then have to create a pdf for each link and there are far too many references to do that.  Here is a sample "Reference at pp. 2, 4, 6." and in this sample I want a separate link for each reference that will go to page 2, page 4 and page 6 (again I need the entire document for reading purposes for these links and not these specific pages).

    Please refer : http://blogs.adobe.com/tcs/2011/01/tcs-specific/linking-to-a-page-within-a-pdf-and-more.ht ml

  • Links to webpages not working, redirecting to several others when closing sometimes find desired website behind the undersired one.

    Links redirecting to several other websites. eg., mastermarketplace.com, consumersurveygroup.org, and eclickz.com. When closing these pages, I sometimes find my desired webpage behind them. Or I have to try again to get the proper webpage.
    Thank you,
    Pamela

    Links redirecting to several other websites. eg., mastermarketplace.com, consumersurveygroup.org, and eclickz.com. When closing these pages, I sometimes find my desired webpage behind them. Or I have to try again to get the proper webpage.
    Thank you,
    Pamela

  • How to setup word docs, converted to PDF on local drive with links to a second file at a page

    how to setup word docs, converted to PDF on local drive with links to a second file at a page
    Need to setup a set of word documents, converted to PDF that has links from one file to a second file at a given page.
    I would like to setup a set of pdf documents, on the hard disk of a PC or Mac, that can be open with acrobat pro running on the same computer and have the link jump to, and open in a new window, in acrobat pro, to a given page of a second document in the set.
    Is there a way to setup a link in word and the conversion to pdf that will result in a link that is equivalent to the acrobat link type  you get when you add a link of the type Go to a page in another document?
    Tools-Advanced Editing-Link tool, make a box
    Check: Go to page view, Next (Create go to view dialog opens)
    Open second document and go to page
    Click “Create go to view dialog” to set up link
    Result is a link, when view by link properties, with an action of
    Go to a page in another document
    File: C:\My Documents\second file.pdf
    Page: 43
    Zoom level: Custom
    I got close but did not solve the problem:
    I have a version that uses links to a website, using #page=43 at the end of the hyperlink.
    That works but will only open to the page if is through the web browser, opening the acrobat reader plugin.
    I need to open from a folder on the local harddisk (with relative links), in acrobat pro to the given page of the pdf, on a PC or a Mac.
    I could bookmark each page “pagenumberxxx” and jump to the bookmark/page if that would get around some problem
    Current Systems in use to create documents with links and view them:
    Windows XP SP3
    Word 2003 SP3
    Acrobat 9 pro version 9.4.4
    Or just to view them:
    Mac OS 10 Lion version 10.7.4
    Acrobat 9 pro version 9.5.1
    (note I have limited understanding of Mac’s)
    John

    No.  There seems to be no automated way to do it.  You can of course go into the PDF and manually add links after you have converted to PDF, but that is what we want to avoid having to do.  We want it to be automatic from the Word doc.

  • Excpetion after link is clicked for file download on same page

    I have implemented a module in JSF where the page displays a datatable and one the columns is a command link which when clicked opens up a dialog box to save a CLOB from the DB as a csv on the local desktop.
    All this is working fine.
    The problem is that once the user clicks on one link in the datatable and then the user again clicks on any other link on the page or tries to use the Logout link the page is directed to the welcome page.
    The problem is happening because of the <h:commandLink> causes the page to submit and thereafter any click on the page causes the page to go to the homepage.
    // Constants ----------------------------------------------------------------------------------
      private static final int DEFAULT_BUFFER_SIZE = 102400; // 100 KB.
      // Actions ------------------------------------------------------------------------------------
      public void downloadcsv()
        throws IOException, ServiceLocatorException, ReportServiceException
        ReportSummary selectedReportId =
          (ReportSummary) summaryBindingReport.getRowData();
        ReportContent reportObj =
          getReportService().getReportContent(selectedReportId.getReportId());
        // Prepare.
        FacesContext facesContext = FacesContext.getCurrentInstance();
        ExternalContext externalContext = facesContext.getExternalContext();
        HttpServletResponse response =
          (HttpServletResponse) externalContext.getResponse();
        BufferedInputStream input = null;
        BufferedOutputStream output = null;
        try
          // Init servlet response.
          response.reset();
          response.setContentType("plain/text");
          response.setHeader("Content-disposition",
                             "inline; filename=\"" + selectedReportId.getReportName() +
          output =
              new BufferedOutputStream(response.getOutputStream(), DEFAULT_BUFFER_SIZE);
          char[] strReportContent = reportObj.getReportText();
          Utility.logMessage(Constants.SEVERITY_INFO,
                             "**** Report Content ****" +
                             String.valueOf(strReportContent), this);
          // Write the Report Content as Comma Separated values
          output.write(String.valueOf(strReportContent).getBytes(), 0,
                       strReportContent.length);
          // Finalize task.
          output.flush();
        finally
          // Close streams.
          close(output);
          close(input);
    //    ReportCriteria reportSearchCriteria = new ReportCriteria();
    //    reportSearchCriteria.setSubSystemCode("AC");
    //    setManagedBeanValue("reportList",
    //                          getReportService().searchByCriteria(reportSearchCriteria));
        // Inform JSF that it doesn't need to handle response.
        // This is very important, otherwise you will get the following exception in the logs:
        // java.lang.IllegalStateException: Cannot forward after response has been committed.
            facesContext.getRenderResponse();
        facesContext.responseComplete();
    //    return "reportSummary";
      private static void close(Closeable resource)
        if (resource != null)
          try
            resource.close();
          catch (IOException e)
            e.printStackTrace();
      public void setSummaryBindingReport(HtmlDataTable summaryBinding)
        this.summaryBindingReport = summaryBinding;
      public HtmlDataTable getSummaryBindingReport()
        return summaryBindingReport;
      }

    There are two ways to do this.
    1. you create a modern day css-file with the classes for the
    links you want colored, which is preferred in XHTML-environments.
    a. go to Edit, Administer websites, choose your website
    b. Users and roles is selected, pick you role (administrator
    I presume) and choose Edit Role-settings
    c. pick Styles and Fonts
    d. form the drop-down list behind Style-support, choose
    Document level css
    e. pick: Show only CSS styles included in this CSS file
    (pick the file you created)
    f. use the classes in editing mode for your secific links
    g. done
    2. you change the role-settings and do it the old-fashioned
    way make it possible to use font-tags and use HTML for the source
    code
    a. go to Edit, Administer websites, choose your website
    b. Users and roles is selected, pick you role (administrator
    I presume) and choose Edit Role-settings
    c. pick Styles and Fonts
    d. form the drop-down list behind Style-support, choose HTML
    tags (<font etc....
    e. done
    Have fun editing
    Hayo

  • InDesign Link to specific page in a .pdf file

    I have an article index that I keep in InDesign.  Each item in the index points to a specific page in a separate .pdf file.  Is there a way, in InDesign, to create a link that will open the .pdf file to a specific page?  The InDesign file contains buttons and is exported to an interactive .pdf file.  For example, I may have an article from volume one, page two.  In the interactive index, I would like the user to be able to click on this link and open newsletter volume one and jump to page two.  I have never found a way to do this in InDesign and currently have to create the text portion of the index in InDesign, export it to an interactive .pdf file and then create all of the links directly in Acrobat Professional.  This is very time consuming because whenever I need to update the index, I need to re-export to a new interactive .pdf file and recreate ALL of the links in Acrobat.  There should be a way to do this in InDesign.

    There SHOULD be a way, yes. But there is none. It's not about Indesign, it's the PDF and handling of action like "Open file".
    I tried button actions like "Open file" in Indesign, but you only select the file name and path, nothing else.
    If you do the same in Acrobat, by putting an action "Open file" for a hyperlink, it will be the same.
    The only thing that works is to use an URL like http://www.yourdomain.com/yourfile.pdf#page=3, where #page=3 can do what you want. You could even place that URL in Indesign or Acrobat, but the PDF would a) open in a browser and b) the PDF reader will always pop up that requester before opening internet links and c) the file would have to be on the internet.
    Perhaps Acrobat Javascript could do more here, but then you'd have to embed it somehow in Acrobat (I wouldn't know if Indesign can do that) and Javascript would have to be allowed for that PDF. Not a good choice.

  • How to place download link on jsp page to download files eg. Download PDF

    Hi,
    I have made an appliaction in struts 2 which creates PDF,its working fine now i want to place a link on my jsp page from where i can click and download that PDF file which i have created and store on my local location. Also i want to to know can i place links on my jsp page to download other type of files if i want to give link on my page to download Images or songs how can i do that,
    Help plzzzzzzzzzzzz

    IF You are using jsf then simply <h:outputLink value="file:///D:/Me/Image000.jpg"/>. This generates HTML <a> tag and value attribute replacing with <a> tag's href attribute.If you are using other technologies try to find which tag generates HTML <a> tag.
    I think You also can simply place HTML <a> tag wherever You want

  • I have a document made up of separate PDF files which reside in a folder and are linked to each other via hyperlinks. Each pdf file is set to open with bookmarks displayed, however if I link from one PDF file to another and use the "Previous View" button

    I have a document made up of separate PDF files which reside in a folder and are linked to each other via hyperlinks. Each pdf file is set to open with bookmarks displayed, however if I link from one PDF file to another and use the "Previous View" button to navigate back to my starting point the bookmarks are replaced by "page thumbnails". Is there anyway to stop this from happening?

    Hi Pusman,
    While setting up the links, if you choose to open the file in a new window then you won't face this issue, then you can simply switch to the previous file and bookmark view will remain as it is.
    Does that helps with your query?
    Regards,
    Rahul

  • Linking to Specific Page in Attached PDF File

    I'm working with a main PDF file as well as an attached one. I'd like to create multiple links in my main file, with each one linking to a different page in the attached file. How could I go about doing this?

    You can only do this if the attachment is a PDF file. Here are the help instructions that explain how to create a link in the main PDF document that jumps to the PDF attachment.

  • Html link to multiple swf files on 1 html page

    i have a html page that has multiple (20) links to video files, i would like to play these files in the same position, within the same html page. therefore saving myself having 20 html files with the separate swf files embedded. firstly i was planning on converting my .mov files to swf to make then smaller.
    my query is, what is the best way to 'house' a swf file(s) that plays when clicked on the relative link on that page.
    i have build the page using CSS and have limited javascript knowledge although im keen to learn.
    cheers

    VIDEO GALLERY --
    You need a Flash player that supports a playlist.  If you're good with Flash and Action Script you could build a custom player.  If not, pick-one from the links below:
    Wimpy Rave simple to deploy, dirt simple to update playlists by uploading media to wimpy folder.
    WWD Player --
    http://www.woosterwebdesign.com/flvplayer/
    JW Player --
    http://www.longtailvideo.com/
    FlowPlayer --
    http://flowplayer.org/
    YouTube --
    http://code.google.com/apis/youtube/getting_started.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Link to Two js files same page

    I need to link to two js files on the same page.
    How do I get them to both work? one is for a togler.js and
    the othe for a
    menu .js
    <script src="../js/togler.js"
    type="text/javascript"></script>
    <script type="text/javascript"
    src="../js/p7exp.js"></script>
    First time I tried this.
    Thanks
    Dave
    Look Dave, I can see you're really upset about this. I
    honestly think you
    ought to sit down calmly, take a stress pill, and think
    things over
    I took my pill first.:-)

    Sorted
    <body onLoad="P7_ExpMenu();toggler()">
    I took my pill first.:-)
    The pill must have worked

  • File server links in wiki pages

    Is there a way to insert links in wiki pages to files on the same server (rather than upload the file itself)?
    We have wikis and (afp) file shares on the same physical 10.6 server.
    Thanks!

    Having tested a few approaches, one that seems to work is to set up an FTP share that does not require login – that is, enable anonymous access to a 'public' ftp area. The permissions need be set to read-only or read/write to all, and files can be linked to in the following format from a wiki page:
    ftp://<servername>/<sharename>/<filename>
    While this works, it is not great from a security perspective – especially for internal wikis.

  • How to link to a page inside a PDF file?

    PDF users,
    I can link to a PDF file from a web page, for example, with the <a href> tag. Is there a way to link to somewhere inside the PDF file, for example to a page number or a heading title?
    Yours,
    Michael F
    ========

    Hi,
    I lost track of this note but I need to revisit the nameddest option.  I can get the page option to work but would like to link to chapter headings to avoid having to adjust the page options whenever the page count changes.
    I am using Acrobat XI and generate PDF bookmarks from Framemaker 12. The file opens with the bookmark panel to the left and content to the right. I don't see the Named Destination panel that you mentioned. On the left there are icons for page thumbnails, bookmarks, attachments, and signatures.
    I display the bookmarks panel and adjust the content of the bookmark labels as needed. With the right click menu, I use Set Destination to adjust the part of the page that displays at the top of the panel.
    Now could you tell me exactly how this nameddest option works?
    For example, I have a PDF file with "2: Introduction": as the bookmark that opens to the first page of chapter 2, which is on page 21.  The link in the web page is:
    <p>For an introduction, refer to <a href="docs/93-0967-0.pdf" target="_blank">chapter 2</a>
    What do I need to do to make the link go to that chapter?
    Yours,
    Michael F
    ========

  • Problem creating several image maps (linking to different pdf files) RoboHelp 8

    Hi,
    I have a problem creating several image map hotspots (that link to different .pdf files), from the same image using RoboHelp 8 HTML (WebHelp project).
    After compiling, the first image map hotspot created, opens the .pdf file correctly.  Unfortunately, when clicking on the other image hotspots, I get an error " Cannot find file...<file path>... Make sure path or Internet address is correct".
    All the pdf documents are located in the same folder within the project.
    Can anyone help?

    Have you added the target files as baggage?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • I am getting the error "itunes the procedure entry point ?videotracks@QTMovie@@QBE?AV?$Vector@V?$RefPtr@VQTTrack@@@***@@$0a@VCrashonover flow@2@@***@@xz could not be located in the dynamic link Library C:\Program files (86x)\Common Files\Apple\...help?

    I am gettting the error message:
    itunes the procedure entry point ?videotracks@QTMovie@@QBE?AV?$Vector@V?$RefPtr@VQTTrack@@@***@@$0a@VCrashonoverf low@2@@***@@xz could not be located in the dynamic link Library C:\Program files (86x)\Common Files\Apple\Apple Application Support\Webkit.dll.
    After I get this error iTunes will not open, and does not respond
    I have't been able to find any info on this can anyone help?

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99827)

Maybe you are looking for

  • A function can not be used in Applet.what's wrong?

    Here is a function. private String LoadFile() { String input; String output="sssssdsdsddf"; try{ FileReader f=new FileReader("shu.txt"); BufferedReader in = new BufferedReader(f); while ((input = in.readLine())!= null){output=output+input;} in.close(

  • [new] webmin(-minimal)

    Heya all, since there were quite some requests for this. I made a PKGBUILD for webmin. I have to say ... this wasn't an easy one for me. I choose for webmin-minimal so that peopel can add the modules they want. However, when you look at the code, you

  • Matrix with subtotal per  page

    hi, How do i get the page total of a matrix? please help.

  • TBridge error 180097

    I have a test program that injects 10,000 messages to JMS. If I put a 1 second delay between each messages, all messages are processed. Without the delay, WLS reports the error below and moves the message to the error queue. <Nov 20, 2003 2:41:16 PM

  • How to connect to MS Access

    Hi How can we access the MS Access database through Forms6.0.Please let me know if anybody has idea. Thanks in Advance Devender null