Arbortext IsoDraw > Macro Language Reference > Object Data Types > Application Object - User Interface Preferences > app.showToolTips
  
app.showToolTips
Returns and sets the showToolTips property as boolean. This property corresponds to the Show tooltips option under Tooltips on the Redraw preferences panel.
true
Causes tooltip text to appear when the pointer hovers over a tool button or symbol.
* 
app.showToolTips must be true before the app.showObjectTips property can be set true. Also, setting app.showObjectTips=true while app.showToolTips=falsewill automatically set app.showToolTips to true.
If a macro changes the state of app.showToolTips, the change is saved as the new Show tooltips preference setting.
Recording a macro that selects or clears the Show tooltips option adds an app.showToolTips = {true|false} statement to the macro.
app.showToolTips = true

#Note that:
app.showObjectTips = true
#Will also set:
app.showToolTips = true