Difference between revisions of "toolpalette.enable"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
toolpalette.'''enable''' is a function that is part of the [[:Category:toolpalette|toolpalette]]. | toolpalette.'''enable''' is a function that is part of the [[:Category:toolpalette|toolpalette]]. | ||
− | This routine enables or disables a menu item in the tool palette. | + | This routine enables or disables a menu item in the tool palette.<br /> |
− | This routine returns true if the menu item was properly enabled or disabled. It returns nil if no tool palette has been previously registered by the script app or if the toolname / itemname pair cannot be found in the registered menu items. | + | This routine returns true if the menu item was properly enabled or disabled. |
+ | It returns nil if no tool palette has been previously registered by the script app or if the toolname / itemname pair cannot be found in the registered menu items. | ||
{{Since|3.0}} | {{Since|3.0}} |
Revision as of 22:58, 24 May 2011
toolpalette.enable is a function that is part of the toolpalette.
This routine enables or disables a menu item in the tool palette.
This routine returns true if the menu item was properly enabled or disabled.
It returns nil if no tool palette has been previously registered by the script app or if the toolname / itemname pair cannot be found in the registered menu items.
This has been introduced in TI-Nspire OS 3.0 (Changes).
Syntax
toolpalette.enable(toolname, itemname, state)
Parameter | Type | Description |
---|---|---|
toolname | string | name of the top level toolbox |
itemname | string | name of the menu item |
state | boolean | value that enables the menu item if true or disables the menu item if false. |
Example
toolpalette.enable("theToolpalette", "firstMenuItem", true)
See also