Nrao,
A little more details are needed about the type of "button" that needs to trigger the additional information. Is this a dialog element or a tool bar button that launches the dialog (e.g. ID symbol)?
The toolbar button case can be addressed by using menuscript (see the Automation T-docs) to define a "/PRE" a qualifier to the button action where the /PRE could simply be the url of a document (and the o.s. file extension handling would do the rest - the additional window would be the web browser in the case of a url or notepad for .txt file etc.)
Using the .txt file would allow copy / paste from the extra "window (notepad)" to the NX dialog.
(The example is from NX10 but this should work from at least NX 6 onward)
HTH, Joe
Here is the drafting_modify.men file which goes in the %UGII_SITE_DIR%\startup directory.
The purpose of this file is to customize a drafting application button.
This directs NX to load an additional .men file (modify.men) when the Drafting application (which owns the button that we wish to modify) is started.
Code:
VERSION 120
EDIT UG_GATEWAY_MAIN_MENUBAR
MODIFY
APPLICATION_BUTTON UG_APP_DRAFTING
MENU_FILES modify.men
END_OF_MODIFY
Here is the modify.men file which goes in the %UGII_SITE_DIR%\application directory.
This file define the additional button action for the ID Symbol button that launches the text file in the additional window".
Code:
VERSION 120
EDIT UG_GATEWAY_MAIN_MENUBAR
MODIFY
BUTTON UG_DRAFT_CRE_ID_SYMBOLS
ACTIONS /PRE "start \"Custom Window\" d:\ug\v10\site\application\test.txt"
ACTIONS STANDARD
END_OF_MODIFY
Example Image