Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
Could not find this information anywhere, and thought I'd share the solution.
Basically, you will create new aliases for the FileSave, FileSaveAs and FileClose commands in Arbortext. There is a default commands.acl file delivered with Arbortext, and you will create a custom version that will override only three commands. Note that if the completeness check finds errors, it will leave the log open for the user to review even after the file has closed.
# # Defines simple command aliases (macros) for actions assigned to keyboard # shortcuts or menus. # 08/04/2017 - modified so that completeness check runs before a save or close. alias FileSave { check_completeness(); save } alias FileSaveAs { save_as; check_completeness() } alias FileClose { check_completeness(); if (!window_get(0, 'embedded')) { file_close() } }
This is good of you to share! Thank you for adding to community.