Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

C++-API: How to set a Text in the History when calling a plugin

Explorer ,
Jan 25, 2024 Jan 25, 2024

Hi

with my plugin, I'm doing some modification on the Artwork. However, there is no specific Name in the History displayed. How can I set a name for the change? (eg. Undo My Plugin)
Thanks

TOPICS
SDK
168
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Explorer , Jan 30, 2024 Jan 30, 2024

There is SetUndoRedoCmdTextUS method in AIUndoSuite.

 

From documentation:

 

AIAPI AIErr(* AIUndoSuite::SetUndoRedoCmdTextUS)(const ai::UnicodeString &undoText, const ai::UnicodeString &redoText, const ai::UnicodeString &cmdText)

 

Specifies the localizable text(Unicode String) for Undo, Redo, and History Panel menu items. Illustrator uses these strings for the menus and history panel as needed.

Note: Illustrator automatically handles the undo mechanism for plug-in filters. Filters should not use this

...
Translate
Adobe
Explorer ,
Jan 30, 2024 Jan 30, 2024

There is SetUndoRedoCmdTextUS method in AIUndoSuite.

 

From documentation:

 

AIAPI AIErr(* AIUndoSuite::SetUndoRedoCmdTextUS)(const ai::UnicodeString &undoText, const ai::UnicodeString &redoText, const ai::UnicodeString &cmdText)

 

Specifies the localizable text(Unicode String) for Undo, Redo, and History Panel menu items. Illustrator uses these strings for the menus and history panel as needed.

Note: Illustrator automatically handles the undo mechanism for plug-in filters. Filters should not use this function.

Parameters:

undoText - Unicode String text for the Undo menu.

redoText - Unicode String text for the Redo menu.

cmdText - Unicode String text for history panel

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 31, 2024 Jan 31, 2024
LATEST

Thanks, that helped. I missed the Undo-Suite when looking at the list of Suites

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines