how to get a pop up window in UG NX, when i click an icon
how to get a pop up window in UG NX, when i click an icon
(OP)
Hi All,
I need an extended pop up window in UG NX, when I click a certain icon, so that additional window contains all the standards or sub standards that can be refered instantly, this saves lot of opening time on other files and documents for reference. Let me know the user interface for this type.
Thanksyou.
I need an extended pop up window in UG NX, when I click a certain icon, so that additional window contains all the standards or sub standards that can be refered instantly, this saves lot of opening time on other files and documents for reference. Let me know the user interface for this type.
Thanksyou.





RE: how to get a pop up window in UG NX, when i click an icon
Once it's created you then use Customize to assign a different action to each 'Item' in the list.
John R. Baker, P.E.
Product 'Evangelist'
Product Engineering Software
Siemens PLM Software Inc.
Digital Factory
Cypress, CA
Siemens PLM:
UG/NX Museum:
To an Engineer, the glass is twice as big as it needs to be.
RE: how to get a pop up window in UG NX, when i click an icon
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 --> NX_Menuscript
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 --> NX_menuscript
Example Image
RE: how to get a pop up window in UG NX, when i click an icon
John R. Baker, P.E.
Product 'Evangelist'
Product Engineering Software
Siemens PLM Software Inc.
Digital Factory
Cypress, CA
Siemens PLM:
UG/NX Museum:
To an Engineer, the glass is twice as big as it needs to be.