Custom Buttons - Wrap Button Name

I have been using various tools in pyRevit for a while now but I just started trying to create my own. A low hanging fruit for me was creating a button that when clicked, would take users to various documentation. While that was pretty straight forward, what I am struggling with is getting the button names to wrap the text into two or three lines.

image

Thank you!

Jason

Hi,
in a bundle.yaml file like so:

title: "Coordonnées \nPartagées"

the quotes are not necessary if you don’t use special characters like \n

1 Like

unless I am doing it wrong, that did not work.

image

In the python file itself you can override the title so that it’s not necessarily the name of the pushbutton by adding the following line:

__title__ = 'BIM Improvement\nRequest'
1 Like

In YAML you can do it this way (note the blank line):

title: >-
Some Very Long

Tool Title

Real world example is here

1 Like

I was on vacation (still worked somewhat though) but I finally got it to work this morning. Thank you everyone for your input.

image

Now to get the “Request Training” button to open a new email message. I may post about that as well.

1 Like