How do I display the number of words I've written in the new Pages update?

I just downloaded Mavericks and updated pages and I can't figure out how to display the amount of words I have written. It used to automatically be at the bottom of the page.

Toolbar > View > Word Count
Peter

Similar Messages

  • How can I import a .doc (MS Word) with "hidden text" to a new Pages document?

    Without changing the specific text in .doc to non-hidden, nothing but empty line returns comes across.
    I have several .doc files and I am trying to streamline a process.

    There is no hidden text in Pages and if Apple implemented it chances are it would not be the same as Microsoft's.
    There quite a few variations between Pages and MsWord so transferring documents between them is a hit and miss at the best of times.
    Peter

  • How i can count the number of words in a string?

    hi, i want to know how to count the number of words in a string
    e.g. java is a very powerful computer language.
    i will get 7 words.
    thanks in advance..

    Jverd, this has actually been answered, but due to an
    attack of goldie-itis, all the answers were hosed.
    The OP did get an answer, though.Yeah, I know. I just didn't know if he saw the answer before it went away.

  • In the new iOS-7 Safari, has the "reader" function been changed to eliminate the option to modify font size (and hence to modify the number of words per line), or is it just that I can't find how to do that?

    In the new iOS-7 Safari, has the "reader" function been changed to eliminate the option to modify font size (and hence to modify the number of words per line), or is it just that I can't find how to do that?

    iOS 7
    Seperate text size modification is no longer available in Safari Reafer.
    Use Settings.
    Settings >General > Text Size

  • How to obtain the number of words of a protected pdf file that can't be converted into a word file?

    I need to get the number of words of pdf files. I usually convert them into word files to get the word count. Some pdf files are protected and can't be converted into word files. Is there another way to get the number of words of these protected pdf files? I use adobe professional XI Pro.

    Scroll through and read the answers available in the thread below. You may find the information helpful.
    Trying to write Javascript code to get word count
    Be well...

  • Calling a file and counting the number of words in it-please help!!

    * @(#)WordCounterTwo.java
    * WordCounterTwo application
    * @author
    * @version 1.00 2007/11/17
    import java.util.Scanner;
    public class WordCounterTwo {
    public static void main(String[] args) {
         Scanner keyboard = new Scanner(System.in);
         String fileName;
         int countWords;
         System.out.println("Please enter the name of the file: ");
         fileName = keyboard.nextLine();
         System.out.println(countWords.lastIndexOf());
    }

    I am getting error message as follows:
    cannot find symbol constructor StringTokenizer() on line
    I am asking the user to enter the name of a file, and the output is supposed to display the number of words in the file that chosen. I'm not sure if I am going about this right way, and not sure why I am getting the erorr messages.
    * @(#)WordCounter.java
    * WordCounter application
    * @author
    * @version 1.00 2007/11/17
    import java.util.Scanner;
    import java.util.StringTokenizer;
    public class WordCounter {
        public static void main(String[] args) {
             String sentence;
             Scanner keyboard = new Scanner(System.in);
             StringTokenizer words = new StringTokenizer();  //line 17
             int numberWords;
             System.out.println("Please enter a sentence");
             sentence = keyboard.nextLine();
             sentence = words.nextToken();
             while (words.hasMoreTokens())
                  numberWords++;
             System.out.println(numberWords);
    }

  • Help!! count the number of words in one line

    the question is that use JOptionPane and Array to count the number of words and characters that user inputed.
    for example, if I enter the " this is a java program"
    that messages have display 5 and 18.
    please show me the a completely program.
    thx!!!!

    You guys are heartless. Even you weren't born with programming knowledge hard-coded into your brain. Even you had to start from zero. Even you had to struggle at something in your life. In this spirit, I think that we should give this poor student a break and try to help him as much as possible. Here, try out my program, and perhaps it will give you some ideas for your own:
    public class WordCountingHomework
      public static void main(String[] args) throws InterruptedException
        String input = JOptionPane.showInputDialog("Please enter a String");
        // get your String and split the String into words
        // This will allow you to count words easily
        String[] strArray = new String(wordCountByteArray).split(" ");
        int delay = 400;
        for (;;)
          // loop through the array to count the words
          for (String string : strArray)
            System.out.print(string + " ");
            Thread.sleep(delay);
          System.out.println();
          delay *= 7;
          delay /= 10;
      private static byte[] wordCountByteArray =
        0x50, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x20, 0x64, 0x6f, 0x20, 0x79, 0x6f,
        0x75, 0x72, 0x20, 0x6f, 0x77, 0x6e, 0x20, 0x66, 0x61, 0x72, 0x6b, 0x69,
        0x6e, 0x27, 0x20, 0x68, 0x6f, 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x21
    }

  • How to spell currency from number to words

    how to spell currency from number to words?
    Is there a built in function in oracle?
    Can anybody give me the code?
    thanks
    sharath

    ok, rewritten to work with nulls and numbers from -5373484.99$ to +5373484.99$
    SQL> set null "<NULL>"
    SQL> select
    to_char(comm, '$999999.99'),
    decode(comm, null, null,
      decode(sign(trunc(comm)),
        0, to_char(to_date(to_char(trunc(comm)),'SSSSS'),'ssssssp'),
        1, to_char(to_date('1','J')+(trunc(comm)-1),'jsp'),
       -1, 'minus '||to_char(to_date('1','J')+(trunc(comm)-1),'jsp')
      ) || ' dollars and '||
      to_char(to_date(to_char(mod(comm,1)*100),'SSSSS'),'ssssssp')||
      ' cents'
    from emp;
    TO_CHAR(COM DECODE(COMM,NULL,NULL,DECODE(SIGN(TRUNC(COMM)),0,TO_CHAR(TO_DATE(TO_CHAR(TRUNC(COMM)),'SSSSS'),'SSSSSSP'),1,TO_CHAR(TO_DATE('1','J')+(TRUNC(COMM)-1),'JSP
    <NULL>      <NULL>
        $300.00 three hundred dollars and zero cents
        $500.00 five hundred dollars and zero cents
    <NULL>      <NULL>
       $1400.00 one thousand four hundred dollars and zero cents
    <NULL>      <NULL>
    <NULL>      <NULL>
    <NULL>      <NULL>
    <NULL>      <NULL>
           $.00 zero dollars and zero cents
    <NULL>      <NULL>
    <NULL>      <NULL>
    <NULL>      <NULL>
    <NULL>      <NULL>

  • How can I view the number of tunes in the Library? The number shows for Playlists but not for the total Library.

    How can I view the number of tunes in the Library? The number shows for Playlists but not for the total Library.

    Hello,
    I apologize for submitting this question.  Soon after I posted it I saw a similar question that had my answer..
    Again, my bad for not looking first.
    Ron Morris

  • TS3899 My mail is configured correctly.  When I go to view my inbox I get the 'Load More Messages...' with the number of messages showing.  I touch the display and nothing happens.  I have uninstalled and reinstalled the email account and restarted the de

    My mail is configured correctly.  When I go to view my inbox I get the 'Load More Messages...' with the number of messages showing.  I touch the display and nothing happens.  I have uninstalled and reinstalled the email account and restarted the device.  I can send mail fine as well as view my sent messages.  Very confusing.

    I have two yahoo accounts and I know as they 'improved' their servers I had periodic outages. It'd work fine on my webmail on  my computer, webmail on the iPad, but not via the mail app. And it was stuff on their end. It may be a case of wait and see and you may need to eventually remove/readd the account on your iPhone.
    When the issue is on their end, unfortunately there's not much for users to do beyond wait it out or find work arounds.

  • I have no idea how to find my serial number to launch Lightroom. I have the student teacher edition and I'm using a mac

    I have no idea how to find my serial number to launch Lightroom. I have the student teacher edition and I'm using a mac.

    How did you purchase Lightroom? Download? Package?
    Have you followed the instructions to verify that you qualify for academic discount?

  • How do I display # symbol in PHP to refer to an anchor on another page?

    How do I display # symbol in PHP to refer to an anchor on
    another page?
    I am updating a record and using a dynamic anchor name for
    the page to forward to like this:
    seeAllEntriesXcodeAsc.php#<?php echo
    $row_getProductsWithSAMEcode['id']; ?>
    But I keep getting an error, I think its because its reading
    the # hash sign as a PHP instruction rather than an anchor hash...
    Is there are way to mark it up so as to use the # as part of the
    URL ?
    I have even tried referring to a dummy field with a hash in
    like this - but that doesn't work either.
    seeAllEntriesXcodeAsc.php<?php echo $_POST['hash'];
    ?><?php echo $row_getProductsWithSAMEcode['id']; ?>
    Thanks!

    Sorry, I will try and explain in a different way...
    I have a page in php where a database has an entry added,
    changed or deleted.
    The page is posted to an in between page to process the
    transaction (which works)...
    You are then taken to a dynamic anchor of the entry on a
    database summary page to the SAME entry to see that the change has
    been done.
    (So the basic problem is that the link to take to the anchor
    needs to have a # hash symbol in the middle to denote the anchor,
    but the URL that is created puts the # at the end of the URL rather
    than directly before the link the php code generates... All I need
    is a way to code a PHP URL that manages a # hash in the middle.)
    So in the middle processing page, I have update an entry
    transaction with the page to redirect to after undertaking the
    transaction as:
    seeAllEntriesXcodeAsc.php#<?php echo
    $row_getProductsWithSAMEcode['id']; ?>
    So the final URL error I get is this:
    Parse error: syntax error, unexpected
    T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or
    T_NUM_STRING in
    /secure/c/capitalgarden/admin/DeleteEntryProcessor.php on line 39
    The file is too large to post here so I have saved the file
    as an HTML file so you can read the code at this URL:
    http://www.new.capital-garden.com/DeleteEntryProcessor.html
    Thanks for your help!
    C

  • Error: List View Threshold. The number of items in this list exceeds the list view threshold, which is 5000 items.

    Hi, i had created a SharePoint List in cloud ( office 365) using List Template.
    List template contains 12000 items taken as template from SharePoint on Premise.
    I am getting this error message, in SharePoint Online (Office 365)
    The number of items in this list exceeds the list view threshold, which is 5000 items. Tasks that cause excessive server load (such as those involving all list items) are currently prohibited.
    How to resolve it, to get data in my SharePoint list, any help will be appreciated.

    With O365 lists over 5k items are now officially supported but they will have limited behaviour due to the threshold. There are no workarounds or options to increase the threshold either temporarily, for specific users or for the list itself as you have
    with on-prem.
    You'll need to remove enough items to get it below the threshold limit, add indexed columns to support indexed views, then re-add the items again. This article is for 2010 but the section around indexed columns and views is still accurate:
    https://technet.microsoft.com/en-us/library/cc262813(v=office.14).aspx
    It may be possible to add the indexes on your on-prem list where you can increase/avoid the threshold, then re-export the list. That would rely upon the list creation script adding indexes before it uploads items but it's a logical assumption.

  • Limiting the number of files being picked up by the sender file adapter

    We are running a file adapter to collect xml files from a legacy system in a shared network location.  The files are picked up, information is sorted and mapped, and then sent to a proxy on our CRM system to store the data.  Very simple and not-complex.
    Our initial data load will consist of somewhere in the neighborhood of 900k records, which is killing CRM.
    A co-worker with a bit more experience was telling me that he believes there is a way to limit the number of files that will be pulled per iteration of the file communication channel.  If this is the case, can someone share with me the parameters that need to be set?
    My apologies if this is a duplicate post - I have tried to look for a good answer in the forums and have come up empty.
    We are running PI 7.1, and I believe it is SP 6. 
    Thanks in advance for the help,
    Ben

    Hi Ben,
    There is no standard way to limit the number of files to be processed by the communication channel.
    On the Sender File CC, there is a parameter " Maximum File Size" which restricts the files bigger than the specific size, but this is just a prevention not a solution.
    If you have a single big size file, then somehow you have to create small sized files out of it.
    Thanks,
    Pooja Pandey

  • I am having trouble activating my new version of Lightroom on one computer where it says it has been fully installed and it is stuck on 90% on my laptop.  I tried phoning the helpline but was told the number dialled was incorrect but it is the one given o

    I am having trouble activating my new version of Lightroom on one computer where it says it has been fully installed and it is stuck on 90% on my laptop.  I tried phoning the helpline but was told the number dialled was incorrect but it is the one given on the Adobe help page.  So what is the correct tel no for support?

    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.

Maybe you are looking for

  • How can I view movies in iPad with the full screen?

    Ok, I bought two movies from iTunes on my iMac and synced them with my iPad. It went well. But when I play them back on the iPad, I can only view them in letterbox/portrait mode which uses only one third of the iPad screen!!! Why is this? Is there an

  • Creating a seamless wireless network with 2 AExpress units

    I have 2 Airport Express units in different parts of my house. I have struggled for YEARS trying to get them to create one seamless wireless network with the same name that I could float between. I have never been able to get that to work. anyone? I

  • How to tail log files from particular string

    Hello, We would like to tail several log files "live" in powershell for particular string. We have tried to use "get-content" command but without luck because everytime as a result we received only results from one file. I assume that it was caused b

  • Sort sequence and sort rules

    Hello friends, In batch determination at delivery level In strategy type SD01, if I don't maintain sort sequence can sytem automatically determines the batch at delivery level? Please clarify my doubt. regards, Sekhar_sd consultant.

  • How to draw tab key char into Graphics g as space?

    Hi, all. following pg.drawString(token, 0, y); keep draw "\t" strange character like "o". eg: "\tpublic static"--after draw..--> opublic static". As you see below, I replace "\t" with " "(blankes). I test replaceString method. it works fine. but, onc