0
votes

I have an office 365 addin, whose taskpane/sidebar takes the same name as the addin. How can I change it? ScriptLab does it. when we click on Code on scritlab ribbon, the taskpane has the name as Code and when we click on Run, another taskpane is opened and it has the name as Run

enter image description here

enter image description here

1
The add-on title comes from the manifest DisplayName element and cannot be changed dynamically. I didn't put this as the answer because have no idea what ScriptLab's guys have access to and how they've done it. Maybe you'll get lucky and somebody from Microsoft can provide you with the answer.Slava Ivanov
That is my understanding as well. But since scriptlab has done it, just wondering if there is actually a way to do it. Anyways, thanks for the reply.OnePlusOne

1 Answers

1
votes

Script Lab is an open source project that has no special access to anything in Office. I would start by inspecting it's manifest: script-lab-react-prod.xml.

The <Action> element of type ShowTaskpane can have a <Title> element that sets a title. See Action / Title.