Problem navigating article with prev next buttons

I place a next and previous button to navigate between pages in the same article using gotonextpage but it stops working after a few times navigating the article. I tried with navto://article# but it did not worked either

You might have run across an intermittent page link bug in the Adobe Content Viewer. This bug was addressed in a recent hot fix. If you build a custom app (or a new Content Viewer), the issue should be resolved. Or, wait until the viewer is updated in the store.

Similar Messages

  • Prev/Next Buttons

    I am using some paging code to add a previous and next
    buttons to my spry gallery. I am attempting (unsuccessfully) to
    hide the previous button at the beginning of the recordset and the
    next button at the end. I have pasted the code below if anyone has
    any ideas.
    <script language="JavaScript" type="text/javascript">
    <!--
    var pageOffset =0;
    var pageSize = 5;
    var pageStop = pageOffset + pageSize;
    var dsGallery = new Spry.Data.XMLDataSet("images.xml",
    "/gallery/photos/photo", { filterFunc: MyPagingFunc });
    function MyPagingFunc(ds, row, rowNumber)
    if (rowNumber < pageOffset || rowNumber >= pageStop)
    return null;
    return row;
    function UpdatePage(offset)
    var numRows = dsGallery.getUnfilteredData().length;
    if (offset > (numRows - pageSize))
    offset = numRows - pageSize;
    if (offset < 0)
    offset = 0;
    pageOffset = offset;
    pageStop = offset + pageSize;
    // Re-apply our non-destructive filter on dsStates1:
    dsGallery.filter(MyPagingFunc);
    // Tell our 2nd region to update because we've adjusted
    // some of the variables it uses in its spry:if expressions.
    Spry.Data.updateRegion("list2");
    // Change the XPath for the 3rd data set so that the 3rd
    // region updates. Remember, position() starts at one and
    not
    // zero, so we have to add one to our pageOffset and
    pageStop.
    dsGallery.setXPath("/states/state[position() >=" +
    (pageOffset+0) + " and position() < " + (pageStop+1) + "]");
    -->
    </script>
    <input type="button" value="Prev"
    onClick="UpdatePage(pageOffset - pageSize);" />
    <input type="button" value="Next"
    onClick="UpdatePage(pageOffset + pageSize);" />

    why didn't you use Spry Paged View instead of writing your
    own code?
    then you can use
    if ({ds_PageNumber} == 1 ) {
    //disable prev button & enable next
    else if ({ds_PageNumber} == {ds_PageCount} ) {
    //disable next button & enable prev
    else{
    //enable both prev & next button
    you then just have to call this function, every time you do
    navigation or page load (using observer or anything else)

  • How to create a navigation bar with custom made buttons?

    I'm used to work with a similar program as Muse. In there we can create a single button and link them together into a navigation bar. I have tried all sorts of tutorials but none of them is discussing this possibility.
    To summorize. The idea is to create a button in photoshop and to use this as a theme to build a navigation bar. Possible or not and how? Thanks for assistance. Rgds Rufin

    Hi Brad,
    Thanks for your reply.
    No, not really. I used to work with XARA up till now. And being an Adobe Cloud user I think it a bit silly using two different systems. In XARA I can create a custom button and turn them into a navbar. For your information I include a few links to sites I created with Xara and I would like to know if I can create the same type of navbars with Abobe Muse. I already found out that all the other functions are available and some work a lot better in Muse, but I’m stuck on the navbar issue. I know I can create a button in Adobe PS and use it in Muse. But I didn’t manage to figure out how to create a navbar in Muse on basis of a button created in PS.
    www.restaurant-cedric.be or www.discoamigo.com or www.radioparadijs.be
    Grtz,
    Rufin
    LOGO-RUFIN'S-REISBUREAU-outlook
    Koningslaan 36 – b31
    8300 Knokke – Heist
    Tel: 050621052
    Fax: 050621072
    e-mail:  <mailto:[email protected]> [email protected]
    <http://www.rufins.be/> http://www.rufins.be
    <http://www.travelcoop.be/> travelcoop_logo_2013[1]  <http://ferventreisagent.be/rufins-reisbureau> klein logo
    Van: Brad Lawryk
    Verzonden: zondag 12 oktober 2014 19:40
    Aan: RUFIN DUWEL
    Onderwerp:  How to create a navigation bar with custom made buttons?
    How to create a navigation bar with custom made buttons?
    created by Brad Lawryk <https://forums.adobe.com/people/Brad+Lawryk>  in Help with using Adobe Muse CC - View the full discussion <https://forums.adobe.com/message/6817739#6817739>

  • Problem with Showing Next Button in Advanced Action

    I'm having problem using advanced actions (using Captivate 5.5) to show the next button after the user clicks three other buttons on the page.  I followed the directions here: http://blogs.adobe.com/captivate/2011/11/enabling-forced-navigation-for-your-interactive-s creens-in-adobe-captivate-5-5.html and also here: http://forums.adobe.com/message/4046433#4046433, although obviously not accurately.  Here are some screen shots to show what I've done. 
    From the slide properties panel
    The SSB_Completion Action
    The Scope Action (the schedule and budget actions follow the same format)
    And the slide timeline
    Thanks for any help - I'm about ready to pull my hair out with this.
    Debbie

    The check, conditional action is triggered on entering which slide? If it is the same slide as where the buttons with the standard actions sit, this condition will never result in True.
    I just answered a similar question in this thread:
    http://forums.adobe.com/message/4454104#4454104
    I think the best way is to have your present SSB.... action integrated in the different actions triggered by the buttons. Or is this not what you want: to have the Next button appear at the moment that the three other buttons have been clicked?
    Lilybiri

  • Lightbox Gallery, moving prev/next buttons to outside of the gallery box

    Hello,
    I want to change the look of the "prev" and "next" buttons to simple arrows and move them outside of the big image that opens up when you click on the thumbnail, so that no part of the big image is covered by these buttons.  Creating the arrow images are easy, but I've still got a lot to learn when it come to dealing with scripts.
    Which part of the script do I need to change to move the location of where there buttons show up?

    Julie726 wrote:
    Actually, I'm still having a problem getting those buttons to display before I worry about moving their positions.
    They have been uploaded to the correct locations.  I can't figure out why they don't display.
    They don't display because the link to those buttons points to an "images" folder (lowercase I) but they're stored on the server in "Images" folder (capital I).
    http://www.julieappelt.com/images/lightbox/lightbox-btn-close.gif does not work
    http://www.julieappelt.com/Images/lightbox/lightbox-btn-close.gif works
    It's usually best to avoid mixing cases when naming folders and files to avoid these issues, esp on Linux servers. Stick to all lowercase.

  • Sliding panels prev/next buttons

    Using graphic buttons for previous and next navigation with Spry Sliding Panels, how can the 'previous' button be dimmed or hidden when you're on the first slide, and conversly, have the 'next' button dimmed or hidden when you're at the end of the slides? Ideally there would be a CSS class added to one button or the other to change states. Or can the Spry Fade Effect be used here to fade the buttons on and off?

    The default Spry Widget has no functionality to indicate the current panel. I have created a small hack for that before. You might want to check out this post here:  http://forums.adobe.com/message/2175472#2175472
    Hopes this helps.

  • PDF Opening in Adobe reader with previous/next buttons always showing

    Is there any way to make it so when a specific pdf is opened in Adobe Reader, it always opens with the previous and next buttons showing, regardless of the user's settings?
    Thanks in advance.

    No.

  • Iterating though a List with a 'next' button.

    Hey people,
    I am just finishing off my GUI but I had a thought, I really would like to have next and previous buttons so I can move through my list.
    However I started by implementing the 'Next' button, but I have run into some trouble, on the GUI I want the user to click next and it moves obviously to the next record, then they can hit it again and it moves onto the next record again.
    However when I tried to do this, the interator refuses to move to the next record, it just stays at they record with the index of 0.
    I've read some books, done some research and tried all the ways I can think of, but to no avail, my code for the 'Next' method is below, the button on the GUI just calls it from a separate class.
    public void MusicNext()
    ListIterator titerator = iList.listIterator();
    if(titeration.hasNext())
    System.out.println(titerator.next());
    }

    Hmmm, I am a little confused (yes I am stupid), heres my code:
    import java.util.*;
    public class MusicList
                private List iList;  //names are stored in a list.
         public MusicList()
              iList = new LinkedList();
         public MusicList(List pListOfMusic)
              iList = pListOfMusic;
            //Here's the interator, but I get a null pointer exception error.
            ListIterator titerator = iList.listIterator();
            public void MusicNext()
                    if(titerator.hasNext())
              System.out.println(titerator.next());
         public void addMusic(Music pMusicName)
                iList.add(pMusicName);
         public void removeMusic(Music pMusicName)
              iList.remove(pMusicName);
            //Return the name with the given surname, otherwise return null.
         //Uses a linear search.
            public Music findTitle(String pTitle)
              Music tTitle = null;
              boolean found = false;
              Iterator it = iList.iterator();
              while (it.hasNext() && !found)
                   tTitle = (Music) it.next();
                   found = tTitle.getTitle().equalsIgnoreCase(pTitle);
              if(!found) tTitle=null;
              return tTitle;
         public Music findAuthor(String pAuthor)
              Music tAuthor = null;
              boolean found = false;
              Iterator it = iList.iterator();
              while (it.hasNext() && !found)
                   tAuthor = (Music) it.next();
                   found = tAuthor.getAuthor().equalsIgnoreCase(pAuthor);
              if(!found) tAuthor=null;
              return tAuthor;
            public Music findPublisher(String pPublisher)
              Music tPub = null;
              boolean found = false;
              Iterator it = iList.iterator();
              while (it.hasNext() && !found)
                   tPub = (Music) it.next();
                   found = tPub.getPublisher().equalsIgnoreCase(pPublisher);
              if(!found) tPub=null;
              return tPub;
         public String toString()
              return "Music List = " + iList.toString();
    }Thanks,
    Rob.

  • Apex 2.1 (XE) Master/Detail Page Question Regarding Prev/Next Buttons

    When creating a page of type master/detail the master form is auto-populated with two buttons that allow the user to navigate to the previous or next record. These buttons are implemented as submit buttons, which cause the session variables to be updated with the current form values prior to moving to the previous or next record. But no database update happens because the buttons have matching before computation branches that reload the current page. It seems to me as if these buttons should have been implemented as URL redirects so as to not cause the session variables to be updated, especially since they are being updated to values that will not match the newly displayed record. And another problem is that any user changes to items on the form get picked up by the page navigation submittal and are stored into the session's item variables, yet are never persisted to the database. When code on other pages use these item variables, you can get some strange results because of this.
    My current workaround is to store each displayed item into the session during the display of the page (during the rendering phase) using the htmldb_util save_session_state function. This effectively overwrites any errant data in the session variables with what is actually being shown on the screen. (As an aside, if anyone has a better way to cause all the session variables to be updated during the fetch and page rendering step, please let me know, otherwise I will continue hand coding the save_session_state for each item in an anonymous PL/SQL block).
    Ultimately I was wondering if anyone else thought these two buttons should have been implemented by the Apex designers as URL redirects, rather than submit buttons? This would have kept the session data update from happening. Or is there a good reason to have these buttons submitting that I haven't been able to figure out?
    Thanks in advance for any thoughts on the issue.
    - Jim

    Is a before insert trigger not more interesting and safer in your use case?

  • Newbie :  JSP session problem after reload with IE refresh button.

    Hi,
    I had an issue with JSP reloading using tomcat 4.* and IE.
    I have a jsp1.jsp is opened in two different IE windows(one by one). Once i refreshed using IE refresh button from the first window, its loaded with second windows session details. Its changess whole http request object with second window.
    Am not sure , why its happening ? Could anybody shed light on this ?
    Thanks and Regards
    PV

    Hello,
    No, am not saving any form details . But i noticed session id is changing completely for the first window once i loads frame on the second window.
    javascript:alert(document.cookie) Above scriptlet (IE address bar) returns session id from the second window rather than current window without refreshing, that means, its removed whole request completely or somehow manipulated previous sessions. Can anybody explain this behaviour ?
    Thanks

  • Prev Next Buttons on top of jQuery

    I have a scrolling banner and on the left and right of the image I want to place 2 buttons on top of the image that scrolls.
    I have coded CSS style position:absolute or even relative, which displays fine if jQuery is not used.
    How can I code this to jQuery as the previous and next always sits underneath the image and you cannot see it
    http://www.australiancheapholidays.com/site/
    thanks

    Give the 'dialog' <div> a position of relative:
    .dialog {
    position: relative;
    Then absolutely position your 'prev2' and 'next2' links (z-index, see below) will place the links on top of the banner images.
    #prev2 {
    position: absolute;
    top: 130px;
    left: 30px;
    z-index: 300;
    #next2 {
    position: absolute;
    top: 130px;
    left: 920px;
    z-index: 320;

  • Next button problems DVD studio pro

    I'm having a problem with navigation on a project, specifically the next button navigation.
    I have a dual layer disc with 7 20 minute shows. Track 1 = show 1, etc. Play All button leads to Track 1. End jump of Track 1 is set to Track 2 and so on until the last show the end jump is set back to menu 1. Each track has 4 chapter markers.If I just sit back and let it play through it plays perfectly (on disc and simulator).  When I hit the next button in the simulator it advances to the next chapter as it should except that at the last chapter marker for each track it does not advance, instead playing through a 12 second credit sequence before jumping to the next track. However when I burn the DVD and hit next at the last chapter marker it goes back to the beginning of that individual show, I can then  hit next to go through the chapters again, and the second time through it will jump to the next track on the disc as it should. This happens for every track.
    Similar problem for Menu 2, buttons for individual shows lead to Stories for each track with the end jump going back to Menu 2. It works fine if I just let it play through. However when navigating with the next button it plays as above in the simulator (does not skip credits) but then goes back to Menu 2. On disc however it will either jump back to the beginning of the same track or to a different track, sometimes sequential, sometimes not.
    Seems like I'm missing something simple but I've been through the manual and searched through the inspector for any kind of controls and can't find anything that applies. Anybody have any idea what area I should be looking in? I suppose one answer would be to burn everything as one single track and then do stories for the individual shows, but is there away to make this work?
    This is my first dual layer disc, don't know if that is causing issues. Jump point is set manually 4.2G into the project, OTO, not seamless, at a black spot in show 5. It seems to be working fine, don't know if this has anything to do with the navigation problems.
    Thanks all

    I'd put all 7 onto 1 track.  Then use stories to build the disc.   Way less complicated and easier for you (and the DVD player) to know what is going on.
    This way you can set it where Story 1 Plays just the first Show and then goes back to the menu.  The way you are trying to set it up now it would play the next show automatically (you may want it to do this, I don't know)  but with stories you can have each show play and the go back to the menu (or continue playing the next one).  Then on your play all button you point to a story that includes everything. (Or just point it to the 1 track that has everything on it already)

  • Navigating Through Groups of Radio Buttons

    Hi,
    I am having a problem navigating through groups of radio buttons.
    I have several groups of radio buttons, I tab to the first radio button and then press the down arrow to move to the next radio button in the list.
    When I press the down arrow the focus does not go to the next radio button in the list. The radio buttons appear to be selected in a random order.
    I have made sure that the buttons are listed in the same order in the hierarchy. I have also arranged the buttons so they appear in alphabetic order. This doesn't seem to make any difference.
    Any ideas???
    Thanks in advance,
    Emma

    I was trying to use the script in this example to solve a similar problem I'm having with a radio button group that started acting strange when I added a script to it. However, the checkboxes are not acting like radio buttons. Meaning I can click multiple values and I only want 1 of the 4 options clicked. So, when I check the 2nd box I want the 1st to go away and it doesn't.
    Here is my code, I've got 4 checkboxes (used to be radio buttons) and a text field at the end that appears if the last option is checked. Can someone tell me what I've done wrong?
    1st checkbox:
    if (this.rawValue == "Yes") {
    this.access = "protected";
    form1.subform3.TruthDataDIS.access = "open";
    form1.subform3.TruthDataDIS.rawValue = "No";
    form1.subform3.TruthDataTENA.access = "open";
    form1.subform3.TruthDataTENA.rawValue = "No";
    form1.subform3.TruthDataOther.access = "open";
    form1.subform3.TruthDataOther.rawValue = "No";
    2nd checkbox:
    if (this.rawValue == "Yes") {
    this.access = "protected";
    form1.subform3.TruthDataHLA.access = "open";
    form1.subform3.TruthDataHLA.rawValue = "No";
    form1.subform3.TruthDataTENA.access = "open";
    form1.subform3.TruthDataTENA.rawValue = "No";
    form1.subform3.TruthDataOther.access = "open";
    form1.subform3.TruthDataOther.rawValue = "No";
    3rd checkbox:
    if (this.rawValue == "Yes") {
    this.access = "protected";
    form1.subform3.TruthDataDIS.access = "open";
    form1.subform3.TruthDataDIS.rawValue = "No";
    form1.subform3.TruthDataHLA.access = "open";
    form1.subform3.TruthDataHLA.rawValue = "No";
    form1.subform3.TruthDataOther.access = "open";
    form1.subform3.TruthDataOther.rawValue = "No";
    4th checkbox:
    if (this.rawValue == "Yes") {
    form1.subform3.TruthDataOtherName.presence = "visible";
    form1.subform3.StaticText36.presence = "visible";
    this.access = "protected";
    form1.subform3.TruthDataHLA.access = "open";
    form1.subform3.TruthDataHLA.rawValue = "No";
    form1.subform3.TruthDataDIS.access = "open";
    form1.subform3.TruthDataDIS.rawValue = "No";
    form1.subform3.TruthDataTENA.access = "open";
    form1.subform3.TruthDataTENA.rawValue = "No";
    else {
    form1.subform3.TruthDataOtherName.presence = "invisible";
    form1.subform3.StaticText36.presence = "invisible";
    Thanks in advance for your assistance,
    Debra

  • Could not work next button.

    Hey All!
    I'm now working with j2me for Nokia. And for this I'm using a third party named Jmobilecore.
    Its nice to use.. but I'm now facing a problem to show the next page as with softKey(Next Button) action.
    this works for the second part not for the first part.. to work this I've to press key Up or down after Next button.
    My code snippet is given below:
    * AddSurveyUI.java
    * Created on March 29, 2009, 2:20 PM
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    package com.bxpress.mid.ui;
    import com.jmobilecore.ui.core.Label;
    import com.jmobilecore.ui.core.List;
    import com.jmobilecore.ui.core.ListComponent;
    import com.jmobilecore.ui.core.ListLabel;
    import com.jmobilecore.ui.core.ListScreen;
    import com.jmobilecore.ui.core.SoftKey;
    * @author ronu
    public class AddSurveyUI extends ListScreen {
    List list;
    private String[] mediaType = {"TV", "Radio", "Other"};
    String[] subMediaList;
    public String item = "";
    static AddSurveyUI addSurvey;
    ListComponent listComponent;
    EntryInfoUI entryInfoUI;
    int mediaId = 0;
    int state;
    public SoftKey next_Btn = new SoftKey(Localization.CC_NEXT_LBL) {
    public void performAction() {
    getMediaNameList();
    if(mediaId !=0){
    refresh();
    state = 1;
    makeServeyUI(subMediaList);
    }else if(mediaId == 0){
    state = 0;
    entryInfoUI.showTransactionTable(Localization.NINTH_FORM_IDENTIFIER);
    public SoftKey back_Btn = new SoftKey(Localization.CC_BACK_LBL) {
    public void performAction() {
    if(state == 0) {
    refresh();
    entryInfoUI.goNext(Localization.NINTH_FORM_IDENTIFIER);
    }else if(state == 1){
    BXpress_Keya_2nd_Phase.mydisplay.setCurrent(BXpress_Keya_2nd_Phase.startPage);
    /** Creates a new instance of AddSurveyUI */
    public AddSurveyUI(String title) {
    super(Label.createTitleLabel(title));
    this.state = 0;
    entryInfoUI = EntryInfoUI.getInstance();
    System.out.println("In AddSurveyUI:::: ");
    makeServeyUI(mediaType);
    public static AddSurveyUI getInstance() {
    try {
    if(addSurvey == null) {
    addSurvey = new AddSurveyUI("BXpress");
    return addSurvey;
    catch(Exception exp) {
    exp.printStackTrace();
    return null;
    private void makeServeyUI(String[] mediaList) {
    try {
    System.out.println("In makeServeyUI:::: " + mediaList.length);
    for (int i = 0; i < mediaList.length; i++) {
    this.add(new ListLabel(mediaList));
    softKeyBar.setSoftKey(this.next_Btn, SoftKey.RIGHT);
    softKeyBar.setSoftKey(this.back_Btn, SoftKey.LEFT);
    } catch(Exception ex) {
    ex.printStackTrace();
    private String[] getMediaNameList() {
    item = getListItem();
    System.out.println("In getMediaNameList:::: " + item);
    if(item.equals("TV")) {
    mediaId = 2;
    subMediaList = new String[]{"NTV", "RTV", "CHANNELI"};
    } else if(item.equals("Radio")) {
    mediaId = 3;
    subMediaList = new String[]{"Radio Abc", "Radio Furti", "Radio Today"};
    } else if(item.equals("Other")) {
    mediaId =4;
    subMediaList = new String[]{"Internet", "NewsPaper", "Others"};
    } else {
    mediaId = 0;
    subMediaList = mediaType;
    return subMediaList;
    private String getListItem() {
    System.out.println("in getListItem::::");
    listComponent = getFocusedComponent();
    String str = listComponent.getText();
    return str;
    public void refresh() {       
    this.removeAll();
    Can any body pls help me about my step to taken to out this problem???

    See here: http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=ipod
    Be sure to choose China as your country though from the drop down list.
    B-rock

  • Implement paging (prev/next) for jtable data obtained from database

    Hello all, first time poster and relative newbie to java.
    I am trying to learn java and in the process have stumbled upon this issue.
    I have searched through the forum as well as googled my way around for answers. And though I am more informed than I was, I still am a little stumped.
    I would like to implement a table that pulls data from a database (mysql), limits the results, and include prev/next buttons to traverse through the records.
    I think this involves writing my own AbstractTableModel. And I have seen some examples as such. But could use a little more help.
    I will always be pulling 10 rows, but the columns will change depending on query I am using so implementing a more generic set of methods would be great.. To be specific...
    Table: users
    Columns: userid, ufname, ulname, utype, ustatus, etc....
    For selection purposes I only need to show: userid, ufname, ulname. So I figure I write a query like:
    select userid, ulname, ufname from users limit index, 10
    Where index tells the query where to start from then use the results to populate the jtable. I can do this statically but do not quite understand how to implement the next/prev buttons so that the table pulls the next or previous set of data.
    If this can happen without the need to repaint/refresh the frame that would be great.
    sudo code (with comments) would be ok, but a basic working example of this would be even better.
    thank you in advance, if more information is required please let me know.

    tumbleweeds roll by...........

Maybe you are looking for

  • URL disappears from within address bar (bar does not disappear)

    After visiting a site for a few seconds, the address bar removes the URL and says "search or enter address" Once "search or enter address" appears the cursor is automatically moved to the address bar, sometimes in the middle of typing something. This

  • Access all different attributes of a text layer in PS via extension

    Is it possible to grab all the different color, fontsize, fontname, ... attributes that make up the text in a text layer. In my tests it looks like each text layer had 1 textitem with just 1 set of attributes for color, size, font, .. There did not s

  • Mechanism for Info Object Data elements inherit source documentation?

    Say I am in ECC. I go to SE11, give table name MARA and then doubleclick on the dataelement 'MATNR'. Then I click on documentation. I get a popup with Short text " Material Number" and Definition "Alphanumeric key uniquely identifying the material'.

  • Multiple EventListeners, modulus and rotating cubes... performance issues.

    Hi. I've created a grid of 3D cubes using modulus, and the 3d cubes are were created from the Math and Flash Tutorial, if you are interested it is here http://www.flashandmath.com/advanced/menu3d/. What  I am trying to accomplish (and it works, just

  • Language portlet

    i use "Set Language portlet" to oracle portal 10.1.4... How can i replace this portlet with 2 images? eg i have english and germany flag in my html template (links) and i would like, when i click το this flags , το change the translation page..