For anyone curious about how I knew what script the add-in was running, here's how you can find out for yourself:
To see what a particular menu item is doing:
- Go to View > Customize > Menus and Toolbars menu.
- Cllick the Change... button at the top and select the JMP Add-In radio button then select com.jmp.columnnames in the drop down.
- Click OK
The menu editor will show the items this Add-In has defined. In this case, it's under the Add-Ins > Column Names menu.
- Expand Add-Ins > Column Names in the tree on the left side
- Select the Move Up menu item.
On the right-side, you see that the Action is to run JSL from a file "$ADDIN_HOME(com.jmp.columnnames)\hoist.jsl".
To see the JSL source code:
- Go to View > Add-Ins... and select the add-in; "Column Names Utilities" in this case.
- Click the link next to Home Folder and the folder containing the add-in will be opened.
In my case it's: C:\Users\john\AppData\Local\SAS\JMP\Addins\com.jmp.columnnames
From there you can see the jsl (and other goodies) from the add-in.
John