Can't get to the next page in a pages document

can't get to the next page in my pages document

Is it a technical problem or writer's block?

Similar Messages

  • HT1918 I'm having trouble viewing my account in iTunes, I'm signed in but can't get passed the next login window - any ideas?

    I'm having trouble viewing my account in iTunes, I'm signed in but can't get passed the next login window - any ideas?

    carolinechx wrote:
    i know the description may be a little bit too confusing
    Mostly because you are not using any capital letters or paragraph returns and your post is difficult to read.

  • Can't get to the next question...

    Hello,
    I am brand new to programming and Java and am trying to teach myself. Seems like an imposible task however I'm giving it a shot. I am trying to create a simple menu selection
    quiz program to choose between topic and answer questions. This is what I have so far and
    I'm not sure how to get to the next question. Can anyone give me any assistance please?
    Thank you,
    Mark
    Here is what I have so far:
    import java.util.Scanner;
    class Quiz {
        public static void main(String args[])
              throws java.io.IOException {
              char choice;
              char quit = 'x';
              int questions = 1;
              int number;
              System.out.println("     Welcome to the Quick Quiz program!!!\n ");
              System.out.println("     Would you like to try the Math, Science or Art Quiz?\n ");
              System.out.println("     m > for math ");
              System.out.println("     s > for science ");
              System.out.println("     a > for art\n ");
              System.out.println("     or Hit x to Exit ");
              choice =(char) System.in.read();
            System.out.println("\n");
              switch(choice) {
                   case 'm':
                     System.out.println("  Here comes the math quiz>>>\n");
                        System.out.println("  Question 1. What is 3 + 3?");
                     System.out.println("     a) 9\n     b) 3\n     c) 33\n     d) 6 ");
                     System.out.println("  Choose one (x to EXIT)\n");
                      choice =(char) System.in.read();
                  if (choice == 'd') {
                         System.out.println("  Correct!! " );
                   } else if (choice == 'a' || choice == 'b' || choice == 'c') {
                            System.out.println("  Sorry, Wrong Answer\n\n");
                               System.out.println("  Next Question");
                               System.out.println("  Question 2. What is 15 x 2?");
                               System.out.println("     a) 9\n     b) 3\n     c) 33\n     d) 6 ");
                          }}}

    I really appreciate your help but I guess I am still just a little too green, Would there be any way you could just give me some kind of outline on how to do that? My biggest problem is where to put everything. I'm only looking to try and get 5 questions to work for now. I know that I need to use the System.in.read(); statement to keep prompting the quiz taker after each question. I think I got a little further now.
    Thank you,
    Mark
    import java.util.Scanner;
    class Quiz {
        public static void main(String args[])
              throws java.io.IOException {
              char choice;
              char quit = 'x';
              int questions = 1;
              int number;
              System.out.println("   \nWelcome to the Quick Quiz program!!!\n ");
              System.out.println("     Would you like to try the Math, Science or Art Quiz?\n ");
              System.out.println("     m > for math ");
              System.out.println("     s > for science ");
              System.out.println("     a > for art\n ");
              System.out.println("     or Hit x to Exit ");
              choice =(char) System.in.read(); System.in.read
            System.out.println("\n");
              switch(choice) {
                   case 'x':
                      System.out.println("  Sorry to see you go, Good Bye!!!");
                      break;
            switch(choice) {
                   case 'm':
                     System.out.println("  Here comes the math quiz>>>\n");
                        System.out.println("  Question 1. What is 3 + 3?");
                     System.out.println("     a) 9\n     b) 3\n     c) 33\n     d) 6 ");
                     System.out.println("  Choose one (x to EXIT)\n");
                                   do {
                                     choice =(char) System.in.read();
                      } while (choice == '\n' || choice == '\r');
                  if (choice == 'd') {
                         System.out.println("  Correct!! " );
                   } else if (choice == 'a' || choice == 'b' || choice == 'c') {
                            System.out.println("  Sorry, Wrong Answer\n\n");
                            System.out.println("  Next Question");
                               System.out.println("  Question 2. What is 15 x 2?");
                               System.out.println("     a) 13\n     b) 30\n     c) 17\n     d) 60 ");
                           do {
                                     choice =(char) System.in.read();
                      } while (choice == '\n' || choice == '\r');
                  if (choice == 'b') {
                         System.out.println("  Correct!! " );
                   } else if (choice == 'a' || choice == 'c' || choice == 'd') {
                            System.out.println("  Sorry, Wrong Answer\n\n");
                               System.out.println("  Next Question");
                               System.out.println("  Question 3. What is 12 - 4?");
                               System.out.println("     a) 16\n     b) 18\n     c) 8\n     d) 48 ");
                           do {
                                     choice =(char) System.in.read();
                      } while (choice == '\n' || choice == '\r');
                  if (choice == 'c') {
                         System.out.println("  Correct!! " );
                   } else if (choice == 'a' || choice == 'b' || choice == 'd') {
                            System.out.println("  Sorry, Wrong Answer\n\n");
                               System.out.println("  Next Question");
                               System.out.println("  Question 4. What is 12 - 4?");
                               System.out.println("     a) 16\n     b) 18\n     c) 8\n     d) 48 ");
                           do {
                                     choice =(char) System.in.read();
                      } while (choice == '\n' || choice == '\r');
                  if (choice == 'c') {
                         System.out.println("  Correct!! " );
                   } else if (choice == 'b' || choice == 'c' || choice == 'd') {
                            System.out.println("  Sorry, Wrong Answer\n\n");
                               System.out.println("  Next Question");
                               System.out.println("  Question 5. What is 16 / 4?");
                               System.out.println("     a) 4\n     b) 20\n     c) 21\n     d) 12 ");
                           do {
                                     choice =(char) System.in.read();
                      } while (choice == '\n' || choice == '\r');
                  if (choice == 'd') {
                         System.out.println("  Correct!! " );
                   } else if (choice == 'a' || choice == 'b' || choice == 'c') {
                            System.out.println("  Sorry, Wrong Answer\n\n");
                               System.out.println("  Thank You, This concludes your Quiz");
    }

  • I upgraded to IOS7 and  now I can't get past the icloud terms and conditions page.  I press agree and the box pops up however I can't click on agree or disagree.  Please help

    i upgraded to IOS 7.0.2 on my ipad and now I can't get past the terms and conditions page to finish the setup.  I click agree and then a small box appears to click agree again and I can't choose agree or disagree.  I just need my ipad to work...  help

    Reset iPad and continue with update
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • I created an allowance for my daughter but can't get past the edit Apple ID details. I get Your information could not be saved at this time.

    I had to create an account for her because she is underage but I can't get past the edit Apple ID details page. I have confirmed the email address and was able to set up some of the services on the iPod but can't finish setting up the account.

    I'm experiencing the very same thing.  I assumed that the site was down, but it looks like there are multitudes of complaints about this.  What's up Apple?  I can't seem to find an answer to this online...  Thanks!

  • On macy's website I can't go to the next page while shopping

    I have tried clearing history,clearing cookies and data. I don't know what else to do

    it does not help at all...
    this is what i get when i instal i can't go therder...
    i need to put my corect email this one is no longeur avaliable
    i realy need to instal please....[image: Images intégrées 1]
    2014-06-28 20:27 GMT+02:00 John T Smith <[email protected]>:
        when i load creative cloud my computer detect the wrong email ...i
    can't go to the next page to load my app  created by John T Smith
    <https://forums.adobe.com/people/JohnTSmith> in Adobe Creative Cloud
    - View the full discussion
    <https://forums.adobe.com/message/6505915#6505915>

  • I can't get to the Firefox Start Page which has menu items such as Bookmarks, toll , etc

    I can't get to the Firefox Start Page which has menu items such as Bookmarks,Tools , etc.Also there is no back arrow.
    == This happened ==
    Every time Firefox opened

    '''''"menu items such as Bookmarks,Tools , etc"''''': That's the Menu Bar; see below.
    '''''"Also there is no back arrow"''''': That's on the Navigation Toolbar; see "<u>'''Navigation Toolbar, Bookmarks Toolbar and other Toolbars'''</u>" below. Also see the articles under "Also see:" at the end of the instructions.
    <u>'''Can't see the Menu Bar'''</u> (File, Edit, View, History, Bookmarks, Tools, Help)?
    Turning the Menu Bar on and off is a new feature in version 3.6.
    ''(~~red:Linux & OSX see~~: [[Menu bar is missing]] )''
    <u>''Windows'' Method 1.</u> '''''Hold down''''' the key and press the following letters in this exact order: V T M then release the key
    <u>''Windows'' Method 2.</u> Tap once on the F10 key, while the Menu bar is visible, choose "View > Toolbars", click "Menu Bar" so that a check mark is placed next to Menu Bar
    <u>''Windows'' Method 3.</u> Tap once and release the key. The Menu Bar will be displayed; then choose ~~red:V~~iew > ~~red:T~~oolbars and click on ~~red:M~~enu Bar so that a check mark is placed next to Menu Bar
    The Menu Bar should now be displayed permanently, unless you turn it off again using View > Toolbars. Check mark = displayed, NO check mark = not displayed.
    See:
    http://support.mozilla.com/en-US/kb/Menu+bar+is+missing
    http://kb.mozillazine.org/Toolbar_customization#Restoring_missing_menu_or_other_toolbars
    <u>'''Navigation Toolbar, Bookmarks Toolbar and other Toolbars'''</u> under View > Toolbars. Clicking on one of them will place a check mark (display) or remove the check mark (not displayed).
    <u>'''To display the Status Bar'''</u>, View, then click Status bar to place a check mark (display) or remove the check mark (not displayed).
    <u>'''Full Screen mode'''</u>
    http://kb.mozillazine.org/Netbooks#Full_screen
    Also see:
    ''' [[Back and forward or other toolbar buttons are missing]]'''
    '''[[Navigation Toolbar items]]'''
    '''[http://support.mozilla.com/en-US/kb/How+to+customize+the+toolbar How to customize the toolbar]'''

  • When i load creative cloud my computer detect the wrong email ...i can't go to the next page to load my app

    when i load creative cloud my computer detect the wrong email ...i can't go to the next page to load my app

    it does not help at all...
    this is what i get when i instal i can't go therder...
    i need to put my corect email this one is no longeur avaliable
    i realy need to instal please....[image: Images intégrées 1]
    2014-06-28 20:27 GMT+02:00 John T Smith <[email protected]>:
        when i load creative cloud my computer detect the wrong email ...i
    can't go to the next page to load my app  created by John T Smith
    <https://forums.adobe.com/people/JohnTSmith> in Adobe Creative Cloud
    - View the full discussion
    <https://forums.adobe.com/message/6505915#6505915>

  • My firefox Freezes randomly! I'll be working on the website for 2, 5 or 15 minutes. Then i'll click in the page to get to the next page, and it will just freeze! I already tried removing the "preloading" feature, so why does this keep happening?

    My firefox Freezes randomly! I'll be working on the website for 15 minutes, (google places, yahoo mail). Then i'll click in the page to get to the next page, and it will just freeze! I already tried removing the "preloading" feature, so why doesn't this keep happening?
    My firefox at home, (version 3) does not have this happen! I'm afraid of upgrading to version 3 because of all these problems. I use FireFox for work so i really need it and I'm wasting crucial time restarting websites and updating my websites/blog/business listings from scratch. not right!
    I also notice it happens a lot to Harley Davidson website.

    freezing at regular intervals:
    :http://blog.bonardo.net/2011/09/30/is-your-firefor-freezing-at-regular-intervals
    : https://addons.mozilla.org/firefox/addon/places-maintenance/
    :<br>Install add-on, run at least the option mentioned in the article, I ran them all. When finished you can uninstall the extension, all without taking taking Firefox down, The extension is one of the new JetPack extensions. (Firefox 8 --Nov 8, 2011-- should not have this particular problem).

  • I Have OSX 10.5.8 how can i get OSX 10.6 or can I jump to the next upgrade ?

    I Have OSX 10.5.8 how can i get OSX 10.6 or can I jump to the next upgrade ?

    In order to proceed you have to upgrade to Snow Leopard (10.6.8) first: you can purchase this from the online Apple Store. Note that you must have an Intel Mac in order to install this (and you should check the other requirements, listed in the Technical Specifications on the Store page, before purchasing). As you have Leopard it's possible your Mac is a PPC one: if this is the case you cannot upgrade any further.
    Once you have upgraded to Snow Leopard you can obtain Mavericks for free from the App Store in your Applications folder. The requirements for Mavericks are:
    OS X v10.6.8 or later
    2GB of memory
    8GB of available space
      and the supported models are:
    iMac (Mid 2007 or newer)
    MacBook (Late 2008 Aluminum, or Early 2009 or newer)
    MacBook Pro (Mid/Late 2007 or newer)
    Xserve (Early 2009)
    MacBook Air (Late 2008 or newer)
    Mac mini (Early 2009 or newer)
    Mac Pro (Early 2008 or newer)
    It is available from the Mac App Store (in Applications).
    If you are unable to install Mavericks (it won't let you if your Mac isn't compliant with the requirements) you may be able to install Lion.
    The requirements for Lion are:
    Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7, or Xeon processor
    2GB of memory
    OS X v10.6.6 or later (v10.6.8 recommended)
    7GB of available space
    Lion is available in the Online Apple Store ($19.99).
      You should be aware that PPC programs (such as AppleWorks) will not run on Lion or above; and some other applications may not be compatible - there is a useful compatibility checklist at http://roaringapps.com/apps:table

  • How can I get just the text to resize, rather than the entire web page?

    I used to be able to re-size just text on a webpage by typing Ctrl + +. Today, the entire webpage re-sizes, and when I move to another page it reverts. (I see this mostly in Facebook.). Why did this change, and can I go back to having just the text re-size?

    ''How can I get just the text to resize -- zoom text only''
    steps
    #"Alt" if no menu bar, then
    # View > Zoom > Zoom Text Only
    Zoom text of web pages - MozillaZine Knowledge Base
    :http://kb.mozillazine.org/Zoom_text_of_web_pages
    <br><small>Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.</small>

  • How can I get photo of callers to vshow full page since I just did the update it doesn't show but a thumbnail pic

    How can I get photo of callers to vshow full page since I just did the update it doesn't show but a thumbnail pic

    That is the design in iOS 7.1 and there isn't any way to change it. You can provide feedback to Apple if you want: http://www.apple.com/feedback/

  • HT4356 I have the up photos smart 5514 printer and can't get it hooked up to print web pages. It says no air printers found and both a connected to the same wifi

    I have the up photos smart 5514 printer and can't get it hooked up to print web pages. It says no air printers found and both a connected to the same wifi

    Shannmo-
    The HP PhotoSmart 5514 is on Apple's list of AirPrint printers, so it should work.  <iOS: AirPrint 101>
    One problem might be that your WiFi router does not correctly handle Bonjour data required by AirPrint.  Contact the router's manufacturer to see if there is a change to its setup or a firmware update that will solve the problem.
    I had a printing problem several months ago, where the WiFi had jumped to a neighbor's WiFi that happened to have the same name.  There are a LOT of WiFi routers out there named "Linksys"!
    Fred

  • The main part of the safari page is grey and won't respond/can't type in any commands.  I can move back through the previous pages, and even open new ones via the URL, but can't get onto the main part of the page and I can't get onto the 9 page option. !?

    The main part of the safari page is grey and won't respond/can't type in any commands.  I can move back through the previous pages, and even open new ones via the URL, but can't get onto the main part of the page and I can't get onto the 9 page option. !?
    Help, please.

    Try clearing Safari's cache : Settings > Safari > Clear Cache (and Clear History)
    If that doesn't work then try closing Safari completely and then re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Time Machine on my iMac won't open iPhoto. It goes to desktop screen automatically. When I select User/Picture/Iphoto library it only brings up the preview page with the size of the folder. I can't get into the library to look for lost photos.

    Time Machine on my iMac won't open iPhoto. It goes to desktop screen automatically. When I select User/Picture/Iphoto library it only brings up the preview page with the size of the folder. I can't get into the library to look for lost photos.

    Thank You. This helps me alot to get into the masters and to see events and photos in a utilitarian way, but it is not as easy as viewing the normal iphoto format to find photos.  Can I do something else or did I not do something right to not see normal iphoto in Time Machine ?

Maybe you are looking for

  • Photo library albums and folders taking up more space

    If you create albums and folders on photo library it appears to duplicate the pictures and take up more space.  Is there any way to avoid this since you can't group pictures otherwise?

  • Very Simple Feature request for EXS24 mkII

    Hi all, Under "Group: Select by" please, please add "cycle-round robin", "random", "and", "and not" This will enable us to randomise between samples assigned to the same key, thereby eliminating the dreaded machine-gun effect..... This is really simp

  • Link works in iweb but not after it's published

    It only just started after I added a shape (I made sure to send it backward and whatnot). Anyways, yeah, the link works when I click it in iWeb but refuses to work when it's published. How can I fix this?

  • No SIM Card Installed message iOS8

    I have a 3rd gen iPad with LTE. After any reboot using iOS7, I would get a pop up message saying "No SIM Card Installed" and that was that. It would never show up again. After updating to iOS8, this message pops up randomly and it's getting irritatin

  • First row is repeting while accessing multiple rows through Database adapte

    Hi, Iam using Database adapter in BPEL process to retrive the data from remote database.In Database adapter i have selected select operation and passing input parameter. Actually that adapter needs to return 10 different rows though output variable o