Spell Checker Utility

Hi,
I have read that SAP CD provides a spell checker functionnality running on CE 7.1 Here is the information about the product.
PdES: SpellChecker Custom Utility by SAP Custom Development [original link is broken]
Is it something that comes installed on CE 7.1 or we have to buy/install it on the side? Does anyone know where to download it and how to install it?
Regards,
Renaud

HI
Yes , agreed, Please have   a look on these threads
1. [Setting up web services |http://wiki.sdn.sap.com/wiki/display/VC/Settingupweb+services]
2.[Webservices to File Scenario |http://wiki.sdn.sap.com/wiki/display/XI/WebservicestoFile+Scenario]
BR
Satish Kumar

Similar Messages

  • How do I compare these text files (aka spell check)

    I'm having the hardest time figuring out how to get this spell check to work. Basically, I need to open the dictionary.txt file and then another file which will be spell checked. Ignoring case sensitivity, punctuation, and word endings (such as ly, ing, s). And then output to the user the words that were not found in the dictionary. Here is what I have so far (and it is very basic.... there is no attempt to compare yet since I don't know how to approach this). I only have it outputting to a JTextArea what is opened minus punctuation and upper case....
    import java.util.Scanner;
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    //  Created Sept 4, 2004
    *   @version 1.0
    *   This program will store dictionary.txt to a String array and
    *   open another text file to be specified by the user of the program.
    *   As the scanner proceeds through the document, it will spell check
    *   and output any (case insensitive) words not found in the
    *   dictionary.txt file.
    public class Spell extends JFrame {
        /** Area to place the individual words in the file */
        JTextArea outputDictionary, outputWord;
    *  Constructor for the class.  Sets up the swing components.
    *  Prompts the user for the files to be processed.  Then invokes
    *  the process method to actually do the work.
    public Spell() {
         // A JTextArea is used to display each word found in the file.
         outputDictionary=new JTextArea("Dictionary List\n\n");
         add (new JScrollPane(outputDictionary));
         //Set the size to 300 wide by 600 pixels high
         setSize(300,600);
         setVisible(true);
            outputWord=new JTextArea("Opened Document\n\n");
            add (new JScrollPane(outputWord));
            setSize(300,600);
            setVisible(true);
        //Prompts user for the dictionary.txt file
        JFileChooser dictionary = new JFileChooser();
        int returnVal = dictionary.showOpenDialog(this);
         if  (returnVal == JFileChooser.APPROVE_OPTION) {
              storeDictionary(dictionary.getSelectedFile());
        //Prompt user to open file to be checked          
        JFileChooser word = new JFileChooser();
        int returnVal2 = word.showOpenDialog(this);
            if (returnVal2 == JFileChooser.APPROVE_OPTION){
                storeOpenFile(word.getSelectedFile());
    public void storeDictionary(File dictionaryFile) {
         String dictionary="";
         Scanner scanner=null;
        try {
            // Delimiters specifiy where to parse tokens in a scanner
           scanner = new Scanner(dictionaryFile).useDelimiter("\\s*[\\p{Punct}*\\s+]\\s*");
        catch (FileNotFoundException fnfe) {
            JOptionPane.showMessageDialog(this,"Could not open the file");
           System.exit(-1);
         while (scanner.hasNext()) {         
              dictionary=scanner.next();
              if (!dictionary.equals(""))
                 outputDictionary.append(dictionary.toLowerCase()+"\n");
            System.out.println("Thank you, your dictionary is stored.");
    public void storeOpenFile(File openFile){
        String word="";
        Scanner scanner2 = null;
        try {
            // Delimiters specifiy where to parse tokens in a scanner
           scanner2 = new Scanner(openFile).useDelimiter("\\s*[\\p{Punct}*\\s+]\\s*");
        catch (FileNotFoundException fnfe) {
            JOptionPane.showMessageDialog(this,"Could not open the file");
           System.exit(-1);
        //stores the words in the opened text file in a String array
         while (scanner2.hasNext()) {         
              word=scanner2.next();
                 if(!word.equals(""))
                        outputWord.append(word.toLowerCase()+"\n");
        System.out.println("Thanks, your file has successfully been opened.");
    public static void main(String args[]) {
       Spell spellck = new Spell();
       spellck.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

    Yes, he actually recommends us to use java 1.5. I have revised my code to read into a TreeSet from the dictionary.txt, but I keep getting the following error when I compile:
    Note: C:\Jwork\spell1.java uses unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    Finished spell1.
    Also, when I execute, nothing happens. It looks like it is going to try to do something, but the "open" dialog box never opens and no errors pop up. It just sits there executing. Any suggestions??
    here is the code:
    import java.util.*;
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    //  Created Sept 4, 2004
    *   @version 1.0
    *   This program will store dictionary.txt to a String array and
    *   open another text file to be specified by the user of the program.
    *   As the scanner proceeds through the document, it will spell check
    *   and output any (case insensitive) words not found in the
    *   dictionary.txt file.
    public class spell1 extends JFrame{
        JTextArea output = new JTextArea(500,500);
        Set dict = new TreeSet();
        Set file = new HashSet();
        public spell1(){
        Set dict = new TreeSet();
        Set file = new HashSet();
        //Prompts user for the dictionary.txt file
        JFileChooser dictionary = new JFileChooser();
        JFileChooser wordFiles = new JFileChooser();
        int returnVal = dictionary.showOpenDialog(this);
         if (returnVal == JFileChooser.APPROVE_OPTION) {
         storeDictionary(dictionary.getSelectedFile());
        int returnVal2 = wordFiles.showOpenDialog(this);
            if (returnVal2 == JFileChooser.APPROVE_OPTION){
                storeFile(wordFiles.getSelectedFile());
        public void storeDictionary(File dictionaryFile){
            String dictionary="";
         Scanner scanner=null;
        try {
           // Delimiters specifiy where to parse tokens in a scanner
           scanner = new Scanner(dictionaryFile).useDelimiter("\\s*[\\p{Punct}*\\s+]\\s*");
        catch (FileNotFoundException fnfe) {
            JOptionPane.showMessageDialog(this,"Could not open the file");
           System.exit(-1);
         while (scanner.hasNext()) {
              if (!dictionary.equals(""))
                 dict.add(scanner.next());
            System.out.println("Thank you, your dictionary is stored.");
        public void storeFile(File wordFile){
            String word="";
            Scanner scanner2=null;
        try{
            scanner2 = new Scanner(wordFile).useDelimiter("\\s*[\\p{Punct}*\\s+]\\s*");
        catch (FileNotFoundException fnfe){
            JOptionPane.showMessageDialog(this,"Could not open the file");
            System.exit(-1);
            while(scanner2.hasNext()){
                if(!word.equals(""))
                    file.add(scanner2.next());
        public static void main(String args[]){
            spell1 spellck = new spell1();
            spellck.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

  • Can no longer drag icons, copy paste, print, spell check, drag and drop etc

    All of a sudden I can no longer do any of thoses things. Also I get a message that ClamAV can not find the scanning agent either (I use ClamXav). the spell check in Safari does not work either. it claims it can not find my printer, and who knows what I did not find yet.
    did several restarts. switched users. dumped com.apple.finder.plist to no avail.
    any suggestions?

    Create a new account, name it "test" and see how your apps work in that User acct? (That will tell if your problem is systemwide or limited to your User acct.) This account is just for test, do nothing further with it.
    Open System Preferences >> Accounts >> "+" make it an admin account.
    If the problem is present in the test account also, then it is systemwide. In this case try repairing this with the 10.5.5 Combo Update This is a fuller install, as opposed to an incremental "delta" update so it should overwrite any files that are damaged or missing. It does not matter if you have applied it before.
    Remember to Verify Disk before update and repair permissions after update from /Applications/Utilities/Disk Utility.
    If the problem does not appear in the test account try starting in "Safe Mode" (It will take a bit more time to startup because it runs a directory check first).
    If that works go to System Preferences >> Accounts >> Login Items and remove them. Boot normally and test. If there are still problems, go to ~(yourHome)/Library/Contextual Menu Items and move whatever is there to the desktop. Then do the same with /Library/Contextual Menu Items. Lastly, try moving /Users/Home)/Library/Fonts to your desktop and restarting.
    Log out/in or restart, if that sorts it start putting items back one at a time until you find the culprit.
    Let us know.
    -mj

  • GW8 Spell checker error

    A user is getting the error 'Cannot load spell checker resource module' when spell checking an email before sending it. We have uninstalled, ran cleaner, reinstalled GW but it is still giving the error. We are running GW8 SP2. It has been working for over an year and this suddenly happened. I ran an utility I was pointed to at www.dependencywalker.com. I have the results if needed. What can I do to fix this??

    Hi,
    Hate to say it, but.... user profile corruption somewhere. I suggest recreating the user profile. If it doesn't follow the user it is PC related.
    Let us know how it goes.
    Cheers,

  • Spell Checker needed

    Does antone know of a spell checker that can be used in a web page to check the text in user input text boxes?

    I doubt very much you'd find a Javascript spell-checker, and if you did you wouldn't want to use it because the download time for the dictionary words would be horrendous. So you'd want to upload the text box to the server and do the checking there (I think Hotmail, or one of the Internet mail services, does exactly that). That gives you more freedom in how you can implement it. As for does one exist, a Google search for "java spelling check utility" suggests the answer is "Yes".

  • Simple Spell Checker

    Hey. I'm pretty new to Java, but have to try and create a very simple spell checker. At the moment I have three classes and an interface, and I am to write a fourth and final class:
    DictionaryLoader, whichprovidesastaticmethod+loadTheDictionary+which
    readsthewordsfromafileandreturnsthemasanarrayofstringsinalphabetical
    order.
    SpellChecker, which stores the array of strings and provides a method called
    check to search it. It also provides a zeroargument constructor, which calls
    DictionaryLoader.loadTheDictionary.
    ISpellChecker is an interface defining the check method of SpellChecker.
    SpellCheckResultisaclassusedby+SpellChecker+toreturnresults.A
    SpellCheckResultobjecthaspublicfieldsindicatingwhetherthewordwas
    correctlyspeltand,ifnot,whatwerethewordsimmediatelybeforeandafterit.Ifit
    wasbeforethefirstdictionaryentryorafterthelastonethenoneofthesefields
    mightbenull.
    SpellCheckerUIisaclasscontainingamainmethodwhichprovidestheuser
    interfacetothesystem.
    I have the code for all of these other than SpellChecker, which I have to write, except I have no clue what I'm supposed to do.
    Here is the code for the four parts I have the code for:
    DictionaryLoader:
    import java.io.BufferedReader;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.util.Scanner;
    import java.util.Vector;
    public class DictionaryLoader {
         public static final String dictFileName="/usr/share/dict/words";
         public static String[] loadTheDictionary() {
              Scanner s;
              try {
                   s = new Scanner(new BufferedReader(new FileReader(dictFileName)));
              } catch (FileNotFoundException e) {
                   System.err.println("Standard dictionary file "+dictFileName+" missing");
                   return new String[0];
              Vector<String> dict = new Vector<String>();
              while (s.hasNext()) {
                   dict.add(s.next());
              return dict.toArray(new String[0]);
    }ISpellChecker:
    public interface ISpellChecker {
        /* check a word w and return a SpellCheckResult object containing
           the outcome */
         public SpellCheckResult check(String w);
    }SpellCheckResult:
    public class SpellCheckResult {
        public boolean correct; /* true if the word was found */
        public String before;/* if the word was not found then this field
                     * contains the dictionary word before it, or
                     * null if there isn't one, else undefined */
        public String after;/* if the word was not found then this field
                    * contains the dictionary word after it, or
                    * null if there isn't one, else undefined */
        public SpellCheckResult(boolean result, String before, String after) {
         this.correct = result;
         this.before = before;
         this.after = after;
    }SpellCheckerUI:
    import java.util.Scanner;
    public class SpellCheckerUI {
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              ISpellChecker sc = new SpellChecker();
              Scanner s = new Scanner(System.in);
              System.out.println("\n\n******SIMPLE SPELL CHECKER******\n\nEnter a word you would like to check the spelling of.\nType 'quit' to exit the program.\n");
              while (true) {
                   System.out.print("Word to check: ");
                   String w = s.next();
                   if (w.equals("quit"))
                        break;
                   SpellCheckResult r = sc.check(w);
                   if (r.correct)
                        System.out.println(w+" correct");
                   else
                        System.out.print(w+" was not found. Nearest neighbour(s) ");
                        if (r.before != null)
                             System.out.print(r.before+" and ");
                        if (r.after != null)
                             System.out.println(r.after);
              System.out.println("Thank you for using this program. Goodbye\n\n");
    }And so far, for the SpellChecker I have:
    public class SpellChecker extends SpellCheckerUI implements ISpellChecker {
         public SpellChecker() {
              DictionaryLoader.loadTheDictionary();
         public SpellCheckResult check(String w) {
              return null;
         public static void main(String[] args){
    }I have no idea what code to write in the SpellChecker, so if anybody can lend a hand at all, it'd be so helpful. Thank you.

    tad2382 wrote:
    Finding the w is a little bit trickier than it seems at first. At first, it might seem that you'd want to iterate through every entry in the array...but that would be horribly inefficient. A binary search would be better: O(log(n)) runtime instead of O(n).Only with "exact matches". But the OP would also need to find "near matches": making an ordered array with a binary search worthless. A radix tree would be the way to go.
    [http://en.wikipedia.org/wiki/Radix_tree]
    So basically, you'd check the middle word in the array. If it's what you want return it. If it's greater (Strings implement the comparable interface, just make sure you're ignoring case), check the lower half of the array, otherwise check the upper half. Then you'd recurse and do this for the upper/lower half of the array (your recursive method would take the min & max and look at the middle element). Your base case would be that you're left with the min & max as neighboring elements in the array (and you haven't found the word)--then you have your before & after and you're all set. Just be careful you're not skipping any entries in the array with a 1 off error.
    That's the pseudocode - hopefully you can figure out the java behind it.... or just get it working in a way that is the most easiest to implement. And if need be, improve it.

  • Batch spell checking

    One of my program's tasks is to spell check a large number of unique strings per session, each string approx. a sentence long.
    I chose to use the Jazzy API to accomplish this. Unfortunately I found that this method takes significantly longer. A process taking 5 seconds takes about 30 minutes using the spell check.
    //Spell Check class that implements Jazzy, an open source API
    import com.swabunga.spell.event.*;
    import com.swabunga.spell.engine.*;
    import java.io.*;
    import java.util.*;
    public class SpellCheck implements SpellCheckListener
      private final String DICTIONARY_FILE = "Dictionary/english.0";
      private SpellChecker spellChecker;
      private ArrayList listOfMisspelledWords;
      public SpellCheck(String description)
        createDictionary();
        spellChecker.addSpellCheckListener(this);
        // Check Spelling
        StringWordTokenizer texTok =
           new StringWordTokenizer(description, new TeXWordFinder());
        populateListOfMisspelledWords(texTok);
        printWordsInMisspelledList();
      private void createDictionary()
        File dict = new File(DICTIONARY_FILE);
        try
          spellChecker = new SpellChecker(new SpellDictionaryHashMap(dict));
        catch (FileNotFoundException e)
          System.err.println("Dictionary File '" + dict + "' not found! Quitting. " + e);
          System.exit(1);
        catch (IOException ex)
          System.err.println("IOException occurred while trying to read the dictionary file: " + ex);
          System.exit(2);
      private void populateListOfMisspelledWords(StringWordTokenizer texTok)
        listOfMisspelledWords = new ArrayList();
        spellChecker.checkSpelling(texTok);
      private void printWordsInMisspelledList()
        Iterator it = listOfMisspelledWords.iterator();
        while (it.hasNext())
          System.out.println("Misspelled: " + it.next());
      public void spellingError(SpellCheckEvent event)
        event.ignoreWord(true);
        listOfMisspelledWords.add(event.getInvalidWord());
      public void check(String description){
        description = description;
        new SpellCheck(description);
    }Is there a better way to perform this kind of spell check?
    Thanks

    Check Mail Preferences/Composing to see what is select with regard to Spell Check?
    Ernie

  • Firefox 14.0.1 has a spell checking error./ bug in the code

    I just had all my machines update to 14.0.1 (WIN XP SP3)
    I had a clean boot right before the update occurred.
    This is the first time I had used this version on this machine.
    When the program came up, I had no access to the spell checker at all. Nothing I did could change this (checking and un-checking the feature in the right click menu.
    So, I selected the option of restarting the browser in "SAFE MODE" with no add-ons. There was no change at all (still no spell checking)
    So, I went to this site, made an account, activated the count (this entire time FIREFOX had no spell checking) and I created a report.
    I was most of the way done writing the report when suddenly the spell checking started to work. I made no changes to the settings, when suddenly I had spell checking working.
    This means there is an intermittent error;p often the hardest to find from my 20+ years of programming experience (Senior IT contractor)..
    So, have find finding this one. Intermittent bugs are the hardest to track, and tend to come from issues like scope issues, settings stored in files/registry, overly convoluted code (like a rush job that isn't fully understood & was just hammered on until it seemed to work). From my experience it often happens in the last steps of finishing a release - accidentally introducing a bug into what was a working section of code (unexpected ramification are a suspect) into a previously working program piece of a program.

    Hi BarleySinger and thanks for reporting us this issue.
    Yes. Intermitent bugs are really difficult to track and solve, so please try to do this things:
    * Try to reset Firefox so all settings that may be creating this problems will be removed.
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    * Try to perform a antivirus scan on your computer so you check you have no malware.
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try some of the following programs to scan for malware:
    * [http://www.malwarebytes.org/mbam.php MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://windows.microsoft.com/MSE Microsoft Security Essentials] (A good permanent anti-virus if you don't already have one)
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!
    * Send us troubleshooting information.
    In order to be able to find the correct solution to your problem, we require some more non-personal information from you. Please do the following:
    *Click the Firefox button at the top left, then click the ''Help'' menu and select ''Troubleshooting information'' from the submenu. If you don't have a Firefox button, click the Help menu at the top and select ''Troubleshooting information'' from the menu.
    Now, a new tab containing your troubleshooting information should open.
    *At the top of the page, you should see a button that says "Copy all to clipboard''. Click it.
    *Now, go back to your forum post and click inside the reply box. Press Ctrl+V to paste all the information you copied into the forum post.
    If you need further information about the Troubleshooting information page, please read the article [[Using the Troubleshooting Information page]].
    Thanks in advance for your help!
    * Check the issue is still reproducing intermitently, and it was not an isolated problem (Maybe Firefox was still preparing the spell checker).

  • Lost spell checking ablity

    I noticed today that the Mail app no longer underlines mis-spelled words in red. I went to the Edit menu and chose Spelling and Grammar and the "Check Spelling While Typing" option is checked. I chose the "Show Spelling and Grammar" option but nothing appeared. There is also no icon in System Preferences for Spelling and Grammar either. Anyone know what could have happened and how to get this working again? Thanks a bunch

    I did a quick Google search and learned to use the Disk Repair utility to repair the permissions. I assume a SMC reset (according to an obscure Google result) was to shutdown the mac and unplug the power for a minute or so. Then restart. Not sure which one did the trick but the spell checking appears to be back on.

  • Spell check looks at settings

    The spell checker in Thunderbird -- I am using their English/United States dictionary -- checks all the e-mail settings (e.g., font) in addition to the message I write. How can prevent this from happening?

    Application Basics
    Name: Thunderbird
    Version: 31.2.0
    User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0
    Profile Folder: Show Folder
    (Local drive)
    Application Build ID: 20141012121702
    Enabled Plugins: about:plugins
    Build Configuration: about:buildconfig
    Memory Use: about:memory
    Mail and News Accounts
    account1:
    INCOMING: account1, , (imap) imap-mail.outlook.com:993, SSL, passwordCleartext
    OUTGOING: smtp-mail.outlook.com:587, alwaysSTARTTLS, passwordCleartext, true
    account2:
    INCOMING: account2, , (none) Local Folders, plain, passwordCleartext
    account3:
    INCOMING: account3, , (imap) imap-mail.outlook.com:993, SSL, passwordCleartext
    OUTGOING: smtp-mail.outlook.com:587, alwaysSTARTTLS, passwordCleartext, true
    account4:
    INCOMING: account4, , (imap) imap.googlemail.com:993, SSL, passwordCleartext
    OUTGOING: smtp.googlemail.com:465, SSL, passwordCleartext, true
    account5:
    INCOMING: account5, , (imap) imap.googlemail.com:993, SSL, passwordCleartext
    OUTGOING: smtp.googlemail.com:465, SSL, passwordCleartext, true
    Crash Reports
    Extensions
    Duplicate Contact Manager, 0.9.2, true, {b4447f60-db9c-11da-a94d-0800200c9a66}
    English - English Dictionary, 1.5, true, EnglishEnglishDictionary@lipocodes
    Important Modified Preferences
    Name: Value
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.disk.smart_size_cached_value: 358400
    browser.display.use_document_fonts: 0
    browser.display.use_system_colors: true
    extensions.lastAppVersion: 31.2.0
    font.minimum-size.x-western: 14
    font.name.monospace.el: Consolas
    font.name.monospace.tr: Consolas
    font.name.monospace.x-baltic: Consolas
    font.name.monospace.x-central-euro: Consolas
    font.name.monospace.x-cyrillic: Consolas
    font.name.monospace.x-unicode: Consolas
    font.name.monospace.x-western: Arial Narrow
    font.name.sans-serif.el: Calibri
    font.name.sans-serif.tr: Calibri
    font.name.sans-serif.x-baltic: Calibri
    font.name.sans-serif.x-central-euro: Calibri
    font.name.sans-serif.x-cyrillic: Calibri
    font.name.sans-serif.x-unicode: Calibri
    font.name.sans-serif.x-western: Arial Narrow
    font.name.serif.el: Cambria
    font.name.serif.tr: Cambria
    font.name.serif.x-baltic: Cambria
    font.name.serif.x-central-euro: Cambria
    font.name.serif.x-cyrillic: Cambria
    font.name.serif.x-unicode: Cambria
    font.name.serif.x-western: Arial Narrow
    font.size.fixed.el: 14
    font.size.fixed.tr: 14
    font.size.fixed.x-baltic: 14
    font.size.fixed.x-central-euro: 14
    font.size.fixed.x-cyrillic: 14
    font.size.fixed.x-unicode: 14
    font.size.fixed.x-western: 14
    font.size.variable.el: 17
    font.size.variable.tr: 17
    font.size.variable.x-baltic: 17
    font.size.variable.x-central-euro: 17
    font.size.variable.x-cyrillic: 17
    font.size.variable.x-unicode: 17
    font.size.variable.x-western: 12
    gfx.direct3d.last_used_feature_level_idx: 1
    mail.openMessageBehavior.version: 1
    mail.winsearch.firstRunDone: true
    mailnews.database.global.datastore.id: e013b5af-38ee-4b5f-845e-c6605ab94a6
    mailnews.database.global.views.conversation.columns: {"threadCol":{"visible":true,"ordinal":"1"},"flaggedCol":{"visible":true,"ordinal":"3"},"attachmentCol":{"visible":false…
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1415903526
    places.history.expiration.transient_current_max_pages: 104858
    plugin.importedState: true
    privacy.donottrackheader.enabled: true
    Graphics
    Adapter Description: Intel(R) HD Graphics
    Vendor ID: 0x8086
    Device ID: 0x0046
    Adapter RAM: Unknown
    Adapter Drivers: igdumd64 igd10umd64 igdumdx32 igd10umd32
    Driver Version: 8.15.10.2827
    Driver Date: 7-31-2012
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.2.9200.16571)
    ClearType Parameters: Gamma: 2200 Pixel Structure: B ClearType Level: 50 Enhanced Contrast: 400
    WebGL Renderer: false
    GPU Accelerated Windows: 2/2 Direct3D 10
    AzureCanvasBackend: direct2d
    AzureSkiaAccelerated: 0
    AzureFallbackCanvasBackend: cairo
    AzureContentBackend: direct2d
    JavaScript
    Incremental GC: 1
    Accessibility
    Activated: 0
    Prevent Accessibility: 0
    Library Versions
    Expected minimum version
    Version in use
    NSPR
    4.10.6
    4.10.6
    NSS
    3.16.2.2 Basic ECC
    3.16.2.2 Basic ECC
    NSS Util
    3.16.2.2
    3.16.2.2
    NSS SSL
    3.16.2.2 Basic ECC
    3.16.2.2 Basic ECC
    NSS S/MIME
    3.16.2.2 Basic ECC
    3.16.2.2 Basic ECC

  • Spell Check wont learn

    Good evening to all. I gather from reading the forums that spell check is not specific to any one application and so i am posting this ina general area. please correct me if that is a mistake.
    Spell check is no longer learning words. If it encounters a strange word and I ask it to learn it, it agrees but the next time it sees it, it still declares it an error. I write emails more than printed letters so it seems to happen when using mail more than anything else but it happens everywhere. Usually personal names and street names. I write them often and it is maddening to keep seeing the little red line when I know I have spelled it correctly and told it to learn this same word a hundred times before.
    Am I doing something to erase the stored words? is there a way to "lock" the file? Is there a way to add words outside of the spell check window?
    Any and all advice would be appreciated. Thank you.

    Hi Sonny,
    Two maintenance tasks you should do after any major install.
    For the system, you should repair permissions. Launch Disk Utility (Applications > Utilities > Disk Utility), select your hard drive, then click Frist Aid, then Repair permissions.
    For AppleWorks, you should delete the preferences files. Quit AppleWorks before doing the following. Look in Mac HD > yourname > Library > Preferences > AppleWorks. Delete the two preferences files and the two cache files there. Then close the AppleWorks folder to get back to the Preferences folder. Find and delete the file com.apple.appleworks.plist.
    The above are general maintenance items, not specific to your issue.
    A greyed Learn button usually indicates one of two things: Your User dictionary is full, or AppleWorks doesn't know where the User dictionary is.
    Open a word processing document, then go Edit > Writing tools > Select Dictionaries...
    In the dialogue, click on the radio button for User Dictionary, then click Choose.
    In the Open dialogue, look for User Dictionary (it will be the only entry highlighted), click on it then click Select. Click Done in the Choose dialogue to return to your document.
    If there's no user dictionary in the list, you'll need to create a new one. Click Cancel in the Open dialogue, then click New in the Choose dialogue. Give your dictionary a name, then click the Save button. Return to your document as above.
    If the dictionary is already there and selected, but still can't learn, it's probably full. You can edit the contents one word at a time, using Edit > Writing Tools > Edit User Dictionary, or you can Export the disctionary to a text document, edit that in AppleWorks, save it AS TEXT, then empty the dictionary (or create a new one) and import the text file.
    Regards,
    Barry

  • Java Spell Checker

    Does somebody have an idea of how to write a spell checker in Java in that do one have to obtain a dictionary file or what.
    Where in the application do I embed the dictionary and where can one get the English words file or something

    im not sure exactly wat ur asking .. but as far as i understood ur Qs .... there is a default unix dictionary file which has approximately 45000 words and unix utility uses it .... try that.... and if u dont use a dictionary .. what wud u compare ur misspelled words against ?

  • I can't use word because a box keeps popping up saying that it can't find the spell check files?

    I open Word and there is a pop-up message saying that word cannot start the spelling checker because the files may be missing and to make sure that the spell checker files are installed or use the Microsoft installer to install spell checker. I have never had this problem with Word before and spell check has always been fine. What should I do?

    Since word is made by Microsoft you should post your question on their own forums for their Mac software as Apple Communities only provide support for Apple products:
    http://www.officeformac.com/productforums

  • Pages 08 Spell Checker Not Working

    When I started using Pages 08, I turned on the Spelling --> Check Spelling As You Type. One day it stopped to work, in fact I do not know whether it is working or not since the red lines that highlighted incorrectly-spelled text no longer appeared. I tried turning the feature on and off several times, and fiddled with Text Inspector, but have foind no solution to this. Please advise, anyone. Thanks.

    Repairing Permissions did not do anything for me. I have tried various and other sundry things as found in other messages about this major issue w/ Pages, but to no avail. Spell check works fine in other apps, TextEdit for example.

  • Pages 08 spell checker not working after pasting in a windows document.

    I am working Pages 08. I pasted a Windows document ( Microsoft word I am assuming ? ) that I saved from another email account(not safari,school based) into my Pages document. Now the spell checker will not work in the Pages document only, Works fine everywhere else. Even if I paste the Pages text into a new document the checker will not work in the document. Any suggestions /

    I figured it out. The language was set to none in the inspector

Maybe you are looking for

  • F4 field is called first in ALV Grid

    Hello All, I have a strange issue where in I have 4 fields in alv grid. Last field is having the F4 help facility. When clicking on creating new row in the grid, automatically the control is going on to the last field (f4 field) and is getting called

  • Alignment of Text

    I have a JList which show different attributes values of a item in a line. I am trying to align each of the attributes to follow in the same vertical alignment. To do so, I used "\t" but I am facing some problem, is that as the length of the attribut

  • Mail launch not working

    I appear to have deleted a number of files from my Mac and as such my mail does not lauch?  Can anyone help?

  • Need help - Database Item

    How to find that if an item is a base table item or not ? suppose if there are 5 items in a block. How will I come to know that the item is a database item or not?

  • Webdav mount for Beehive Online

    Hello, is it possible to set up a Webdav mount directory on Linux for beehiveonline the same way it is for stbeehive ? I tried the following : sudo mount -t davfs https://beehiveonline.oracle.com/content/dav/st /home/beehiveonline ...which failed. Is