cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Use World Cup data to build models, explore spatial relationships, and create informative visualizations in JMP. Register. July 17, 2 pm US Eastern Time.
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
hogi
Level XIII

enable/disable toolbar icons

Toolbar icons appear gray if the window has the wrong type:

hogi_0-1668709808567.png vs. hogi_1-1668709841587.png

 

how can I control this behavior for my own toolbars?

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
hogi
Level XIII

Re: enable/disable toolbar icons

If a Toolbar Icon is linked to a Built-In command, it automatically gets the enable/disable functionality related to the respective command.
... even if the user chooses his own icon:

2023-04-21_23-23-17.gif

The easiest way to get a "dynamic" Icon into a user-defined toolbar
Got to View/Cutomize/Menus and Toolbars, and rightClick copy the original function and paste it into the user-defined Toolbar.

 

To get such Shortcut Icons into user-defined Add-Ins, one has to follow these steps shared by @Jeff_Perkinson 

 

Alternatively, one can edit the addin.jmpcust file manually.
The syntax is type="builtin":

<jm:command>
 <jm:name>TEXT TO COLUMNS</jm:name>
  <jm:caption>Text to Columns…</jm:caption>
  <jm:action type="builtin">COLS:UTILITIES:TEXT TO COLUMNS</jm:action>
 </jm:command>

View solution in original post

2 REPLIES 2
hogi
Level XIII

Re: enable/disable toolbar icons

hogi
Level XIII

Re: enable/disable toolbar icons

If a Toolbar Icon is linked to a Built-In command, it automatically gets the enable/disable functionality related to the respective command.
... even if the user chooses his own icon:

2023-04-21_23-23-17.gif

The easiest way to get a "dynamic" Icon into a user-defined toolbar
Got to View/Cutomize/Menus and Toolbars, and rightClick copy the original function and paste it into the user-defined Toolbar.

 

To get such Shortcut Icons into user-defined Add-Ins, one has to follow these steps shared by @Jeff_Perkinson 

 

Alternatively, one can edit the addin.jmpcust file manually.
The syntax is type="builtin":

<jm:command>
 <jm:name>TEXT TO COLUMNS</jm:name>
  <jm:caption>Text to Columns…</jm:caption>
  <jm:action type="builtin">COLS:UTILITIES:TEXT TO COLUMNS</jm:action>
 </jm:command>

Recommended Articles