Is it possible to use two buttons on a master page to link to consecutive pages i.e. previous or next

The easiest way to explain what I am attempting to achieve is to create a navigation template on the master page, with two identical arrows, one pinned to the left side, and one to the right, along with a basic 3 button navigation for; home - table of contents - end for example.
The idea behind the arrows is that if on my "Plan" tab in Muse, I have all pages within the site in consecutive order from left to right and everytime I change the image that represents the previous or next, I have to go through every page, delete the source image, add the source image to every page (50+ pages) and then link each page individually to the next page in the order.
Any help would be greatly appreciated.
Jeff

I produce a 300-page magazine twice a year that uses next/previous links. Unfortunately master items can't be edited on individual pages. My solution is to edit the HTML after the export. Too bad overrides don't work as they do in InDesign.
In Muse you could create the arrows on an editable page, then copy/paste-in-place on the rest of the pages and edit the links on each page. Isolate them on a separate locked layer above the regular page content so they don't get moved accidentally.
Julie

Similar Messages

  • How to move node in treeView using two buttons ?

    Hello ,
    Am starter , and am working on a Winforms application.
    I browse an XML file , then I populate treeview in my interface. I want to move selected node in the two sens ( up and down)  using two button ( so not with events , normal drag and drop with mouse ) .
    - I select the nod 
    - I click on the up button , then the node take the new place ( something like , drop and insert maybe )
    I don't know if is possible to affect this events to button or they are another way to do this 
    this is my code concerning populating treeView :
    private void browseSourceFileBtn_Click(object sender, EventArgs e)
    var openSourceFile = openSourceFileDialog.ShowDialog();
    if (openSourceFile == DialogResult.OK)
    fichierSourcePath.Text = openSourceFileDialog.FileName;
    // Connect the XML FILE DATABASE to the application interface
    private void button1_Click(object sender, EventArgs e)
    if (openSourceFileDialog.FileName == String.Empty)
    MessageBox.Show("u should open a file", "Erreur de chargement", MessageBoxButtons.OK, MessageBoxIcon.Error);
    else
    try
    MessageBox.Show("plz wait ");
    statusLabel.Text = "Début de chargement du fichier";
    var doc = new XmlDocument();
    doc.Load(openSourceFileDialog.FileName);
    sourceTreeView.Nodes.Clear();
    var rootNode = new TreeNode(doc.DocumentElement.Name);
    sourceTreeView.Nodes.Add(rootNode);
    sourceTreeView.CheckBoxes = true;
    sourceTreeView.AllowDrop = true;
    DateTime starteTime = DateTime.Now;
    BuildNode(doc.DocumentElement, rootNode);
    DateTime endTime = DateTime.Now;
    TimeSpan duree = endTime - starteTime;
    sourceTreeView.ExpandAll();
    sourceTreeView.Nodes[0].EnsureVisible();
    string chargementTemps = "" + duree.Minutes + "min : " + duree.Seconds + "s : " + duree.Milliseconds + "ms";
    statusLabel.Text = "Chargement effectué avec succés en :" + chargementTemps;
    catch (Exception)
    sourceTreeView.Nodes.Clear();
    statusLabel.Text = "Echec de chargement";
    thanks u a lot 

    Hi Nico68er,
    According to your description, you'd like to move up or down the node in TreeView.
    By reseraching, I found this post in StackOverFlow is similar with your issue.http://stackoverflow.com/questions/2203975/move-node-in-tree-up-or-down
    From this answer.
    You can use the following extensions
    public static class Extensions
    public static void MoveUp(this TreeNode node)
    TreeNode parent = node.Parent;
    TreeView view = node.TreeView;
    if (parent != null)
    int index = parent.Nodes.IndexOf(node);
    if (index > 0)
    parent.Nodes.RemoveAt(index);
    parent.Nodes.Insert(index - 1, node);
    else if (node.TreeView.Nodes.Contains(node)) //root node
    int index = view.Nodes.IndexOf(node);
    if (index > 0)
    view.Nodes.RemoveAt(index);
    view.Nodes.Insert(index - 1, node);
    public static void MoveDown(this TreeNode node)
    TreeNode parent = node.Parent;
    TreeView view = node.TreeView;
    if (parent != null)
    int index = parent.Nodes.IndexOf(node);
    if (index < parent.Nodes.Count -1)
    parent.Nodes.RemoveAt(index);
    parent.Nodes.Insert(index + 1, node);
    else if (view != null && view.Nodes.Contains(node)) //root node
    int index = view.Nodes.IndexOf(node);
    if (index < view.Nodes.Count - 1)
    view.Nodes.RemoveAt(index);
    view.Nodes.Insert(index + 1, node);
    Child nodes will follow their parents.
    You could use this class in your program.
    If you want to move the node up. Call the Extensions.MoveUp(this.treeView1.SelectNode)
    private void button1_Click(object sender, EventArgs e)
                if (this.treeView1.SelectedNode != null)
                    Extensions.MoveUp(this.treeView1.SelectedNode);
    If you have any other concern regarding this issue, please feel free to let me know.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Is it possible to use two speakers with one Apple Tv ?

    Hello everyone,
    I bought an Apple Tv and I have one apple express with a Bose speaker and a Bose Link Air speaker.
    I would like to see a movie using the two speakers but every time that I try to select two speakers in the airplay Apple Tv menu, it automatically deselect the other speaker.
    Is it possible to use two speakers in the same time ? ( I know it's possible with Itunes)
    Thank,
    Ps: I have the last Apple TV

    No, that is not possible with Apple TV. You can set one 'output' via Apple TV, and 'stream' to multiple speakers from iTunes or via the remote app.

  • Is it possible to use two External HD to back up through time machine

    when I go to System preferences and then select disk I am given three options
    2 external HD's and time machine, I am currently not using Time Capsule
    can I choose the 2 external HD's so one backs up the other or is this only possible to use an external HD when using the time capsule option which I assume is the wireless back up option for apple using wifi, this backs up everything linked to it I assume, my iphone, ipad, macbook and imac (if i chose to go down that route which seems like the place to go?)

    ok great thats what i thought
    How do I check if I am running moutain lion
    about this mack gives me Mac OS X
    Version 10.7.5
    I am running Software UPdate as I type
    assuming that I have Moutain Lion how do I link the two ecternal HD's ?

  • Is it possible to use two diff forms in same jsp/jsf page?

    Hi all,
    My requirement is to submit the form based on selection of radio button.
    since half part needs to be jsp based which is not using any tags etc.
    But i am trying to use some jsf based component which requires to be inside <f:view><h:form> of
    <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %>
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %>
    i.e. some <c:comboBox>
    </h:form> </f:view>
    Now earlier i was submitting the form as
    <form action="/techstacks-v2_1/reportAction.do" method="post" name=doSearch id='doSearch'>
    But now i found, in order to use combo box component which is entirely jsf based i need to use <f:view><h:form> which is kind of taking over the previous form submission mechiansm.
    I am trying to keep them separate as two differnt forms.
    one entirely jsp based and other as jsf based.
    Now my question is can i use such way of doing so or is there any better way of implementing so.
    My friend suggested that i can pass the value of jsf based form in hidden form to a input box of form to be submitted finally instead of submitteing two diff forms.
    but in that case also i ahev to use two forms in a single jsp/jsf page.
    suggest me something which can really work out.
    thanks
    vijendra

    You can use as many forms as you want as long as you don't nest forms. The HTML spec probibits that.

  • Help!  GUI using two buttons

    Hello all:
    I have created a class for reading and writing to a text file on my hard drive. Also, I have created another class for a GUI to use for opening the text file with a button labeled Display. As you will see in the code below, I have created another button labeled Update. I seek to be able to edit and save the text directly in the text area with the Update button after opening the file with the Display button. Any help would be greatly appreciated. Thanks!
    /** Class TextFile */
    import java.io.*;
    public class TextFile
        public String read(String fileIn) throws IOException
            FileReader fr = new FileReader(fileIn);
            BufferedReader br = new BufferedReader(fr);
            String line;
            StringBuffer text = new StringBuffer();
            while((line = br.readLine()) != null)
              text.append(line+'\n');
            return text.toString();
        } //end read()
        public void write(String fileOut, String text, boolean append)
            throws IOException
            File file = new File(fileOut);
            FileWriter fw = new FileWriter(file, append);
            PrintWriter pw = new PrintWriter(fw);
            pw.println(text);
            fw.close();
        } // end write()
    } // end class TextFile
    /** Class TextFileGUI */
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TextFileGUI implements ActionListener
        TextFile tf = new TextFile();
        JTextField filenameField = new JTextField (30);
        JTextArea fileTextArea = new JTextArea (10, 30);
        JButton displayButton = new JButton ("Display");
        JButton updateButton = new JButton ("Update");
        JPanel panel = new JPanel();
        JFrame frame = new JFrame("Text File GUI");
        public TextFileGUI()
            panel.add(new JLabel("Filename"));
            panel.add(filenameField);
            panel.add(fileTextArea);
            fileTextArea.setLineWrap(true);
            panel.add(displayButton);
            displayButton.addActionListener(this);
            panel.add(updateButton);
            updateButton.addActionListener(this);
            frame.setContentPane(panel);
            frame.setSize(400,400);
            frame.setVisible(true);
        } //end TextFileGUI()
        public void actionPerformed(ActionEvent e)
            String t;
            try
                t = tf.read(filenameField.getText());
                fileTextArea.setText(t);
            catch(Exception ex)
                fileTextArea.setText("Exception: "+ex);
            } //end try-catch
        } //end actionPerformed()
    } //end TextFileGUI

    Swing related questions should be posted in the Swing forum.
    You are using the same ActionListener for both buttons, so you need to be able to tell which button was pressed. There are a couple of ways to do this:
    a) use the getSource() method of the ActionEvent and compare the source against your two buttons to see which one was pressed and then invoke the appropriate code.
    Object source = e.getSource();
    if (source == displayButton)
        //  do display processing
    else if (source == updateButton)
        //  do update processingb) Check the action command to determine which button was clicked. This approach is demonstrated in the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/button.html]How to Use Buttons
    Another option is to create separate ActionListeners for each button so there is no confusion
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    class TextAreaLoad
         public static void main(String a[])
              final JTextArea edit = new JTextArea(5, 40);
              JButton read = new JButton("Read some.txt");
              read.addActionListener( new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        try
                             FileReader reader = new FileReader( "some.txt" );
                             BufferedReader br = new BufferedReader(reader);
                             edit.read( br, null );
                             edit.requestFocus();
                        catch(Exception e2) { System.out.println(e2); }
              JButton write = new JButton("Write some.txt");
              write.addActionListener( new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        try
                             FileWriter writer = new FileWriter( "some.txt" );
                             BufferedWriter bw = new BufferedWriter( writer );
                             edit.write( bw );
                             edit.setText("");
                             edit.requestFocus();
                        catch(Exception e2) {}
              JFrame frame = new JFrame("TextArea Load");
              frame.getContentPane().add( new JScrollPane(edit), BorderLayout.NORTH );
              frame.getContentPane().add(read, BorderLayout.WEST);
              frame.getContentPane().add(write, BorderLayout.EAST);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.pack();
              frame.setLocationRelativeTo( null );
              frame.setVisible(true);
    }

  • It is possible to use two different accounts with a single Windows PC?

    My wife and I use two personal iPhone 5, with two different appleID. At home we only have a windows 7 PC connected via iCloud with my iPhone 5 and my iPad (with the same appleID). I wish I could also connected the iPhone 5 to my wife, but i can't do it! It is possible? If it is, how should I do? I installed the program iCloud accepts only one appleID...
    Thank you in advance who can help me!

    Setup 2 user accounts on your PC, one for your wife and one for you. Enter the relevant Apple ID into each user user account.

  • Css is it possible to use two VIPs with one source group?

    I have separate VIPs defined for balancing dns and radius. Both services are being balanced behind the CSS between two servers running both services. Is there a way, using source groups, to have the outbound dns udp lookups go out the associated dns VIP and a client's returning radius udp traffic sourced from the associated radius VIP?
    Just a note for clarity: both services defined for dns and radius have the same ip addresses. I can only define one of the services(i.e. dns) in a single source group which automatically associates the other service (i.e. radius) to that group.

    If I understand your question correctly, you want to have the same real server respond with a different source address based on with VIP was used to get to it.
    You can only put on instance of the server's ip address into a source group. That is you can't add the service name used for one rule into one group, and the service used in the other rule into another group, since the CSS only looks at the source address when it is determining to use the source group based on the service named in it. In order to have the same server use two different source groups, you would need ACL clause with the sourcegroup option, like
    permit any 10.0.0.1 eq 53 dest any sourcegroup
    permit any 10.0.0.1 dest any sourcegroup
    Michael

  • Is it possible to use two separate Apple IDs in Home Sharing?

    My wife and I each have an Apple ID that we have used in the past, pre-iTunes 9, for our own individual iTunes libraries. We would like to do Home Sharing, but it seems like we would have to go down to a shared Apple ID that wouldn't be either of the ones we already have. Is it possible that we can "sync" our two IDs with a new ID for Home Sharing so that we can still keep our separate identities, but still be able to Home Share? I figure that we could create a new ID and just authorize things from our old IDs, but we really don't want to do that. Any suggestions or answers? Thanks in advance for your help and sorry if this was asked before.

    I figure that we could create a new ID
    Don't do that.
    Make sure both computers are authorized for both iTunes accounts and use the same account (either one, it doesn't matter) to turn on Home Sharing.

  • Its is possible to use two embedded instances of OC4J at the same time?

    Hi,
    I need to run two web apps at the same time in JDeveloper. Each on must run in its own OC4J instance, in different ports. I don't want to run a remote OC4J instance, I want two embedded instances and JDeveloper 10g comes just with one.
    Wny ideas?
    Thanks in advance,
    Brian

    Brian,
    no, there is only one embedded OC4J instance possible. The option is to install OC4J stand alone locally.
    Frank

  • Is it possible to use two context nodes in a single table view?

    Hi all,
    I have a window context node which is mapped to a dictionary structure. I have created a second node which contains some texts. I've mapped both nodes with the context  of a view. In this view I have created a table which shows lines of the first node (the one mapped to a dictionary structure). What I want is to show some text from the second node in a column of the table.
    Both of the nodes are populated upon initialization of the window. And they have a 1:1 mapping. (i.e the first line of the second node has some text for the first line of the first node ) . When the table is displayed what I get is the first line of the second node for all the lines of the first node. How can I change that? How can I make the second (text) node show the relevant text of the relevant line?

    HI
    You can make it work by using the logic of populating the node itself with modified values.
    i.e. during the population of the first node populate the text with the text from the second node by looping through its elements
    one by one.
    node 1  -- during its population or may be after its population loop though its elements and modify the value of text
    with the proper value taken from the corresponding value of text from the corresponding element of node 2.
    thanks
    sarbjeet singh

  • Is it possible to use two workflows in one document library?

    The process is, the first person create document, then assigned another user to complete it and lastly send for approval. I had try to use three state workflow, however, it does not meet my requirements. and also, I tried to create workflows using SharePoint
    Designer but the workflows did not work. 
    Thank you in advance for your answers :)
    Azuaniza Ariffin

    I had tried your suggestions but the creators of the document will be the first person to receive the email. as example, I am the one who create the document. then I receive the email which require me to edit the document. once i submit, it will send it
    to second user. is it how this three state work?
    because what i want is, the creator of the document will send it to another user and the email will send to the user which require them to complete the form before send it for approval.
    if i'm wrong, correct me. I am newbie with this sharepoint :)
    Azuaniza Ariffin

  • Using two Button classes for single Button control MFC

    Hi,
    Here is my problem:
    I have a VC++ MFC dialog based application. There I am adding a Button to my dialog by just drag and drop from the tool box.
    I am also having a MyCustomButton.dll to give new looks to the button.
    Inside MyCustomButton.dll, MyCustomButton.cpp is the button class which is derived from CButton. 
    Now I want the behavior of my application in such a way at execution of my application, like if the  MyCustomButton.dll is present in system then the button of my dialog should look like as per implementation of MyCustomButton.dll, where as if the dll
    is not present normal MFC button should get displayed.
    Please guide me in achieving this. How can I make my application (*.exe) decide at run time.
    Thanks in Advance,
    Thanks & Regards, Mayank Agarwal

    Thanks Rupesh,
    But my requirement is like that only I have to decide at run time.
    Please look the scenario below:
    //  MyDialogDlg.h //
    #include "MyCustomButton.h"
    class MyDialogDlg
    MyCustomButton m_CalcButton;
    In the above piece of code
    m_CalcButton is object of  MyCustomButton class.
    and my requirement is such that if MyCustomButton
    .dll is not present then,  m_CalcButton should executed as the object of CButton class of MFC.
    There are cases where I  cant ship the dll.
    In such case how should I write the code? Please guide.
    Thanks in Advance.  
    Thanks & Regards, Mayank Agarwal

  • Is it possible to use two queries in a bw workbook?

    How can i attach two queries into a bw workbook?

    Hi
    I can't understood perfectly what ur asking
    but as per understanding, you mean we can't do complicated caluculation?
    If that is ur question it is not true u can do any type of caluculation and conditions
    Regards
    Kiran

  • I call a class using a Button but i cant get rid of the old page??

    Hey,
    I cant get rid off the current page when i want to go to the next page! this.dispose(); doesnt work because the class doesnt implement ActionListener!! This is the code that i have used:
    JButton back = new JButton("BACK");
            back.addActionListener(new ActionListener()       
                  public void actionPerformed(ActionEvent e)           
                       VowelmSound s = new VowelmSound();
                        s.setSize(Toolkit.getDefaultToolkit().getScreenSize());
                        s.show();
                        //this.dispose();           
             });         });       and this is the code for main
    public static void main(String[] args)
    {JFrame draw = new punjabidraw();   
             draw.setVisible(true);  
    }so was wondering if there was another method i could use to get rid of the old page?? repaint maybe???
    Hope you can help
    Kind Regards
    RSH

    //this.dispose(); 'This' is a nameless ActionListener object. Can't be dispose()ed.
    What do you want to dispose() really?
    And, what is your punjabidraw class?
    Save the currend page reference in a variable called, say, curPage, then do
    curPage.dispose();in the event handler for the button.

Maybe you are looking for

  • PI 7.1 Solution Manager

    Hello, Please provide me information or PDF regarding Solution Manager that is coming in PI 7.1. Thanks and regards Hemant Gupta

  • Receiver mail adapter problem

    I am doing File -XI-Mail scenario.I am able to pickup the file but don't receive any mail.In RWB in communication channel monitoring I can see the error log for receiver mail adapter.The error is "failed to send mail: java.net.SocketException: Networ

  • 30" new display won't work on PC

    Need help!!! Just purchased the HP D4999T PC, set it up and the Cinema HD 30" Display just shows a black screen. The power light is on, on the display and the computer is showing that the monitor is recognized. Attached an old Dell monitor and it wor

  • RCVPOR is missing the Inbound IDoc

    Hi all, I am getting IDoc from the XI with the status code 56. I found that receipt port is missing in the control record. If I use sender partner type as LS, it is working fine. When I use the sender partner type as KU IDocs are not getting posted s

  • NX vs Xtra vs USB vs To

    i'm probably getting a 40gb touch but want to see how it compares to the other players...i like the fm radio, voice & fm recording (can you record from a line in too)...is the battery removable?...does it have clock/sleep/wake, smart volume, or time