Dim app As Autodesk.Revit.Application = commandData.Application
Dim bobRibbon As RibbonPanel = app.CreateRibbonPanel("bob")
Dim rItem As RibbonItem = bobRibbon.Items(0)
rItem.ToolTip = "Did you mean this tool tip?"
jvj
This property of RibbonItem now exists, it's called LongDescription:
https://www.revitapidocs.com/2020/b5d651b3-136b-a0b1-fe3c-d37c55196e87.htm
Hi Paolo!
Thanks for your help, i wanted you to ask something, do you know where I can find a manual to add some new Content to this revit ribbon tooltip? should I modify something in revit files? some .dll file?
I would like to add some intruction for the naming of Fill patterns for example, so i can give instructions to all the revit user of the office and get some unifided naming.
Thanks in advance
This has been answered here.
https://forums.autodesk.com/t5/revit-api-forum/builtin-command-custom-tooltip-popup/td-p/9259471
Give it a try and let me kmow!
Thanks 🙂 i will try it
Hi Paolo,😀
I have tried with the link you sent me and it seems that all the code is written and I should only change the part that refers to the button in particular I want to modify the tooltips....
The question is that I do not know what to do with this code, so far I have only created APIs that are loaded with a .addin file but in this case I do not know how to do it.
Do you know if there is any manual on how to do it?
Thank you very much in advance
You have to create a plugin for Revit and then put that code there. If you've never done it before, it's not really simple... you need to know a bit about C#, Visual Studio and Revit's API to do it.
I suggest Konrads tutorials which helped me a lot to get started:
https://archi-lab.net/building-revit-plug-ins-with-visual-studio-part-one/
Good luck and may the force be with you.