I am trying to change what the Call button on the Contact Card does with VBA or an add-in. I want to start an application when the call button is clicked.
Anyone knows if that is possible?
Here is the screen shot of the Contact Card UI that I want to change.
http://support.microsoft.com/library/images/support/kbgraphics/Public/en-us/office/981022_ss01.png
Related
I previously worked on creating VSTO and Office addins for MS Outlook, Excel and Word using C# VS. Now I have a plan to build one for MS teams. So, I checked online and found the documentation.
But I didn't found that how I can add custom UI elements (text, buttons etc.) inside a chat window. For example: Teams suggested replies shows suggestions inside button above the chat textbox.
Do anybody have an idea that how I can achieve this one?
you might want to start with these docs:
build a command-response bot that you can customize the messages in chat window to either text or adaptive cards (on which you can have buttons).
and notification bot doc which has more information on customizing adaptive card for Teams apps.
there are also docs on message extension on the same doc site, you can take a look to decide which is what you want to build.
In outlook mail , mail read page and calendar page , i want to add a custom button using outlook add-ins manifest file
if i install outlook add-ins this button will be show on that places
Any extension point is there for custom button add , I want trigger some function in outlook add-ins after click that custom buttons
it is possible or not , The outlook mail support for add custom button using outlook add-ins
please suggest me
Currently the feature you requested, is not a part of the product. We track Outlook add-in feature requests on our Tech Community Page. Please submit your request there and choose the appropriate label(s). Feature requests on Tech Community are considered, when we go through our planning process.
i am using OAuthPromptSettings to display a simple button. but now i want to display an image above and then display the "Sign in " button on MS Teams.
I have a simple "Sign in" button.
I do not know how to display an image along with this button.
If you are using predefined sign-in button from Microsoft Auth, it's not possible for us to add the image directly on it.
But if you are using your own custom button then I think you can show a image on it.
I'm working on an Outlook 365 Add-in. I have a working Manifest XML that shows an icon with the icon responding to a function click. How would I go about adding a checkbox to the compose new email ribbon to the right of the button similar to the example below? I know how to do this VSTO, but looking how to do this using the Office 365 Add-in Javascript implementation. Thanks for any help!
The developer wants to create a ribbon button with checkboxes on it. Unfortunately - this is not possible through office-js manifests.
You can check the add-in commands (ribbon buttons for office-js) documentation from here: https://github.com/OfficeDev/office-js-docs-pr/blob/master/docs/design/add-in-commands.md
From the documentation:
Control types
Simple buttons - trigger specific actions.
Menus - simple menu
dropdown with buttons that trigger actions.
That capability doesn't exist today in office-js framework.
I want to side load Outlook add-in to Outlook main window. Just like Nutshell add-in in below screen shot. I looked at the ExtensionPoint help, but there is no extension points available which can show add-in like below. Please let me know how I can achieve this.
https://learn.microsoft.com/en-us/office/dev/add-ins/reference/manifest/extensionpoint
MessageReadCommandSurface extension point will provide you with this view. As you may notice, to invoke the "Nutshell" add-on the app's icon is above "read message" view.