Does pages 6.0 support internal links to other pages?

I want to create links inside of Pages 6 to take the reader to other locations in the document. I need to have these fully functional links exported with the document into pdf. Has anyone actually tried this in 6.0? Des it work?

Keynote is a version number ahead of Pages, because it was the first iWork app that came out. Numbers was the last and is one version behind.
Pages '09 has Bookmarks that do the internal linking.
It is Pages 5.2.2, the current version, that is brain dead.
Peter

Similar Messages

  • I am trying to set up virtual servers with Netscape Enterprise Server 3.6. Can get home page to display but images linked to the page won't display and links to other pages won't work.

     

    hi,
    If your home page of the virtual server is displayed then,you have set the virtual server properly.
    check the links and source of the images or directories in the HTML source code of the home page.
    this should solve ur problem. If not notify me.
    Regards
    T.Raghulan.
    [email protected]

  • JSP links to other pages

    Hi,
    I have a web app that does not use a framework. I do try to follow the MVC pattern though by having all requests go through one Controller Servlet.
    I have a Home page jsp, which only has links to other pages. The Home JSP does not have a <form>. Just <a href's.
    These links take the user from the home page to other pages which do work and submit forms. However, some of these pages (jsp's) need to be prepopulated with data. For example, I have a page which gives a random phrase from the Database when clicking on the submit button. But when I first get to the page by following the link from Home Page, it is empty. I want to arrive at the page and have it already gotten the first phrase for me.
    One option I thought of is to have the link from the Home Page which took me to the Random Phrase page, go through the Controller servlet initially and have the Controller servlet, after having done the work of retrieving the phrase redirect to the Random Phrase page.
    If this is the correct approach, how can I accomplish this? How do I have a <a href link in a jsp, redirect to a servlet right away without submitting a form or something?
    Thanks.

    So I put this in my home.jsp:
    <a href="/Household/randomPhrase.php">Random Phrase of The Day</a> In web.xml I have this:
    <servlet>
           <servlet-name>VHController</servlet-name>
      </servlet>
      <servlet-mapping>
           <servlet-name>VHController</servlet-name>
           <url-pattern>*.php</url-pattern>
      </servlet-mapping>According to the above, when I click on this link it should take me to the Servlet's doGet() method.
    However, when I actually click on it, I get the following exception in the browser:
    java.lang.NullPointerException
         com.myapp.servlet.VHController.doPost(VHController.java:47)
         com.myapp.servlet.VHController.doGet(VHController.java:35)All I do in the doGet() method is:
              response.setContentType("text/html");
              PrintWriter out = response.getWriter();
              out.println("URL: " + request.getRequestURL());
              out.println("URL: " + request.getRequestURL());
              out.println("METHOD: " + request.getMethod());Could anyone suggest what the problem may be? Why I am not getting the expected behavior?
    Thanks.

  • How can I create links to other pages in iBooks that will function in PDF?

    Hi,
    I know some people have asked previously how to create links to other pages of their book within iBooks. I having an issue with this myself that I haven't been able to resolve. I am able to create the links, and they seem to function within the program, however, once I export the document as a PDF file (the format in which I need to have this ebook!), the links seem to be non-functional. Does anybody have a fix for this?
    Thank you so much for any suggestions you may have!! I really need to figure this out for my client.
    Regards,
    Meggyn

    Exporting as a PDF does alter/lose/remove certain functions. Adobe Acrobat has its own page navigation system.
    A lot of the hidden engine of iBooks Author is basically very similar to building a website! so links and books marks are an "internal" function.
    IF you  have Acrobat and not just the Adobe Reader, you can make links.  I have never needed to try, but  I see a working link related index  in the many software manuals  I have.

  • Create links to other Pages documents

    I am a singer and have been using a binder with all my lyrics in it for shows. I got an iPad for my birthday and want to use it in the binder's place. With each show the set list changes and I'd like to be able to create a setlist document in Pages with links to other Pages documents with the corresponding lyrics. The lyrics documents would be static; the setlist document would always be changing. The links in the setlist document would be like hyperlinks of sorts, except instead of taking you to the web, they would take you to other Pages documents in the My Documents folder in Pages.
    I've searched all over the place for a solution. I've even tried using spotlight to search for the lyrics documents as a workaround, but spotlight doesn't find the Pages documents. Is this something I can set up on my MacBook and then transfer to my iPad? Is there other software besides Pages that can do this?
    Thank you in advance!

    I think it would be much simpler to save your lyrics as pdfs and use one of the many dedicated music apps that allow you to create setlists. I use forScore (love it!), but you might also check out Unreal Book and Music Reader.
    If you have a Mac, of course it's a cinch to print any file to PDF. For windows, possibly the free version of CutePDF would work for you.
    EDIT I see you already have these printed out in binders. Just scan to PDF, then.

  • Build a blank/other type of page which can show links to other pages

    Can someone please tell me how to build a blank/other type of page which can show links to other pages? I mainly want a page to show 3 links, once someone clicks on it, then it will go to a specified page. I tried using URL, but that did not work. Any advice is greatly appreciated. Thank you very much for your help in advance.
    -Grace

    Do a region (probably a HTML-based one is fine), enter in the HTML for your links, and that should be it. What didn't work about this?
    Your links probably should appear like this in your coding (use substitution variables):
    f?p=&APP_ID.:3:&APP_SESSION.
    In the above example, "&APP_ID." will resolve dynamically to the application ID that you are in, "3" is page 3 (change this to whatever page you want the link to be), and "&APP_SESSION." is the existing session number (if you don't include this, the user will receive a new session ID if the destination page is public or will be intercepted annoyingly to log in and get a new session ID which you probably don't want).
    Do not include the full http path. Just start with f?p... and everything is assumed to be relative to Apex on the current environment.
    Those are effectively the minimum requirements for a URL in Apex to go from one page to another in an app. You can add to that the additional URL parameters for Request value, Set items with values, clear cache, reset pagination, etc. if you need to. Check the Apex online help under "understanding URL syntax" for details on these.

  • How to create links to other pages i create??

    I have finished my "homepage" and it has 5 buttons on it.("home",
    "Contact us", etc.).
    I have no idea how to create links to other pages i create.
    For example, if the user clicks on "Contact us", i wnat contact information
    to appear. So, do i create another html document that will contain contact
    information and then call that page whenever the user clicks "Contact us". Or
    do i just create another applet that contains contact information and display
    the applet in the appropriate area, whenever the user clicks "contact us".
    Hope that wasnt confusing. Bascially, I am sitting here looking at my buttons, not knowing
    what code to put under the actionPerfomed part of each button.
    thanx
    trin

    ... judging from your question... the best way i think is to create another page...
    .... so when ur user clicks on Contact Us..... he/she will be taken to another page...
    there are other techniques besides this.... but it is always better to stick with the easiest one
    ... so you need to create separate pages for all of your links....
    ... if you have any questions... let me know
    .... have fun

  • Does iBook support internal links in PDF eBooks?

    Hello,
    I am creating an eBook in Adobe InDesign. After exporting to the PDF format I create internal hyperlinks in Adobe Acrobat that allow for better usability in the digital format.
    When I open the PDF eBook on the iTouch or iPad, these links do not even show up, let alone even work.
    Does iBooks even support links in PDF documents?
    These links work when opening in Adobe Reader and Adobe's Digital Editions eBook reader.
    Thanks,
    -Matt-

    This appears to suggest that it does, but with issues
    http://www.ipadprojectsbook.com/2010/06/22/ibooks-1-1-disoriented-pdf-links/

  • How do I create an internal link in a pages document?

    I can do external link ok (Hyerlink + enter web address) - but cant find way to link to a page within the document - an internal link.
    Thanks for your genius.
    Nick

    Bookmarks is just one of the many, many features that have been eliminated or changed. Leave feedback for the Pages team using the link in the Pages menu.

  • Can I add an internal link in a Pages 5.5.2 Document

    In previous versions of Pages I could add a link from a word in my document to, say, a topic in a different place in the document. Either I've forgotten how to do it or the ability has gone away. Can someone help?

    Thank you for the (sad) information. When I try to open my document that I had already updated in v5 with v4.3 it says it can't be opened because the required index.xml file is missing. Any idea how to get around that?

  • Does 785GM-E51 DVI support dual link?

    I am considering buying the 785GM-E51 motherboard which comes with a DVI port (as well as HDMI and VGA of course).
    Will the DVI support dual link?  If so, what is the maximum resolution I could have on the two monitors (say, at 60 Hz with high colour depth)?
    Cheers!
    jcarrete

     Please clarify your question, dual link has nothing to do with being able to use two displays.
    "Dual-link should not be confused with dual display (also called dual head), which describes those situations where a computer is hooked up to two monitors at once. "
     That quote from here: http://en.wikipedia.org/wiki/Digital_Visual_Interface
     That been said I think you should be able to have 2 displays, 1 DVI or HDMI + VGA You can't have 2 digital out at the same time though, DVI + HDMI.

  • Linking to other pages is not working

    I have a slice that I want to link to another page. I selected the slice and in the drop down that displays in the property inspector for the Link field, I select the page I want it to go to. However, when I test the page, it does not work, and in Safari, I get this message:
    No file exists at the address “/Users/MediaFred/Library/Application Support/Adobe/Fireworks CS5/FWTemp/4193627/page2.htm”.
    What is wrong with this?

    Did you try previewing all the pages in browsers?
    Click on File>Preview in Browser>Preview all pages in your_browser_name.exe.

  • Menus created using manual won't link to other Pages

    Created a site and had a menu created using manual which was linked to sub pages within the site. The menu was for specific pages not requiring access from the sites top level menu.
    The menu was working but now it is not possible to edit or replace the menu as there does not seem to be any way of adding the link to the required page. The dropdown box to the side of hyperlink stays greyed out and can't be accessed. This is only happening to links added using the menu widget under manual, ordinary text links seem to be OK.

    Welcome to the Apple Discussions. Confirm that there are no objects overlaying the navbar. How did you change the background, from the Inspector/Page/Layout pane?
    Happy New Year

  • Click on a textbox, display alert and link to other page.

    hi, here i wanna do is when i click on a textbox, onFocus on it, then call a function to perform checking, and then if the textbox data have breakdown record then display an alert to the user and link to breakdown page.
    [Display out in a table]
    <%for(int c=0; c<progPect.size(); c++){%>
    <td id=progPect><input type="text" size=5 id="progPect" value='<%=progPect.elementAt(c)%>' onFocus="chkBreakdown(pass in 3 parameter);"></td>
    <td id=progQty><input type="text" size=5 id="progQty" value='<%=progQty.elementAt(c)%>' onFocus="chkBreakdown(pass in 3 parameter);></td>
    <td id=progLump><input type="text" size=5 id="progLump" value='<%=progLump.elementAt(c)%>' onFocus="chkBreakdown(pass in 3 parameter);></td>
    after calling the chkBreakdown function and found out that it has record, then pop up an alert that tell the user this record have breakdown, and then link to the other page with the same window.
    so the problem is how to identify user click on which row in the table.

    Vuze installs ask.com's tool bar also. Check for a Vuze plug in. Thanks for the fix.

  • Can a Photo page be used as thumbnail links to movie pages?

    I've made a photo page with say 20 or so photo thumbnails. I have made separate movie pages for each movie. Dragged each movie page link to the related picture on the photo page and sized the button to be the same size as the thumbnail image. Checked that the button is linking to the correct movie page.
    In iWeb, when I "make links active", everything works properly. But once it's uploaded, the thumbnails/buttons, when clicked, open up a new browser window with just the jpg thumbnail.
    Any ideas to get this to work? Or do I have to start over, and lay it all out maually?
    G5 DP 1.8 & PowerBook G4 15"   Mac OS X (10.4.6)  

    I think the problem may be related to the Photo page template. When you click on the thumbnail, I think there is some built-in functionality to open a new slideshow window or something.
    Instead of using the Photo gallery template, try using a plain page...one of the templates with as few elements as possible...maybe the movie template. Then manually add your movie thumbnails and size them to your liking. then add the hyperlinks to your movie pages to each thumbnail. I think you might find that this works better.
    ==> www.DirtDoog.com <==</a>    
    Place A Virtual Pin On Putt-Putt's GuestMap!

Maybe you are looking for

  • Can I use REST to copy files from on library in a HNSC to another library in a different HNSC (or even different Tenants)

    Hi I am building a SharePoint hosted app which uses a REST Call to get file details of a file held in a host web library. Ok if want to copy that file to another a library held in another HNSC. Surely this is possible subject to the app manifest perm

  • Graphs as a slideshow

    Please can anyone help. I have produced 10 graphs in pages (findings from a questionnaire) and would like to paste them into i-web preferably displaying them as a slideshow. In other words as i-web displays photos as a slideshow I would like to show

  • Music not downloading correctly

    I Just got the new iPod Touch 5, but some of the music isnt downloading. the name of the songs are showing up in a light gray font but when I touch it, it doesnt play the song. This is happening to about 1/4 of my 300 songs. What should I do?

  • Installing OSX 10.4 on intel chipsets

    I'm thinking about building a desktop and I was wondering if anyone knows any type of way to install Mac OS X 10.4 on it. I figured now that Apple's been using intel chipsets it wouldn't be too hard would it? Has anyone tried to do it or knows ways t

  • Amconsole has a problem amcontroller

    I am getting Server Error , misconfiguration when trying to enter http://<domain>:<port>/amconsole and when i start the webserver it is giving "Failure WebModule[amserver] WEB:2680 Exception starting filter amcontroller java.lang.ExceptionInitializeE