AdvRichEditor Toolbars Hint issue

Hi,
Delphi XE7 and XE10
TMS Component Pack 8.0.2.0

I am using an AdvRichEditor and it's toolbars.
When I change a hint for a toolbar button, my change is not taken into consideration.

For example using a TAdvRichEditorEditToolBar named toolbar linked to a rich editor,
If I do
toolbar.Hints.FindContent := 'Hello';
toolbar.Hints.FindTitle := 'World';
and run the application, the hints for the find button will still show the default values.

Same problem happens either if I have a AdvOfficeHint component in my project or not.
This happens for every button on the toolbars. I found this out the hard way after spending some time to translate all the buttons for the 3 possible toolbars.

Also, the default FindTitle value is '&Find'. However, if I press alt+f, the search window doesn't popup (not sure if it's intended or not?)

Last thing, I would like to add a Ctlr+F shortcut for the find button on the toolbar but I havn't found a way to do so. Is there a simple way to accomplish this?

Thanks!


We saw this issue for properties set at designtime. Workaround: call AdvRichEditorEditToolbar.UpdateHints in the form's constructor. Next update will handle this automatically.

We have also improved shortcut handling so it we be handled automatically in the next update.

Hi,
thanks for your answer.

Not sure if you noticed but TAdvRichEditorEditingToolBar doesn't have an UpdateHints method.
TAdvRichEditorEditToolBar and TAdvRichEditorFormatToolBar both have the UpdateHints method though. I created a function to work around this while waiting for the update.

If I understand correctly, I won't need to call UpdateHints anymore so I guess it's not very important.

Bye