Message 1 of 4
how do i save tooltip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have this code
Public Sub Addtoolstips()
Dim a As Application
Set a = ThisApplication
Dim MCDDefaultUser As MacroControlDefinition
Set MCDDefaultUser = a.CommandManager.ControlDefinitions.Item("Macro:TimeTable.TimeTable")
'MsgBox (MCDDefaultUser.ProgressiveToolTip.ExpandedDescription)
MCDDefaultUser.ProgressiveToolTip.ExpandedDescription = "Vil åbne den nyeste tidsplan som er tilgængelig dog max gå en uge tilbage"
'MCDDefaultUser.ProgressiveToolTip.Image = "C:\Files\YourImage.jpg"
Set MCDDefaultUser = a.CommandManager.ControlDefinitions.Item("Macro:RefreshColour.RefreshColour")
MCDDefaultUser.ProgressiveToolTip.ExpandedDescription = "Text 1"
' PDF Draft
Set MCDDefaultUser = a.CommandManager.ControlDefinitions.Item("Macro:PDFDraft.PDFDraft")
MCDDefaultUser.ProgressiveToolTip.ExpandedDescription = "text 2"
'
End Sub
the code work .. I can see tooltips I want after it have been run .... but there are not there when inventor is restarted
is there a why to save it ?... and what file is this information save in ?