Beiträge von addictsupport

    Bobby,

    Thanks for drawing this to our attention :)

    It seems that the problem doesn't exist with the demo we currently have online at:


    Which was built with WPTools 5.18.5

    However when I rebuild with WPTools 5.20.5 I see the same problem.

    I can also confirm that the Autocorrect works correctly in our Addict 3.4.5 Demo.

    So I think something may have changed from the WPTools side of things - but I am uncertain whether this just requires a parser change. I've also just noted that the Addict/WPTools parser included in 5.20.5 has had a few minor adjustments done to it compared to the one we currently have online. So I'll check that out as well - Julian is often doing improvements to the parser and we are very grateful to him for that :)

    Julian,

    Any chance of adding RSS Feed support to your Forums?

    Several other phpBB Forums that I am involved with have RSS feeds and it makes things much easier for me (and for others I believe) - plus that way those who want Newsgroup like features can just use the RSS Feed.

    Bobby,

    Sorry for the delay.

    >> Live spell checking checkbox: If you uncheck and recheck, currently bad words lose red marks and do not return when you recheck. Only new misspelled words will be red underlined. (to reproduce, start demo, uncheck live spell check box, then check it again, now misspell a word. It will get underlined, but old ones will not) <<

    I can verify this problem - not sure what is causing it:

    if (ToggleLiveSpell.Checked) then
    AddictSpell.Configuration.SpellOptions := AddictSpell.Configuration.SpellOptions + [soLiveSpelling]
    else
    AddictSpell.Configuration.SpellOptions := AddictSpell.Configuration.SpellOptions - [soLiveSpelling];


    This works fine with WPTools 4 and the Parser.

    >>Ignore all/Change all: entries are added to a new dictionary? Is that new? Not saved to the 'SuggestionsLearningDict' file. <<

    I'm not quite sure I understand the problem here. I tried Ignore All and it seemed to work fine. Nothing was saved to any Dictionary.

    Bobby,

    Actually I frequent the newsgroup more often then here (my bad) - so thanks for the email :)

    Will check out in more detail your report - though I would say that Addict normally expects that Ignore/Ignore All are not saved to the Custom Dictionary. They do get saved to the Learning Dictionary unless you have that turned off.

    Julian needs to be thanked for all the work he has done on the WPTools Addict Parser - we are still no where near up to speed on all the new features and power he has added. Plus the new WPTools/Addict Demo is getting better and better - once again most of this has been done by Julian :)

    More details on how to use the new Addict/WPTools parser can be seen in the WPTools FAQ Forum.

    Also please note that the New Demo was just updated today - so if you grabbed it earlier, please check it out again :)

    ====

    Addictive Software is pleased to announce the availability of the Addict Spell Check & Thesaurus 3.4 release.

    More Info: http://www.addictivesoftware.com

    Pro Version: $199USD
    Std Version: $119USD
    PlusPack: $49USD

    Order From: https://order.kagi.com/?HJ

    This release is free of charge for all current Addict v3 customers. v2 customers who wish to receive this release, may purchase an upgrade.
    Multiple Developer licensing also available.

    Addict is a professional native VCL component suite that adds Dialog-based Spell Check, API-based Spell Check, Live ("squiggly") Spell Check for RichEdits and several 3rd Party components (including WPTools), Thesaurus Look-up, Auto Correction, and more.

    One of the major changes in this release is to our interface with WPTools
    - there is a new Addict 3 / WPTools Parser and demo available on the third Party site that demonstrates this new approach.


    Our range of Dictionaries can be seen here:


    Other Demos can be seen at:


    And a Trial version and Demo App can be grabbed from:


    Current registered users of Addict 3 should have received new download instructions via the Addict 3 announcement mailing list. If you haven't received this information, please contact:

    mailto:support@addictivesoftware.com.


    What's New with Version 3.4

    Version 3.4

    * Major update to WPTools integration pieces to permit hookup of multiple controls to a single Addict instance and usage of LiveSpell without installing additional components.
    * Allow the word at the cursor in a live-spelling control to be spell-highlighted if the control does not have focus
    * Changed WordAcceptable to return False if an excluded word is encountered, rather than forcing all apps to check separately for excluded words.
    * Added the ability for Control parsers to specify their TComponent (used in determining the proper form for dialog parenting)
    * Fixed a dialog parenting / control issue with WPTools where the spelling check dialog would come up under a WPTools component located in a modeless window.
    * Fixed possible range check problem when using the LiveSpelling RichEdit components
    * Added exception handler for problems loading a MSWord custom dictionary whose file is locked or otherwise can't be opened.
    * Added a fix for JvxRichEdit to better work with LiveSpelling
    * Fixed an occasional problem with the AutoSpell component attempting to reference the FocusControl when there was no FocusControl.
    * Added a fix to propogate LiveMenuOptions properly to RichEdit subclasses when using AutoLiveSpell components Any further questions can be sent direct to me

    With the release of Addict 3.4 a new approach has been taken with the interface between Addict and WPTools, following advice and suggestions from Julian.

    The new approach no longer requires a new component, but does allow multiple WPTools Controls to be "attached" to a single Addict control.

    The New Demo can be grabbed from:


    This new approach does require some code (unlike the component approach) but it is quite minimal. If you check out the OnCreate Event for the form in the demo you will see something akin to:

    WPAddict.AddictSpell := AddictSpell;
    WPAddict.AddictThesaurus := AddictThesaurus;

    WPAddict.AddLiveControl( WPRichText1 );

    // For WPTools: Change word delimiters
    WPWordDelimiterArray [#39] := FALSE;
    WPWordDelimiterArray ['_'] := FALSE;

    You can do as many AddLiveControl calls as needed.