Customization > Extensibility Through Profiles, Stereotypes, Tag Definitions and Scripts > Script functions, objects and attributes > Script templates > Script template for menu command scripts
  
Script template for menu command scripts
This topic provides a template of the empty functions that can be used in menu command scripts.
You can copy the script template text that follows from this topic to the Script property in Modeler. If you want single line spacing, copy the following text from this topic to Notepad, and then copy the text from Notepad to Modeler.
Key:
Remarked variable names at the top of the file are available in all functions underneath except where stated.
Remarked variable names immediately above functions are only available in those functions (or subfunctions called).
The comment line '---Context change--- indicates that script is unloaded and reloaded here between function calls - this means that script scoped variables cannot be used to transfer data between functions separated by one of these comment lines, and other methods (such as helper dlls) should be used in the (fairly rare) situation that this is needed.
Option Explicit

'Studio(.DisplayOutputWindowMessage and .ClearOutputWindow)
'Projects
'ActiveProject
'Dictionary
'CurrentScript
'CurrentObject - the dictionary object right clicked
'Script.CurrentSymbol - the symbol right clicked if any

Function RunMenuUI()
RunMenuUI=False 'Do not run CommitMenu()
RunMenuUI=True 'Do run CommitMenu()
End Function

Function CommitMenu()
CommitMenu=False 'Do not commit the transaction
CommitMenu=True 'Do commit the transaction
End Function

Function AfterMenuCommit()
End Function