I didn't write this, it's from a friend. Toggles Max 2010's ribbon tooltips on/off.
Seems you have to toggle it at least once to get it started, then on the second hit it will turn off most of the tooltips (except for the main one).
macroScript RibbonTooltipsToggle
category:"Modeling: Graphite Tools"
toolTip:"Toggle the Ribbon Tooltips On/Off"
buttonText:"Tooltips"
(
global __showRibbonTooltips__
on execute do
(
local manager = dotnetclass "Autodesk.Windows.ComponentManager"
if __showRibbonTooltips__ == false then
(
__showRibbonTooltips__ = manager.ToolTipSettings.IsEnabled = true
)
else
(
__showRibbonTooltips__ = manager.ToolTipSettings.IsEnabled = false
)
)
on isChecked do
(
__showRibbonTooltips__
)
)
Replies
Or maybe just make a little floating UI I can call up that lets me check on what I do and do not want visible...
Ideally it would make sense to put this stuff in the right click menu for the icon toolbar, but sadly I think that's locked down, maybe the quad menu...
I get tired of those stupid things popping up.