Typo's appear in the text in Presenter

Typos appear in Presenter that donot appear in the original PowerPoint.
Is this normal/is there anything that I can do to prevent this?
Would be very grateful for help as this is driving me mad!!!

Open your Hub and press the three dots in the lower right corner. Select Settings then Hub Management the click Text Messages and make sure Show in Both is checked.
Cheers.  
- If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

Similar Messages

  • What can I do, if my keyboard appears on the text when I write? Because I can't read what I'm writing

    Lately
    I have troubles when I have to write something because my keyboard appears on the text, so I'm not able to see what I just typed.
    I try to review the settings but I don't know how can I resolve this, but well, I'm here so it is obvious.  
    So do not hesitate in contact to me, because is awful to hide the keyboard after I type a statement just to see

    Just a glitch.  I wouldn't worry. Here is a tip about the keyboard.  Hold fingers at two spaced locations on the keyboard and drag the keyboard apart. Do the reverse and drag the split keyboard back together.  Also this can be achieved by holding the key I mentioned previously and choosing undock or split and you can get back to where the keyboard is on the bottom of the screen by doing what I said before.  Have a play

  • I downloaded the pages application, to be used like " word", but I can't get if I can use it also to revise documents ....so as to make corrections and they appear on the text. thanks for the help

    I downloaded the "pages"  application, to be used like " word", but I don't know if I can use it also to revise documents ....so as to make corrections and they appear on the text. thanks for the help

    tatarapido wrote:
    I downloaded the "pages"  application, to be used like " word", but I don't know if I can use it also to revise documents ....so as to make corrections and they appear on the text. thanks for the help
    Why repeat the question in the description area? That provides no more information than just leaving the description area blank.
    Yes you can edit documents in Pages. What can you not figure out that you want to do? Have you transfered a document to the iPad and opened it in Pages and tried to edit it?

  • How to make an applet to read the Text file present inside a jar

    Hi All,
    I have writen one applet named ReadFile.java which reads a text file present in the same directory and does some manipulation of text file contents.
    The applet code runs successfully when i run the applet in command prompt like
    {color:#ff0000}*java ReadFile*{color}
    And i am getting the needed results.
    Then i made a jar file with the applet code and text file as
    {color:#ff0000}*jar cvf rf.jar ReadFile.class File1.txt*{color}
    Then i have inlcuded this applet inside a html file as
    {color:#ff0000}*<applet code= "ReadFile.class" width= "500" height= "300" archive = "rf.jar" ></applet>*{color}
    after this when i load the html file, the applet code is not executed fully. Its throwing FileNotFoundException: File1.txt.
    Applet is not recognizing trhe text file present inside the jar file.
    Can any body explain me how to overcome this problem. Any setting needs to be done for making the applet indicate the presence of Text file inside the jar file.

    what code in your applet gets the text file and reads it? are you using getResource or something similar?

  • How to read the text file present in the Al11 server through our program?

    My requirement is that , i have one file already present in the AL11 server. Now i want to take this file so that I can read this file .
    So will you please help me , how to read the file from AL11 server in our program ?
    Thankx in advance

    Hi..
    I too agree to the above post .. SEARCH in SCN before posting..
      DATA: lv_filename  TYPE string, "File name
            lv_line      TYPE string. "One line entry in a file
      lv_filename = iv_file_name.
      IF iv_location = gc_application.
        IF iv_record_count IS SUPPLIED.
      Open file
          IF gv_file IS INITIAL.
            OPEN DATASET lv_filename FOR INPUT IN TEXT MODE
                                     ENCODING DEFAULT.
                                     ENCODING DEFAULT
                                     IGNORING CONVERSION ERRORS.
            IF sy-subrc <> 0.
              RAISE file_open_error.
            ENDIF.
            gv_file = gc_check.
          ENDIF.
      Read data
          DO iv_record_count TIMES.
            READ DATASET lv_filename INTO lv_line.
            IF sy-subrc <> 0.
      Close file
              CLOSE DATASET lv_filename.
              IF sy-subrc NE 0.
                RAISE file_close_error.
              ENDIF.
              CLEAR gv_file.
    Exit from the loop
              EXIT.
            ENDIF.
    Regards
    Ansari

  • af:messages - component name is appearing as the text 'component'

    Hi,
    Could any one please help me to resolve this validation issue occuring in <af:messages> popup.
    I am using the <f:validator validatorId="validator.NameValidate"/> component to display faces messages in the popup.
    The component link that gets generated does not have the same label. Sometimes the name of the component, e.g. "Age" is printed out which is acceptable.
    But in my case, the word "Component" is printed out, which is unacceptable because it will not make any sense to our customers.
    *Expected Condition - If validation fails for Age, Name [Appears as a popup]*
    *<Error-icon>Error*
    Messages for this page are listed below.
    Age(clickable)     <Error-icon>This is not valid Age. The should contain only numbers.
    Name(clickable)      <Error-icon>This is not valid name. The should contain only alphabets.
    *Actual Condition - If validation fails for Age, Name [Appears as a popup]*
    *<Error-icon>Error*
    Messages for this page are listed below.
    Component(clickable)     <Error-icon>This is not valid Age. The should contain only numbers.
    Component(clickable)     <Error-icon>This is not valid name. The should contain only alphabets.
    Please help.................
    Regards
    Jeffry
    Edited by: Jeffry on Oct 18, 2011 1:51 AM

    Hi John,
    Thanks for Responding.
    Here is the sample code :
    In Jsff (includes in a JSPX which has a template ref) :
    <af:inputText id="givenname"
    value="#{pageFlowScope.registrationMB.givenName}"
    styleClass="regforminput" maximumLength="36" binding="#{ValidateForm.givenName}">
    <f:validator validatorId="validator.NameValidate"/>
    </af:inputText>
    </af:panelGroupLayout>
    In faces-config.xml
    <validator>
    <validator-id>validator.NameValidate</validator-id>
    <validator-class>com.adf.validator.NameValidator</validator-class>
    </validator>
    Validator class - NameValidator.java
    package com.adf.validator;
    import java.io.Serializable;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    import javax.faces.application.FacesMessage;
    import javax.faces.component.UIComponent;
    import javax.faces.context.FacesContext;
    import javax.faces.validator.Validator;
    import javax.faces.validator.ValidatorException;
    import oracle.adf.view.rich.component.rich.input.RichInputDate;
    import oracle.adf.view.rich.component.rich.input.RichInputText;
    import oracle.adf.view.rich.component.rich.output.RichOutputLabel;
    public class NameValidator implements Serializable, Validator {
    public NameValidator() {
    super();
    public void validate(FacesContext facesContext, UIComponent uIComponent,
    Object object)throws ValidatorException {
    String value = (String)object;
    if ((value == null) || value.length() == 0) {
    return;
    String expression ="^[A-Z][a-zA-Z]*$";
    CharSequence inputStr = value;
    Pattern pattern = Pattern.compile(expression, Pattern.CASE_INSENSITIVE);
    Matcher matcher;
    matcher = pattern.matcher(inputStr);
    if (!matcher.matches()) {
    throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_FATAL,
    This is not valid name. The should contain only alphabets.",
    null));
    Regards
    Jeffry

  • All the Text is presented in bold

    Suddenly, on every site I visit all the screen text is bold. I've done the three recommended troubleshooting steps to no avail.

    Did you check for problems with a missing or corrupted font?
    Try to disable the website fonts as a test and try a few different default (serif/sans-serif) fonts.<br />
    Tools > Options > Content : Fonts & Colors: Advanced ([ ] Allow pages to choose their own fonts, instead of my selections above)
    If that works then you need to reinstall the corrupted font.
    Your above posted system details show outdated plugin(s) with known security and stability risks.
    # Shockwave Flash 10.0 r32
    # Next Generation Java Plug-in 1.6.0_18 for Mozilla browsers
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/

  • HT204053 iPad disable was appear on my iPad screen. Pls help me to solve it. Connect to iTunes also appear belon the text.

    My iPad cannot open. iPad disable appear on my screen. Help me to solve It.

    You will need to connect it to a computer's iTunes, you should then be able to reset your iPad.
    Device disabled : http://support.apple.com/kb/HT1212

  • Just installed DVD Studio Pro 2 in Power Book G4 Lap but I cant view Subtitles in the grew square while typing the text. I see the text in the Inspector but nothing appears in the grew square. Once finished the subtitle I run the sceen and see the subtitl

    I just installed DVD Studio Pro 2 in a Power Book G4 Lap but I cant see subtitle text typing after doble click a new subtitle. I see the text that I am typing in the Inspector Window but the grew square in the Monitor Window seemes empty. Once I finished the subtitle I can run the video and the subtitle appears in color, font and size chosen. Creating the next subtitle I can even go to the one before click once over the subtitle, then click above to get the videoline tool over the subtitle and I will see the subtitle in the Monitor and editing the text in the Inspector I can see the changes in the Monitor. But as soon as I doble click the grew square appears and the text dissapears. Sin doubt the text is there because I can select the invisible text with "Apple"+"A", and then change fonts and sizes and it works. In Color settings I tried every posible combination of Mapping types, color and opacity. In DVD Preference I checked the subtitle  settings. The monitor text defaults work perfectly and double clicking texts in the Monitor window where a grew sqaure appears and the text is visible just works correctly. Somebody can help? Do I need to change some configuration in the LAP?

    I just installed DVD Studio Pro 2 in a Power Book G4 Lap but I cant see subtitle text typing after doble click a new subtitle. I see the text that I am typing in the Inspector Window but the grew square in the Monitor Window seemes empty. Once I finished the subtitle I can run the video and the subtitle appears in color, font and size chosen. Creating the next subtitle I can even go to the one before click once over the subtitle, then click above to get the videoline tool over the subtitle and I will see the subtitle in the Monitor and editing the text in the Inspector I can see the changes in the Monitor. But as soon as I doble click the grew square appears and the text dissapears. Sin doubt the text is there because I can select the invisible text with "Apple"+"A", and then change fonts and sizes and it works. In Color settings I tried every posible combination of Mapping types, color and opacity. In DVD Preference I checked the subtitle  settings. The monitor text defaults work perfectly and double clicking texts in the Monitor window where a grew sqaure appears and the text is visible just works correctly. Somebody can help? Do I need to change some configuration in the LAP?

  • In iWork Pages 5.1, how do I eliminate "text" in the Text Box?

    In iWork Pages 5.1, how do I eliminate the word "text" which appears in the Text Box, when I've used a color filler and no words?

    Select the text and delete.
    If you don't want text in the box, don't use a text box ie in Shapes there are various shapes. Select one without 'T'.

  • I have a iPhone 3GS and my husband has the iPhone 4 , both phones with updated current . We added iMessage to them at first it was great, now I don't get half the texts my husbands send and when I send him a text message it will come up from my email???

    I have a iPhone 3GS and my husband has an iPhone 4, both phones are updated. We added iMessage the them both and at first it was great, the messages appear in the text messages under the phone contacts and when I send a text message it will either be a green message  or a blue one for (iMessage) depending on the signal.  Now when my husband sends a text message to me I don't get them all or some days none. When I send him a text message he gets them from my email address. I cannot send him a standard text anymore my phone only wants to iMessage, so if the signal is not right it just sits there undelivered???
    I also have a friend who that we regularly texted each other, for the past 4 months I can receive her texts but she never gets mine? And I have tried countless times, now iv given up trying and I don't use texting to either, but everyone else no problem.

    You and your husband can share a store account and still have seperate iCloud accounts for your contacts, bookmarks and stuff like that.  Click here for instructions to make an apple account without entering a credit card.  Make sure you use a different email address for each apple account. 
    Set up your iPhone/iPad whatever using the new account for iCloud.  Then go into settings/store and sign in with your purchasing account, you may need to sign out of the other account.  To the best of my knowledge, your household is allowed to share purchased legally, someone please correct me if I'm wrong.
    Once you each have your own devices set to your own accounts you can set them to backup to that account and it will keep all your contacts seperate.

  • How to increase the size of text boxes in FCPX without stretching the text inside?

    How to increase the size of text boxes in FCPX without stretching the text inside?

    There are two basic Title formats — I should say Layouts — available:  Text (plain) and Paragraph.  (The plain text version usually does not appear with the blue dot controls — those generally appear for the paragraph type control.)
    If the Title is using a Paragraph layout, it's like having a mini version of Text Edit available inside FCPX. You can tell when you click on the text (when the title is selected) -- a rectangle will appear around the text like so:
    double clicking on the text will give you the bounds controls which you can use to redefine the text area without distorting the text. Once selected, notice the button that appears in the top right corner of the canvas:
    Pressing that will activate the ruler. You can right click on the ruler and add Tab Stops (left, right, center and decimal.)
    So if the title uses paragraph formatting, you can create a very WYSIWYG type of display text (use the Text inspector to alter text selections within the paragraph bounds.)

  • I printed an AutoCad drawing to PDF and the PDF looks OK on the screen but when I print the PDF to a printer the text in the drawing is crosshatched with lines and you cant's see the letters, I printed an AutoCad drawing to PDF and the PDF looks OK on the

    I need to know why this crosshatching appears over the text when I print the PDF

    If you use the same Adobe Reader versions with the same PDF on Windows 7 and XP, then I would expect the outcome to be the same.
    Is this a local or online PDF?
    If local, is the file really exactly the same?
    If online, in what browser?

  • How do I set the cursor in the text response of a message box

    I am using TestStand 4.1.1. During testing I need to scan in some data from the operator.
    I am using a message popup with the text response box enabled. My problem is the cursor does not automatically appear in the text box at run time. I don't want to have to place the mouse in the box each time.
    Is there someway to set the cursor to automatically be in the text box.
    Regards,
    Don1.
    Solved!
    Go to Solution.

    Hi,
    You have to make the Response Box the active control. You will find the 'Active Control' control in the main tab of the Message Box setup properties window.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Text appears in the middle of the original message when replying

    Has anyone had this problem? When replying to an email the reply message text appears right in the middle of the detail header of the original message. Here is an example:
    Original Message:
    From: Jane Doe
    "Yes 2PM at Market Place works for me."
    To: Tawnbi
    Sent on xx/xx/2007, Friday, etc.
    Hey! How about 2PM tomorrow at Market Place?
    Okay. The text "Yes 2PM at Market Place works for me" was the reply. Why didn't it appear above the detail header to the original message? The rep at Apple Store in Chicago said he's only had one other customer with this problem. The email is being accessed through Outlook Web Access. Has anyone had this problem? If so, found a solution?

    That folder with the question mark icon means that the MacBook can't find the boot directory. That can either mean it can't find the hard drive or the Operating System data on the hard drive is somehow corrupted.
    Put your install DVD into the optical drive and reboot. As soon as you hear the boot chime, hold down the "c" key on your keyboard (or the Option key until the Install Disk shows up). That will force your MacBook to boot from the install DVD in the optical drive.
    When it does start up, you'll see a panel asking you to choose your language. Just press the Return key on your keyboard once. It will then present you with an Installation window. Completely ignore this window and click on Utilities in the top menu and scroll down to Disk Utility and click it. When it comes up is your Hard Drive in the list on the left?
    If it is then click on the Mac OS partition of your hard drive in the left hand list. Then select the First Aid Tab and run Repair Disk. The Repair Disk button won't be available until you've clicked on the Mac OS partition on your hard drive. If that repairs any problems run it again until the green OK appears and then run Repair Permissions.
    If your hard drive isn’t recognized in Disk Utility then your hard drive is probably dead.

Maybe you are looking for