Icon paths get lost when exporting Author mode actions
Posted: Tue Apr 15, 2025 2:34 pm
Hi,
We have created a framework extension that inherits a large number of custom Author mode actions from its base framework (ediarum.MINUTES.edit). For easier maintenance and development of the Author mode actions we have exported them to separate, external XML files. The actions still work as before but all the icons are gone, both from toolbar entries and from inline actions. The icons are taken from the base framework like so:
This might be related to "Problems with author actions in framework extension script".
EDIT
Copying the icons folder to the framework extension and adjusting the icon path like so fixes the issue:
Kind regards,
Frank
We have created a framework extension that inherits a large number of custom Author mode actions from its base framework (ediarum.MINUTES.edit). For easier maintenance and development of the Author mode actions we have exported them to separate, external XML files. The actions still work as before but all the icons are gone, both from toolbar entries and from inline actions. The icons are taken from the base framework like so:
Code: Select all
<a:smallIconPath href="${baseFramework}/icons/delete_16.png"/>
EDIT
Copying the icons folder to the framework extension and adjusting the icon path like so fixes the issue:
Code: Select all
<a:smallIconPath href="${framework}/icons/delete_16.png"/>
Frank