Character count on Pages iPad?

Hi to all i bought Pages to write mine review but I have found only the count of words and not for characters.
There is  amethod to view them?
If not pls tell Apple to made it 'cose in journalism (in Italy) the news and alla other are order by number of character and no number of words.
IF y know ana App that do that pls tell me, txxx

Not sure if meanwhile you found a solution. Anyway, apparently there's support for character count in Pages:
http://www.rightnowintech.com/2011/11/more-word-count-options-in-pages-for.html
Ciao,
Marco

Similar Messages

  • How do you get a word and character count of a document in Pages for Mavericks

    How do you get a word and character count of a document in Pages for Mavericks?

    Hi jonathan,
    I struggled with this one as well, as i'm finishing up a PhD thesis and word counts are incredibly important. Through trial and error i found out that words like 'e.g.' and 'i.e.' count as two words and an ampersand (&) doesn't count at all. That being said, i didn't like the fact that the word count always included footnotes and i was dismayed that i couldn't get an accurate count of words in the main body of my text. That all disappeared yesterday when, by chance, while i was copying a completed chapter and pasting it into my main document, i discovered that Pages can indeed give you an accurate word count excluding the footnotes!  Here's all you need to do:
    1. In pages 5.2, make sure that the Word Count function is first enabled by selecting View --> Show Word Count from the Pages Menu Bar. (If it's already enabled, it will read View --> Hide Word Count, so if that's what it says, then no need to do anything.)
    2. Once enabled, check the Word count that's currently showing at the bottom of the page. That's the word count including your footnotes.
    2. Now, place your cursor anywhere within the current document, then hit command+A (for Select All).
    3. Viola! Your word count now shows the actual number of words within the body of the text only, excluding footnotes!
    Hope that helps!

  • New Pages - Character Count - Where is it?

    I can only find word count - but I need character count - where is it?

    OK,, click View (top-left conrner) and you can find the word count

  • Character counter does not display data on IE when counter is 0

    Hi,
    I am implementing a character counter in ADF using Javascript (referencing this http://www.oracle.com/technetwork/developer-tools/adf/learnmore/10-char-input-counter-169133.pdf).
    I display the string --> 'x' characters left
    The problem that I am facing is: when my character counter becomes 0 (can no longer enter any text, the maxlimit of the input field is reached) then on IE browsers, it does not show the character '0'. It displays a blank. On Firefox and Chrome, however, the UI gets displayed as expected i.e. 0 characters left.
    Can I get any pointers how to fix this on IE. Have tested with IE versions 7,8,9. JDev version is 11.1.1.5.0
    Here is the code snippet that I am using:
    Javascript:
    function showCharacterCount(event) {
    var keyCodePressed = event.getKeyCode();
    if (keyCodePressed == AdfKeyStroke.TAB_KEY
    || keyCodePressed == AdfKeyStroke.ARROWLEFT_KEY
    || keyCodePressed == AdfKeyStroke.ARROWUP_KEY
    || keyCodePressed == AdfKeyStroke.ARROWRIGHT_KEY
    || keyCodePressed == AdfKeyStroke.ARROWDOWN_KEY) {
    event.cancel();
    else {
    textfield = event.getCurrentTarget();
    textfieldValue = event.getSource().getSubmittedValue();
    textfieldLength = textfieldValue.length;
    textfieldMaxLength = textfield.getMaximumLength();
    o = AdfPage.PAGE.findComponent('characterCounter');
    characterCounterValue = o.getValue();
    characterCounterValue = textfieldMaxLength - textfieldLength;
    o.setValue(characterCounterValue);
    UI:
    <af:panelGroupLayout id="pgl3" layout="horizontal">
    <af:outputText id="characterCounter" clientComponent="true" value="325"
    inlineStyle="text-align:right; display:block; width:100.0px;"
    binding="#{viewScope.myBean.characterCounterBndg}"/>
    <af:outputText value="characters left" id="ot7"
    inlineStyle="padding-left:5.0px;"/>
    </af:panelGroupLayout>
    <af:inputText id="it2" rows="4" columns="53"
    value="#{viewScope.myBean.text}" maximumLength="325" clientComponent="true"
    simple="true">
    <af:clientListener method="showCharacterCount"
    type="keyUp"/>
    </af:inputText>
    Thanks in advance.

    Try converting from dynamic data, that seems to take care of the problem. Also, you could use the regular field point VIs instead of the FP express VI. Check out the attached VI.
    -Alan A.
    Attachments:
    FP_Read.vi ‏30 KB

  • APEX_ITEM.textarea with character count in a SQL Report

    This seems like a simple question but where is the function to have APEX draw the textarea but with a maximum number of characters from within a SQL report.
    I am building a parameter entry form but the number of parameters is dynamic so my best option was to use a SQL based report. I have looked though the APEX_ITEM package and found the textarea function but there is no options to draw the version of it that limits character count. Is there a way to have it draw that textarea instead of the unlimited one. In my case I have a length limit that I must enforce.

    The only solution that comes to my mind is to use Javascript. Define a JS function in page header that will check the length of text in textarea and if it exceeds the limit then it will trim it.
    Then, when creating textareas using APEX_ITEM add paramater onChange="callToYourJSFunction()"

  • Character Counter for a Rich Text Editor

    Version  4.1.1.00.23
    Hello,
    I'm hoping that someone has a solution for a character counter/validation to use on the Rich Text Editor.
    Thanks,
    Joe

    Hi,
    Happy New Year.
    Ok.
    Well, I'm not expert on this, but this peace of code might help you get started.
    Code should go to page JavaScript -> Execute when Page Loads
    var lEditor=CKEDITOR.instances.Px_YOUR_EDITOR;
    lEditor.on('contentDom', function() {
    lEditor.document.on('keyup', function(e) {
    var len=lEditor.getData().replace(/<[^>]*>|\s/g, '').length;
      /* do here something. JavaScript valiable "len" holds editor text length e.g. */
    /* alert(len); */
    Replace Px_YOUR_EDITOR with your editor name.
    I do not have any idea does it work on all browser. I did test with Firefox.
    Regards,
    Jari

  • Textarea character count feature quirk/bug

    Apex 4.1.1.00.23
    I've found a quirky thing about the textarea page item. The character count feature counts carriage-return-line-feed (CRLF) as one character, as you would expect it to, but it's stored as two characters in the database because of the way Windows handles new lines.
    So, aside from using clob columns or explaining to users how Windows handles CRLF characters, any thoughts on how one might manage this quirk?

    >
    Please update your forum profile with a real handle instead of "970995".
    Apex 4.1.1.00.23
    I've found a quirky thing about the textarea page item. The character count feature counts carriage-return-line-feed (CRLF) as one character, as you would expect it to, but it's stored as two characters in the database because of the way Windows handles new lines.
    So, aside from using clob columns or explaining to users how Windows handles CRLF characters, any thoughts on how one might manage this quirk?Assuming the problem is ORA-06502 when the counter shows less than the expected limit, but CR/LF pairs actually push it over?
    Create a Post-Submit Computation on the item that replaces CR/LF with LF...
    replace(:p1_text_area, chr(13) || chr(10), chr(10))

  • Live character count?

    I know it's possible to check your character count through the inspector in Pages, but I would much rather change the live word count in the status bar into live character count. Anybody know if it's possible?

    Udo Weyers wrote:
    Yvan, despite the fact that you are based in France, reading between the lines I realize a lot of british humor. And indeed we have a horn of plenty full of options. Cheers!
    But you're right, we should cross the fingers ... that's basically all we can do.
    Glad to read that you understood correctly.
    In an other thread,
    http://discussions.apple.com/thread.jspa?threadID=1874507&tstart=0
    the OP didn't
    Yvan KOENIG (from FRANCE mercredi 21 janvier 2009 18:26:25)

  • Character Count Variable

    Hi,
    Is it possible to set the 'chacters remaining' as a variable for Text area with c/count, this is because I have a comments field that is adding to a column that is already populated so the characters remaining will vary depending on what is already in the table
    I know its set in the max width of the elemant section but you cant seem to put a variable name in there.
    Thanks ANDY

    hey andy--
    you can't currently refer to session state values from the maxWidth field as you're finding. i've logged that as an issue, but you can work out your "characters remaining" request for now by calling our charCount jscript function from somewhere you can reference session state. to do so, take a look at the html that's generated when you use those "Textarea w/Character Counter" item types. you'll see that the form element has a jscript call in it that looks something like...
    onKeyUp="javascript:charCount('P3_MY_TEXAREA',255,'tAreaCtr8','tAreaMax8','theBlock8');" onChange="javascript:charCount('P3_MY_TEXAREA',255,'tAreaCtr8','tAreaMax8','theBlock8');"
    ...and you'll see a div and span combo right after it that looks something like this...
    <div style="font-size:8pt;visibility:hidden;" id="theBlock8"><span id="tAreaCtr8"></span> of <span id="tAreaMax8"></span></div>
    ...so you could put code similar to this into a regular TextArea item to call our charCount function while passing it the dynamic value. to do so, you'd put your div/span combo in the "Post Element Text" section of your TextArea item. you'd then want to call charCount by passing it the dynamic value. unfortunately, you can't just put that call into the "HTML Form Element Attributes" because that field currently doesn't support session state references. instead, you'd have to put in a call to a function of yours that calls our charCount. so a call like this...
    onKeyUp="javascript:callCount();" onChange="javascript:callCount();"
    ...just worked in my test case. i defined my callCount funtion in the "HTML Header" field of the page-level atttributes screen as...
    <script language="JavaScript1.1" type="text/javascript">
    function callCount(){   
    charCount('P3_MY_TEXAREA',&P3_X.,'tAreaCtr8','tAreaMax8','theBlock8');
    </script>
    ...and, as you can see, it just calls callCount while passing it my dynamic P3_X value instead of the fixed maxWidth one. having said all this, it's still our recommendation to not directly call the javascript functions that ship with htmldb. we reserve the right to change how those "internal" calls are implemented. to play it absolutely safe, you'd be better off to copy our charCount function into your app (presumably in a .js file) and call that copy using the same work around i specified above.
    hope this helps,
    raj

  • Word counts and character counts

    Hi,
    I'm using Pages '06. I would like to be able to count the number of words and characters in a paragraph in Pages. I know that if i go to the Document Inspector and click info, it gives me word and character counts for the entire document. Is there a way to do this for individual paragraphs?
    Many thanks.
    Joe.

    After you install WordService (see link in Dennis' post), you can access several new services in the Pages menu. You may have to restart Pages &/or your Mac.
    WordService & CalcService add their functions to any OS X program that has been programed to utilize Services. I've been using them since shortly after I got iWork '05.

  • Textarea w/character counter problem

    Hi!
    We use a textarea with character counter and limited its max width to 500 chars. If max 500 chars have been inserted, then input stops after 500 chars. That works fine in MS Internet Explorer. Even if you insert CR/LF inputs (ENTER button), the max number of typed in chars will not exceed 500. Using Mozilla Firefox, it is possible to insert many CR/LF, which increases the typed in number by 2. Thus you get e.g. "548 of 500" displayed beyond the textarea. After updating the page in IExplorer even here you get the same counter status displayed. As long as you do not type in the textarea field, the char counter remains as it is and the data can be submitted and finally stored in database.
    Qu: Has anybody experienced teh same problem with max chars and CR/LF. Any idea of a workaround prevent "548 of 500" in textareas when typing in CR/LF ?
    Br,
    Thomas

    The CharCount() function that is used by APEX should be updated to contain javascript code similar to the code described here:
    http://pikasoftware.com/docs/index.php/Validating_TextArea

  • Asian character count

    I am in the process of evaluating pages, numbers etc. with a view to removing microsoft office from my computer.
    I am a translator, and a function I use regularly is to count characters. Many documents contain both English and Japanese text, and I need information on how many of the characters in the document are Japanese. This shows up usefully in the internationalized version of word as Asian characters and non-asian words so I can see exactly what I am dealing with.
    How do I get pages to return similar information? All it currently tells me is that there are, to give an actual example for clarity, 13,550 words and 25453 characters, which is actually quite meaningless in a case like this. The information I need is (using the same example in word) 617 Non-Asian words, 16,887 Asian characters.
    I am using the evaluation copy of pages that was bundled with Lion, do I perhaps have to internationalize that in some way (it already inputs and displays Japanese OK as I have that already se up on my system but I am wondering if the application needs other stuff doing to it to be able to return the more detailed statistical inormation - as office does).
    Thanks to anyone who knows!
    Sean

    Sean Brophy wrote:
    it doesn't seem to me like a particularly cumbersone task
    You can let Apple know here:
    http://www.apple.com/feedback/pages.html
    It looks to me like OpenOffice does not have Asian character counting, so it may well be that Word is the only app for that.  It is definitely the app of choice for vertical text and phonetic guides as well.

  • Highlighting in Pages (iPad)

    Is it possible to highlight a document in pages (iPad)? Just as o similar to books in iBook.
    Thanks

    Since  no one seems to be jumping in with any suggestions here, I am going to make a few comments.
    First, I don't have Pages for iOS, because I only have an iPod Touch, and I wouldn't want to try editing a Page document on that. So I can't test anything.
    Since Pages for Mac supports highlighting as a character style, it is quite possible that Pages for iOS also supports it, but lacks a way to create it. If that is the case, you can create a document on a Mac using the highlighting styles you want, import that document to your iPad, and copy the style from that document to apply to the corrections in the student assignments.

  • Need to change footer PAGE NUMBERS to start counting from page three

    Hi I am doing some academic writing with AppleWorks and the cover page and second page should not be numbered. I need to start the page count from page three because the first two pages cannot be included in the count. ( Page three must be labeled page one, page four must be labeled page two, etc.) How can I do this?
    Thank you!!

    Hello,
    What I have done is this:
    1. Click just to the left of the first character on page 3.
    2. Go to Format>Insert section break
    3. Go to Format>Section
    4. Select new page from drop down menu
    5. Select Restart page numbering, and insert required number
    6. Select Different this section
    7. Go to Format>Insert Footer
    8. In the footer created, type in whatever plus Insert page # from Edit menu
    I hope this helps.
    DavidG

  • How do I limit the character count in a text field?

    I'm creating a form for co-workers to use when creating web content. I need to restrict their character count for items like headlines, titles, subtitles, etc. Any suggestions on a ready-made form to use out there? And how can I limit those fields so they don't generate content that will then need to be edited down?
    Thanks,
    EAW

    Check out this post:
    http://forums.adobe.com/message/4364378
    Randy

Maybe you are looking for

  • Messages are in to be delivered state and slows down the message processing

    Hello, Messages are in to be delivered state and slows down the message processing. this happenens in case of DB2 on some machine where the issue about high load on DB2  is caused by standard programming in SAP XI that executes a statement, where it

  • JasperReport, generate pdf report supporting Farsi

    Hi, The pdf report generated using JasperReport is not displaying data in Farsi[inspite of me setting the ENCODING parameter to 'UTF-8], however if I use the same JRML file to generate word, XLS or HTML report, am able to view Farsi values. Could you

  • How to invoke Outlook Express to send mail in a JAVA GUI

    hi.. i want to send a mail thru a java GUI...but when i press submit button..it has to invoke MS Outlook express and send the mail via this. pls reply soon.. bi..

  • Same article, different languages help!!!

    Hi, I have a project for a client which requires one article per folio (4 folios in total), each article has two language optins, English and Chinese. The problem I'm having is that when you get to the end of the first article, (lets say the English

  • I can not open my iPod touch

    I can not open my iPod touch at all. It seems like it is frozen. I have tried toe set it restore it and nothing seems to work. What can I do?