How to put my own DXL scripts into the DOORS DXL library
Accepted answer
To put your own DXL scripts into the DOORS DXL library with title and description, you will need to do the following
1) Put the DXL scripts into <DOORS_HOME>\lib\dxl\addins\user
For example, C:\Program Files\IBM\Rational\DOORS\9.6.1.6\lib\dxl\addins\user
2) Add some comments into the DXL scripts
Let's say you have a DXL script called xyz.dxl
Open xyz.dxl and then put "program title" and "program description" in front of your DXL script
For example,
// program title
/* program description */
infoBox "Hello world"
You can have multiple lines in the program description.
// program title
/*
program description line 1
program description line 2
program description line 3
*/
infoBox "Hello world"