RE: spell check in v15
There is a setter for the object property, "auto-spellcheck":
OBJECT SET AUTO SPELLCHECK
http://doc.4d.com/4Dv15R4/4D/15-R4/OBJECT-SET-AUTO-SPELLCHECK.301-2825751.en.html
However the behavior of the auto-spellcheck changed in v14. The "auto-spellcheck" feature no longer displays a dialog but instead will constantly check the object and underline misspelled words in red, allowing the user to use the contextual menu to correct the words.
This new behavior is documented in the v14 Upgrade Manual on Pages 84-89: ftp://ftp-public.4d.fr/Documents/Products_Documentation/LastVersions/Line_14/VIntl/PDF_Format/4D_v14_Upgrade.pdf
-Tim
**********************************************************************
4D Internet Users Group (4D iNUG)
FAQ: http://lists.4d.com/faqnug.html
Archive: http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx
**********************************************************************
Thanks that's got it I wish I did not have to write code for every object too bad there was not a setter for this
Regards
Chuck
Sent from my iPhone
> On Aug 26, 2016, at 2:05 PM, Timothy Penner wrote:
>
> Hi Chuck,
>
> Take a look at the following commands that may help you:
>
> SPELL CHECKING
> http://doc.4d.com/4Dv15R4/4D/15-R4/SPELL-CHECKING.301-2824711.en.html
>
> This can be used in a form object method like this (I put it behind a variable):
>
> Case of
> : (Form Event=On Losing Focus)
> SPELL CHECKING
> End case
>
> Then tabbing out of the variable triggers the spell check.
>
> SPELL CHECK TEXT
> http://doc.4d.com/4Dv15R4/4D/15-R4/SPELL-CHECK-TEXT.301-2824706.en.html
>
> This could be used programmatically instead of leaving it up to the user.
>
> Kind Regards,
>
> Tim PENNER
> **********************************************************************
> 4D Internet Users Group (4D iNUG)
> FAQ: http://lists.4d.com/faqnug.html
> Archive: http://lists.4d.com/archives.html
> Options: http://lists.4d.com/mailman/options/4d_tech
> Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx
> **********************************************************************
**********************************************************************
4D Internet Users Group (4D iNUG)
FAQ: http://lists.4d.com/faqnug.html
Archive: http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx
**********************************************************************
Hi Chuck,
Take a look at the following commands that may help you:
SPELL CHECKING
http://doc.4d.com/4Dv15R4/4D/15-R4/SPELL-CHECKING.301-2824711.en.html
This can be used in a form object method like this (I put it behind a variable):
Case of
: (Form Event=On Losing Focus)
SPELL CHECKING
End case
Then tabbing out of the variable triggers the spell check.
SPELL CHECK TEXT
http://doc.4d.com/4Dv15R4/4D/15-R4/SPELL-CHECK-TEXT.301-2824706.en.html
This could be used programmatically instead of leaving it up to the user.
Kind Regards,
Tim PENNER
**********************************************************************
4D Internet Users Group (4D iNUG)
FAQ: http://lists.4d.com/faqnug.html
Archive: http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx
**********************************************************************