How do you create different headers on each page of a document in icloud pages?

I have to have a different header on my title page than the rest of my paper.  I believe I did it once before but it may have been in the regular pages program on my Macbook Pro.  I was wondering if there was a way to do it on the icloud and ipad versions of pages due to I do most of my work away from my laptop.
Thanks!

I found on my computer, if you click on the header you can change it on each page.  There is also a place in Set Up under Sections at the bottom of the page that has a drop down to create a new Section either 'Starting with this section' or 'After this section'.  Hope this helps.  Also at the top there is a place under Headers & Footers to  choose either 'hide on first page of section' or 'match previous section'.  I believe if you deselect the 'match previous section' you can easily change the header or footer for each page.

Similar Messages

  • HT5538 How do you created different apple ID's on same iTunes account? Wife and 2 kids contacts are all linked on my phone and got to separate! Any help would be appreciated!

    My contacts are merging with wife, son and daughter. How do we create separate ID's but still maintain same iTunes account?

    You can use separate AppleIDs for iCloud, iMessage and iTunes - you just need to create unique AppleIDs for the iCloud accounts if syncing contacts that way (you will need an email address that is not already registered as an AppleID though to get another AppleID).
    Apps are different: purchases are tied to the AppleID used to log in to the store to make the purchase.  So you can create another AppleID for iTunes as well and use different ones on the different phones, but any apps you have already purchased with your existing AppleID are permanently tied to that AppleID.
    So,  unless you are sharing apps, content and such, there is no reason to use the same AppleID on each  So the simplest solution is to create new AppleID(s) for other devices.  If you need an email address to do that, just get a gmail account (or any other free email account).
    Good luck

  • How can I create different headers in Pages 09?

    I hope someone can explain to me how to solve this issue: I'm creating a simple training manual and I want the different chapters to appear in the header of the page - Chapter 1, Chapter 2, etc. Left and right pages are different because the margin has to be different for binding. Chapter 1 ended on an even page (a "left page.") I inserted a Section break at the bottom of that even-numbered page hoping to start a new section on the next page (odd numbered), and change the header to Chapter 2. However, to my surprise, when I changed the header to Chapter 2, all the previous headers for odd-numbred pages also changed to Chapter 2. Is there a way to prevent this from happening?
    On the Layout inspector, under Section, I only have checked the option "Left and right pages are different." Everything else is unchecked. I'm using version 4.2 of Pages 09 under Mountain Lion OSX.

    "Left and right pages are different because the margin has to be different for binding.
    Chapter 1 ended on an even page (a "left page.") I inserted a Section break at the bottom of that even-numbered page hoping to start a new section on the next page (odd numbered), and change the header to Chapter 2. "
    For the specifications above, the Inspector settings for Section 2 should be as shown in the image below:
    Section break at the end of the text for Chapter 1. If you have "Section starts on" set to "Right Page" your next section will start on the first recto page after the section break, inserting a blank page if necessary. You can also set this menu (red arrow) to start the next section on Any page (it will start on the next available page) or the next Left page (it will start on the lext verso page—an unusual setting).
    Page numbers may "Coontinue from previous section" or may re-start for this section, beginning with a value you set in the box (purple arrow).
    Left and Right are different (green arrow) allows a different header or footer on facing pages (eg. Book Title on verso, Chapter title and page number on recto). Note that this setting does not change 'Right' and 'Left' margin options to "Inside" and "Outside." That change is made by checking the Facing Pages checkbox in the Document Inspector.
    Finally, unchecking 'Use Previous headers & footers" allows editing the headers and footers in one section without changing those for the previous section. Note that the edits will take effect in the section containing the insertion point when the edit is made.
    Regards,
    Barry

  • How Do You Create a link to a Word or Excel document

    I was wondering how to create a link to a word or excel document in Adobe Muse. Thanks in advance.

    Hi Jozay,
    Please refer to the following link http://tv.adobe.com/watch/muse-feature-tour/add-and-link-to-any-type-of-file/
    Cheers!
    Aish

  • How do you create different shaped borders?

    I need to create lots of different shaped borders that can be selected for a particular component, I know that you have to either extend AbstractBorder or implement Border interface, but I don't really know how to get the shape that I want, the most basic of which is a circle.
    Also will the component 'know' how to size the border so that the child components fit within it with no overlap?
    if anyone has an example border class they could donate to ease my confusion, i would be most grateful

    I have attached code for a border that draws a circle. If the insets are not large enough, then the child component will overlap. The large the child component needs to be, the large the insets should be in order for the oval to not be broken.
    // Border class
    public class OvalBorder implements javax.swing.border.Border {
        // insets used by the parent component for sizing the child component
        java.awt.Insets insets;
        public OvalBorder( ) {
            this( new java.awt.Insets( 20, 20, 20, 20 ) );
        public OvalBorder( java.awt.Insets insets ) {
            this.insets = insets;
        // Tell the parent component not to pain a backgroun underneath the border.
        public boolean isBorderOpaque( ) {
            return false;
        // Paint a simple oval border.
        public void paintBorder( java.awt.Component component, java.awt.Graphics g, int x, int y, int width, int height ) {
            g.setColor( java.awt.Color.white );
            g.fillOval( x, y, width, height );
            g.setColor( java.awt.Color.black );
            g.drawOval( x, y, width, height );
        // Return the insets that the parent component will use to size
        // the child component
        public java.awt.Insets getBorderInsets( java.awt.Component p1 ) {
            // Must do a clone so an outside source does not mess up the inset object.
            return (java.awt.Insets)insets.clone( );
        // A simple frame example of the border
        public static void main( String[ ] args ) {
            javax.swing.JFrame frame = new javax.swing.JFrame( );
            frame.setDefaultCloseOperation( javax.swing.JFrame.EXIT_ON_CLOSE );
            javax.swing.JPanel panel = new javax.swing.JPanel( new java.awt.GridLayout( 2, 1, 0, 0 ) );
            panel.setBorder( new OvalBorder( ) );
            frame.setContentPane( panel );
            javax.swing.JButton add = new javax.swing.JButton( "Add" );
            javax.swing.JButton minus = new javax.swing.JButton( "Minus" );
            frame.getContentPane( ).add( add );
            frame.getContentPane( ).add( minus );
            Inc inc = new Inc( add, minus, frame );
            add.addActionListener( inc );
            minus.addActionListener( inc );
            frame.pack( );
            frame.setVisible( true );
    // A support class that will cause the frame to resize equaly in both directions.
    class Inc implements java.awt.event.ActionListener {
        javax.swing.JButton add;
        javax.swing.JButton minus;
        javax.swing.JFrame frame;
        java.awt.Dimension pref;
        public Inc( javax.swing.JButton add, javax.swing.JButton minus, javax.swing.JFrame frame ) {
            this.add = add;
            this.minus = minus;
            this.frame = frame;
            pref = minus.getPreferredSize( );
            pref.width = pref.height<<1;
        public void actionPerformed( java.awt.event.ActionEvent event ) {
            if ( event.getSource( ) == add ) {
                pref.width+=2;
                pref.height++;
            } else {
                pref.width-=2;
                pref.height--;
            add.setPreferredSize( pref );
            minus.setPreferredSize( pref );
            System.out.println( pref );
            frame.pack( );
    }

  • How do you customize different dock on each space mac lion?

    I just installed mac lion os and I want to have a different dock and put different apps on different spaces. For example I want my desktop1 to be a "play" desktop. Where I put all my games and msn and stuff. But I want my desktop 2 to be a "work" desktop, with all my microsoft words, keynote etc. I don't want the keynote and microsoft apps to appear on desktop1. How do I do it?

    I heard they simplified that and made it not possible anymore. Typical apple constricting people to be a certain way by decreasing options.
    I've beeing searching all over how to do that. No luck

  • In Address Book, how do you create a new group under "On my Mac", not under "iCloud"?

    In Address Book there are groups under "On my Mac" and groups under "iCloud".  When I do File -> "Create new group", the new group always goes under "iCloud".  How can I make a new group to go under "On my Mac".  I also tried dragging the new group from the iCloud area to the "On my Mac" area, but that doesn't do it.  Address Book is version 6.1.3.  Thanks for your help.

    Maybe look in the Preferences > Accounts & disable the iCloud account? That should force it to create a local group then re-enable the iCloud account. I would use the 'File > Export… Addressbook archive' to make a backup before you begin, but it should be fine.
    I'm not sure 10.6.8 supported iCloud natively, so perhaps that is why it is being wierd?

  • How do you create a custom button in LiveCycle to add a new form page to an existing form?

    Can someone tell me how to create a button to add a new form page to an existing form in Acrobat or Livecycle designer?

    Hi,
    You can use addInstance method to achieve your requiremnets.
    form1.#subform[1].instanceManager.addInstance()
    BR,
    Paul Butenko

  • Is it possible to have different headers for each page for the Pages app?

    I just purchased the Pages app for my ipad and it happens to be one of the best apps i've ever bought.  However, I'm having trouble figuring out how to have different headers for each page of the same document.  Is this possible to do?

    Tommy,
    One of the limitations of Pages for iOS on your iPad is that Pages can't create sections per se. The best you can do is insert page breaks and then assign different columns to that page. The problem comes with the headers and footers - in iOS Pages, the headers and footers apply to the whole document, not the individual sections as you would find in Pages '09 on OSX.
    The workaround is to create your document on OSX, insert the needed sections and headers, save, then transfer the Pages document to your iPad either as a working "blank" or as a new document. The headers and footers will reflect the sections you created in OS X, but you won't be able to add any new ones or new sections on your iPad.

  • How do I create different iTunes library for different Iphones in a family

    how do I create different iTunes library and Syncing Iphone separately using same desktop PC?

    The best way to set it up in my opinion is to have each user have there own user account on the computer. This way information is stored separately and easier to locate and navigate through.
    If you want to have it this way but would rather go through and log into different iTunes libraries on the same user account follow this article. If you do it this, it would work the same you just want to make sure the correct library is open before syncing the device.
    http://support.apple.com/kb/HT1589
    Hope this helps!!

  • How do you create table/datagrid programmatically?

    I'm ASP.NET developer and I'm writing my first application in JDeveloper & ADF and I'm having problem thinking through the solution.
    I'm building two JSF pages. First page will display 3 or more input text (text1, text2, text3...) and a ADF read-only table that displays list of records that contain 3 or more fields (field1, field2, field3...). Each input text on the form is related to corresponding fields (i.e. text1 goes with field 1 and so on) in the table. User will enter values in the input text boxes and select a row in the table and click next which will take the user to the second page.
    In the second page I need to take the selected row from table and corresponding input text and create another ADF readonly table (or something that looks lke table or grid). But this table needs to show in each field in the row as:
    - Name of Field 1 from the table on First page.
    - Value of Field 1 from the table on First page.
    - User inputted text 1 value from First page.
    - Checkbox that user can select to indicate if they want to use Field 1 or User entered text value
    I need to create a row for each field in the table on first page. How do you do this in JDeveloper & ADF? I'm in real hurry for this solution so if anyone can help I would greatly appreciate it.
    Thank you.
    Edited by: dansshin on Mar 6, 2010 6:59 AM
    Edited by: dansshin on Mar 6, 2010 7:02 AM

    Hi,
    this is not necessarily an ADF question but a basic JSF how-to question. ADF Faces provides you with JSF components, like RichInputText, RichTable, which are the runtime objects that make a table or a input text field. The table has one to many child components of type RichColumn, which you can either create at design time, if your table wasn't created dynamically, or in Java at runtime (using a managed bean associated with the page).
    You also need to keep the values of the previous page and pass them on to the next. One option is to use attributes in a shared memory scope. For example, you could create a HashMap in session scope and add the input values from the input text fields and the selected row values (as a list or collection). Then when building the table on the scond page, you could get this back and dynamically populate the table.
    However, you better search for a JSF tutorial that deals with such dynamic component creation and then get back to ADF Faces. As said, the question is not ADF specific but a request for a general JSF tutorial that we don't provide
    Frank

  • How do you create a mixed media disc? I would like to include a slideshow/movie as well as include a .pdf of a photo book on the same disc?

    How do you create a mixed media disc? I would like to include a slideshow/movie as well as include a .pdf of a photo book on the same disc. I would like the movie to play on any DVD player.

    Do you want the pdf available to view or just for copying from the disk to a computer for viewing.
    To view a PDF you can do a Print ➙ PDF ➙ Save PDF to iPhoto which will create a jpg of each page of the pdf and save it to iPhoto.  From there you can send the PDF jpegs to iDVD to make a slideshow of the pages.  It's the same principle as used in this tutorial: 06 - Creating an iDVD Slideshow From an iPhoto Book.
    If you don't have the Safe to iPhoto workflow in your HD/Library/PDF Services folder you can download it from  Toad's Cellar.
    Happy Holidays

  • How do you create an installer/bundle for PPro with extension, a plugin (export-controller) and some

    Hi
    As my topic says
    How do you create an installer/bundle for PPro with extension, a plugin (export-controller) and some custom presets?
    Assume you have Flash Builder 4.5, CS Extension builder 2.0, Xcode 4.5.1 running under MacOS 10.8.

    I understand why you need updated running headers in your book. To a sighted reader these serve as a guide to where you are and help you find things quickly.  In addition, if you are exporting your data to XML or HTML from the tagged PDF it would also be important to have these in the proper location. 
    But for accessibility purposes, it doesn't have to be there because the screen reader reads everything in linear order, line by line.  No one is looking at the page.  A user listening to the screen reader read the page is going to hear this heading, just before the actual word itself. So they will hear the first word on the page twice.  It's not the end of the world if it's there, but such headings are not necessary for accessibility unless they are not repetitive and contain information that is not otherwise available.
    So I would say, fine if you need them or want them there, it's just one word. 
    I think you should try exporting your book to PDF (or even just a chapter of the book) and look at the tags panel in Acrobat to see if you are getting the result you want.  I can't tell you exactly what you should do to get those results, you are using a plug-in I don't have. 
    I can tell you I didn't have to add the headers to any article at all, they just automatically export if the other articles in the file are added and you don't select the header style option "not for export as XML."
    You may not experience the same results with your plug-in, but I think it will probably work the same way. 
    Give it a try and best of luck.

  • Re: How do you create and use "common" type classes?

    Hi,
    You have 2 potential solutions in your case :
    1- Sub-class TextNullable class of Framework and add your methods in the
    sub-class.
    This is the way Domain class work. Only Nullable classes are sub-classable.
    This is usefull for Data Dictionary.
    The code will be located in any partition that uses or references the supplier
    plan.
    2- Put your add on code on a specific class and instanciate it in your user
    classes (client or server).
    You could also use interface for a better conception if needed. The code will
    also be in any partition that uses or references the supplier plan where your
    add on class is located.
    If you don't want that code to be on each partition, you could use libraries :
    configure as library the utility plan where is your add-on class.
    You can find an example of the second case (using a QuickSort class,
    GenericArray add-on) with the "QuickSort & List" sample on my personal site
    http://perso.club-internet.fr/dnguyen/
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    http://perso.club-internet.fr/dnguyen/
    Robinson, Richard a &eacute;crit:
    I'm relatively new to forte and I'd like to know how can you handle utility
    type classes that you want to use through out your application? Ideally
    what I want is a static class with static methods.
    Let's say that I have a StringUtil class that has a bunch of methods for
    manipulating strings.
    My problem is that we have code that runs on the client and code that runs
    on the server. Both areas could use the StringUtil class, but from what I
    understand, I have to create StringUtil in a plan and then create a server
    object of type StringUtil. The server object will eventually get assigned
    to a partition. That's not good since I really want the server object to
    physically reside at the server end and at the client end. (Actually, I
    don't want a server object, I just want to invoke a static method of a
    static class).
    Any clues on how to solve this problem would be appreciated.
    Also, what is the url at Sage-it that has a summary of all emails that have
    been posted to [email protected]? Perhaps this question has been
    answered previously.
    Thanks in advance
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Richard,
    Your question about "utility classes" brings up a number of issues, all of
    which are important to long-term success with Forte.
    There is no such thing as a static method (method that is associated with a
    class but without an implicit object reference - this/self/me "pointer") in
    TOOL, nor is there such thing as a global method (method not associated
    with a class at all). This is in contrast to C++, which has both, and
    Java, which has static methods, but not global classes. Frequently, Forte
    developers will write code like this:
    result, num : double;
    // get initial value for num....
    tmpDoubleData : DoubleData = new;
    tmpDoubleData.DoubleValue = num;
    result = tmpDoubleData.Sqrt().DoubleValue;
    tmpDoubleData = NIL; // send a hint to the garbage collector
    in places where a C++ programmer would write:
    double result, num;
    // get initial value for num....
    result = Math::Sqrt(num);
    or a Java programmer would write:
    double result, num;
    // get initial value for num....
    result = Math.sqrt(num);
    The result of this is that you end up allocating an extra object now and
    then. In practice, this is not a big deal memory-wise. If you have a
    server that is getting a lot of hits, or if you are doing some intense
    processing, then you could pre-allocate and reuse the data object. Note
    that optimization has its own issues, so you should start by allocating
    only when you need the object.
    If you are looking for a StringUtil class, then you will want to use an
    instance of TextData or TextNullable. If you are looking to add methods,
    you could subclass from TextNullable, and add methods. Note that you will
    still have to instantiate an object and call methods on that object.
    The next issue you raise is where the object resides. As long as you do
    not have an anchored object, you will always have a copy of an object on a
    partition. If you do not pass the object in a call to another partition,
    the object never leaves. If you pass the object to another partition, then
    the other partition will have its own copy of the object. This means that
    the client and the server will have their own copies, which is the effect
    you are looking for.
    Some developers new to Forte will try to get around the lack of global
    methods in TOOL by creating a user-visible service object and then calling
    methods on it. If you have a general utility, like string handling, this
    is a bad idea, since a service object can reside only on a single
    partition.
    Summary:
    * You may find everything you want in TextData.
    * Unless you anchor the object, the instance will reside where you
    intuitively expect it.
    * To patch over the lack of static methods in TOOL, simply allocate an
    instance when required.
    Feel free to email me if you have more questions on this.
    At the bottom of each message that goes through the mailing list server,
    the address for the list archive is printed:
    http://pinehurst.sageit.com/listarchive/.
    Good Luck,
    CSB
    -----Original Message-----
    From: Robinson, Richard
    Sent: Tuesday, March 02, 1999 5:44 PM
    To: '[email protected]'
    Subject: How do you create and use "common" type classes?
    I'm relatively new to forte and I'd like to know how can you handle utility
    type classes that you want to use through out your application? Ideally
    what I want is a static class with static methods.
    Let's say that I have a StringUtil class that has a bunch of methods for
    manipulating strings.
    My problem is that we have code that runs on the client and code that runs
    on the server. Both areas could use the StringUtil class, but from what I
    understand, I have to create StringUtil in a plan and then create a server
    object of type StringUtil. The server object will eventually get assigned
    to a partition. That's not good since I really want the server object to
    physically reside at the server end and at the client end. (Actually, I
    don't want a server object, I just want to invoke a static method of a
    static class).
    Any clues on how to solve this problem would be appreciated.
    Also, what is the url at Sage-it that has a summary of all emails that have
    been posted to [email protected]? Perhaps this question has been
    answered previously.
    Thanks in advance

  • How do you create a column of sequenced dates in Numbers

    How do you create a column of sequenced dates in Numbers without typing in each date? For example: 01/05/15, 01/12/15, 01/19/15, 01/26/15, 02/02/15, etc.

    Hi Cha Ling,
    Another way,
    Enter your first two dates that show the desired interval- i.e. 01/05/15 and 01/12/15.
    Select both cells and choose fill from the contextual menu.
    Drag down to fill your column.
    quinn

Maybe you are looking for

  • Submitting Concurrent Request from Standard OAF Page

    Hi, I'm a new comer to both Java and OA Framework.. I'm working in oracle apps from a long time but my experience is with forms and reports based world so excuse me if i'm asking a dumb question.. My requirement is to add a button to a standard page.

  • What are the advantages of using firefox mobile

    I do not understand the advantage of using Firefox mobile over just clicking "internet" on my Android. Firefox mobile seems sluggish and slow. I would support it if I knew there was some sort of advantage. What might that be?

  • Set Gradiant color for JTabbedPane

    Hi, can any one tell me how to set a gradient color to Jtabbedpane? Thanks in advance. Regards, Nandha.

  • AME CS6 h264 output that can play in final cut.

    i need to output H264 files, which will play in Final Cut 7. When I choose H264 codecs in AME CS6, the files are .mp4 which will not play in FCP7. My director needs to be able to play them in FCP7. How can I get AME to output H264 and not .mp4? Thank

  • Skin resource bundle

    Hi, I'm using a paged af:table and getting in the logs "<RenderingContext> <getTranslatedString> Could not fetch resource key Page from the skin myskin.desktop" (roughly translated). Solution in non-portal application is to specify resource bundle wi