How Do I Get Spell Checker to Flag Words with Numbers?

Hi,
I cannot find any articles on this, so sorry if it's already been answered elsewhere.
I sometimes accidentally hit a number key when typing words like "you"--so that it becomes "y9ou". The Firefox built-in spell checker does not flag this as a misspelling.
In other programs there is a check box to allow this or not, but I cannot find one for Firefox. I do not use words with numbers very often, except something like W2, so I would prefer those get flagged instead of ones that are wrong like y9ou or w3ere that I make frequently.
Any help on this?
Thanks!
Don :)

Hi, Again,
Thanks for the info. And for a quick reply. ;-)
I checked my current cop0y of LibreOffice (I replaced OpenOffice.org with it several months ago). LibreOffice uses Hunspell as well. I had not checked the boxes to check words with numbers or all-caps as I had previously done in OpenOffice.org, so for all this time I have been thinking it would flag errors in those when it wasn't. Must have made LOTS of mistakes I didn't catch in that time. ;-(
In LibreOffice, go to Tools => Options => Languages => Writing Aids. You can choose to enable spelling and grammar checking (not sure what the grammar checker oes, since it was already enabled but I have never seen any evidence of it). The below that is a section of checkboxes where you can specify what is and is not flagged by the spell checker. I checked the words with numbers and capital letters choices. So now it will catch all the acronyms I haven't added to the spell checker dictionary.
I was looking for the same sort of choice in Firefox but didn't see it. Perhaps there is an API in Hnnspell the Firefox developers can use to add this choice as a checkbox, the way it is in LibreOffice.
I realize this may be perceived as a low priority, but I would certainly appreciate seeing it in a future update of Firefox. At least making this post helped me get the settings i wanted in my word processor.
Take care and God bless.
Don :)

Similar Messages

  • How do I get spell check back on after firefox was updated? Thanks

    How do I get spell check back on after Firefox was updated?

    Not all locales come with a dictionary installed due to licensing reasons.<br />
    If you do not have the en-US locale then check that you have a dictionary installed (Tools > Add-ons > Extensions) and selected.
    You can see which dictionary is selected if you right-click in a text area and open the Languages submenu.<br />
    You can open the "Add Dictionaries" link to install a dictionary if you do not have one.<br />
    Make sure that [X] "Check Spelling" in the right-click context menu has a tick.<br />
    You can enable or disable spell checking globally:
    * Tools > Options > Advanced : General: Browsing: "Check my spelling as I type"
    See also:
    * https://support.mozilla.com/kb/Using+the+spell+checker
    You can look here for dictionaries:
    * https://addons.mozilla.org/firefox/language-tools/

  • How do I get spell check on Beta e mail?

    ''locking as a duplicate - https://support.mozilla.com/en-US/questions/789519''
    I am so disgusted with this site! I am trying to ask how to get spell check and you ask for confimation of my address but do not tell me how to do it! This is taking far too much time and I can't send a mail until I know the answer. This Beta site is not user friendly and freezes up every time I use it! I am really frustrated .

    see also post https://support.mozilla.com/en-US/questions/789519#answer-143532

  • How do we get spell check on Beta? It isn't obvious like before

    I sent a question before but it asked me to confirm my address and didn't show me how to confirm. My problem is I do not know how to get spell check on an e mail. This has been so time consuming because I also can't get to anything once I click. Always getting the hourglass and can't get through.

    see also post https://support.mozilla.com/en-US/questions/789519#answer-143532

  • How do I get spell check working in Mac Mail?

    I'm on OS X Mountain Lion (10.8.2) and Mac Mail v 6.2
    Mail Preferences are set to Check spelling "as I type" but the dashed red underline is not appearing as I misspell words.
    I have been reading forums and other posts that suggested enabling "Correct spelling automatically" at a system level (System Preferences > Language & Text > Text) while leaving Mail set to "as I type" for App level preference.  Odd thing is, once I follow these steps and checkmark "Correct spelling automatically" it doesn't retain the selection - when I open the window back up the box is unselected.
    Any help is appreciated!

    I found this Aplle Support thread, tried it and it worked!.  Good luck @AngeredDan
    https://discussions.apple.com/thread/4353496?start=0&tstart=0

  • Get case sensitive spell check to flag rg174

    Here are some words that have been added to spelling dictionary:
    CD
    CDs
    FS237E
    George
    MS417D
    RG174
    and also many other product numbers that our company wants to follow our capitalization rules.
    For the following sentence:
    You might find what george has to present in download format on fs237e, but if you prefer cd format then you should consider ms417D.
    Case sensitive spell chcek of this sentence only flags "george" and "cd" as misspellings. but not the two products.
    Hopefully Indesign can handle this and simply I am doing something wrong.
    Thanks, Edward

    I was hoping somebody who actually uses spell checking would pick this up overnight...
    I suspect that the problem is ID ignores words with numbers, and I don't see any settings to make that a user choice. You might want to add these to the auto-correct list (smething else I never use).

  • How to implement the spell check in oracle forms 10g or 6i...

    How to implement the spell check in oracle forms.
    Is there any different method is there.
    Please help me....
    Praveen.K

    Here is one different from Jspell..
    In 6i client/server you can call MS Word spell checker using OLE. Below sample code for 6i.
    For 10g you will need webutil to use same code. install webutil and just replace "OLE2." with "CLIENT_OLE2."
    PROCEDURE spell_check (item_name IN VARCHAR2)
    IS
       my_application   ole2.obj_type;
       my_documents     ole2.obj_type;
       my_document      ole2.obj_type;
       my_selection     ole2.obj_type;
       get_spell        ole2.obj_type;
       my_spell         ole2.obj_type;
       args             ole2.list_type;
       spell_checked    VARCHAR2 (4000);
       orig_text        VARCHAR2 (4000);
    BEGIN
       orig_text := NAME_IN (item_name);
       my_application := ole2.create_obj ('WORD.APPLICATION');
       ole2.set_property (my_application, 'VISIBLE', FALSE);
       my_documents := ole2.get_obj_property (my_application, 'DOCUMENTS');
       my_document := ole2.invoke_obj (my_documents, 'ADD');
       my_selection := ole2.get_obj_property (my_application, 'SELECTION');
       ole2.set_property (my_selection, 'TEXT', orig_text);
       get_spell :=ole2.get_obj_property (my_application, 'ACTIVEDOCUMENT');
       ole2.invoke (get_spell, 'CHECKSPELLING');
       ole2.invoke (my_selection, 'WholeStory');
       ole2.invoke (my_selection, 'Copy');
       spell_checked := ole2.get_char_property (my_selection, 'TEXT');
       spell_checked :=SUBSTR (REPLACE (spell_checked, CHR (13), CHR (10)),1,LENGTH (spell_checked));
       COPY (spell_checked, item_name);
       args := ole2.create_arglist;
       ole2.add_arg (args, 0);
       ole2.invoke (my_document, 'CLOSE', args);
       ole2.destroy_arglist (args);
       ole2.RELEASE_OBJ (my_selection);
       ole2.RELEASE_OBJ (get_spell);
       ole2.RELEASE_OBJ (my_document);
       ole2.RELEASE_OBJ (my_documents);
       ole2.invoke (my_application, 'QUIT');
       ole2.RELEASE_OBJ (my_application);
    END;Call it like this: SPELL_CHECK ('BLOCK.MY_TEXT_ITEM' );

  • How can I get rid of a green box with a white check mark in it this box is covering some of my photos and on the windows icon for firefox.

    How can I get rid of a green box with a white check mark in it this box is covering some of my photos and on the windows icon for firefox. edit

    When I search for solutions, I find several references to the backup feature of Norton 360. There also were references to MozyHome and McAfee.
    http://community.norton.com/t5/Norton-360/Green-check-marks-on-icons-N360/m-p/40982
    http://answers.microsoft.com/en-us/windows/forum/windows_xp-pictures/white-check-mark-in-a-green-box/71b70580-b5f1-4336-8d72-71faf1f55cd6

  • How do I change spell checker and dictionary to Spanish in Pages 8

    How do I change spell checker and dictionary to Spanish in Pages 8

    Rony,
    Welcome to Apple discussions.
    Click on the Text inspector > More > then select Spanish from the Language menu.
    -Dennis

  • How do you stop spell checking any "word" that has an underscore in it.

    I send lots of email that reference code.  Either with snipits, or mentioning variable names or file names etc.
    So I would I disable any spell check of any word that has an underscore character as part of it.  For example dont_check_this_var.
    I specifically am concerned about settings in Outlook

    Right click on the word, and select "Ignore all".
    To disable spellcheck,
    Click the File tab, and then click Options. 
    Click Mail , and then click Editor Options. 
    Click to clear the Check spelling as you type check box. 
    Click to clear the Mark grammar as you type check box.
    Tylor Wang
    TechNet Community Support

  • How can I set check spelling to catch words with numbers in them?

    I sometimes inadvertently type a number in the middle of a word, e.g., "typ9o," but the spell-check feature never catches them. Can I change a setting to get spell-check to catch these kinds of words?

    Hi, Again,
    Thanks for the info. And for a quick reply. ;-)
    I checked my current cop0y of LibreOffice (I replaced OpenOffice.org with it several months ago). LibreOffice uses Hunspell as well. I had not checked the boxes to check words with numbers or all-caps as I had previously done in OpenOffice.org, so for all this time I have been thinking it would flag errors in those when it wasn't. Must have made LOTS of mistakes I didn't catch in that time. ;-(
    In LibreOffice, go to Tools => Options => Languages => Writing Aids. You can choose to enable spelling and grammar checking (not sure what the grammar checker oes, since it was already enabled but I have never seen any evidence of it). The below that is a section of checkboxes where you can specify what is and is not flagged by the spell checker. I checked the words with numbers and capital letters choices. So now it will catch all the acronyms I haven't added to the spell checker dictionary.
    I was looking for the same sort of choice in Firefox but didn't see it. Perhaps there is an API in Hnnspell the Firefox developers can use to add this choice as a checkbox, the way it is in LibreOffice.
    I realize this may be perceived as a low priority, but I would certainly appreciate seeing it in a future update of Firefox. At least making this post helped me get the settings i wanted in my word processor.
    Take care and God bless.
    Don :)

  • How do I get pages to add a word to the dictionary when it just asks if I want to look it up?

    How do I get pages to add a word to the dictionary when it just asks if I want to look it up?

    Thanks, but my problem is that some words spell check and offer alternatives and/or add to dictionary, but others dot not - they simply want to look them up, when I want to add them to the dictionary. Is there any way I can FORCE it to add it to the dictionary?

  • How can I get my games to run smooth with apple tv. I'm getting jerky movement

    How can I get my games to run smooth with apple tv?

    Check your network for interference (www.istumbler.net, check router manual in regards to changing channels) and other activities possibly running in the background.

  • HT5129 how do i get iPhoto to stop bothering me with Mobile Me Migration windows when everything's already on my hard drive?

    how do i get iPhoto to stop bothering me with Mobile Me Migration windows when everything's already on my hard drive?

    Click "More Info", not "o.k.".
    Then open the iPhoto Preferences "Accounts" tab and remove the "Mobile  Me" account, if it is still there.
    Quit iPhoto.
    Check, if "Mobile Me" is still enabled in the System Preferences > Mobile Me panel (if you still have this panel). if yes, sign out.
    Log off and on again.
    Test, if iPhoto still is bugging you to transfer your Mobile Me content. If yes, you need to delete your iPhoto Preferences from your User Library.
    ~/Library/Preferences/com.apple.iPhoto.plist
    And also remove the file
    ~/Library/Caches/com.apple.iPhoto/mmsunset.plist
    from the Caches in the User Library - this file contain the end date of Mobile me.

  • How can i get in work my Hp scaner with my macbook pro?

    how can i get in use my Hp scaner with my macbook pro?

    You have the display set in Extended Desktop mode with the MacBook as the main screen. The Menu Bar and Dock will be on the MacBook display and your background screen on the TV but you can move the cursor onto the TV screen.
    In System Preferences>Display on the MacBook screen there should be an Arrangement tab when you have the MacBook hooked up to the TV and both screens working. When you click the Arrangement tab do you see two monitors side by side? One of them will have a Menu Bar at the top. Just click on the Menu Bar and drag it to the second monitor. That will make the second monitor your main screen.
    The TV will now have the Dock and Menu Bar and windows will open on it. But you can move the cursor to the MacBook screen and move windows from the TV over to the MacBook screen.
    You can now use your MacBook in Clamshell Mode with a wired or Bluetooth keyboard and mouse.  http://support.apple.com/kb/HT3131 When you disconnect from the TV your Menu Bar will automatically change back to the MacBook.
    Or if you want to work on the MacBook screen while showing it on a TV you can check the Mirror Display box on the lower left hand side of the Arrangement tab under the two monitors box. That will give you the same screen at the same resolution on both the MacBook and the external monitor.

Maybe you are looking for

  • Ipod shuffle not recognized in iTunes

    When I connect my iPod shuffle to my computer, it is recognized as a device (I can safely remove it under "safely remove hardware") yet it is not recognized as a drive. Also, it is not recognized by iTunes and therefore does not appear on the source

  • How do I layer 2 video clips in the same time space/ playing side by side at the same time

    I wish to add 2 views of the same subject side by side and playing at the same time. Is this A possible and B if so how do I add the second video clip into the same time space

  • Need help with EXS24 "read velocity range from file name"

    I am trying to import 127 drum samples to a single key using the option shown here. The option says "Map to key dropped on and read velocity range from file name". I can find no documentation in the manuals on how to do this. What is the syntax requi

  • Iweb '08 and Lion

    I have upgraded to Lion OX. When I now open iweb basically all of the options under 'File' are greyed out and there does not appear to be an 'Open' command shown. Does iweb 08 not work with Lion? Scotty

  • Tons of trouble with Logic Studio since day one

    Logic 9.1.5 Os 10.6.8 Issue 1: I haven't touched logic in months because I've hated the fact that I had issues with it to begin that no one could ever solve. My first issue was that certain instruments that were installed couldn't be opened. I was gr