How can I add keyboard shortcut / capture keystroke in PowerPoint in the new web based add-in office.js - powerpoint

How can I add keyboard shortcut to PowerPoint in the new web based add-in office.js, or if I can capture all keystroke send to PowerPoint so I can create my shortcut management script.

Related

How to add 'add-in' button to show pop-up window in outlook home menu?

Is there any way to add a button in home menu of outlook app?
If I click a button, I want a particular website to appear as a pop-up window.
Any comments would be appreciated!
VBA doesn't allow customizing the Fluent UI in Outlook. To customize the ribbon UI in Outlook you need to develop an add-in.
A rich customization is available for COM based add-ins, see Walkthrough: Create your first VSTO Add-in for Outlook to get started quickly. You may find the Walkthrough: Create a custom tab by using the Ribbon Designer helpful.
Another possible route is web-based add-ins. See Add-in commands for Outlook for more information. There is no so much flexibility like with COM add-ins, but the solution allows to support multiple platforms - Web, Mac OS, Windows.

Close Powerpoint Format Shape Pane from VSTO Addin

I need to programmatically close the "Format Shape" task pane on the right hand side of the Powerpoint window from a VSTO addin.
I can open and close my own "Custom" task pane.
I have read the VSTO documentation and
searched the Powerpoint Object model for properties/methods in the API, but can find no way of programatically closing Microsoft default task panes in Powerpoint.
Is this even possible?

How to Change the addin from contextual to Ribbon menu Addin in my Mac outlook

Screenshot of the Issue
In my Mac Outlook, i see the app store button inside the email, instead of Ribbon Bar.
& when i install a addin, it also shows up inside of an email, instead of Ribbon Bar.
i have another addin that is installed in the Ribbon Menu.
is there a setting i should do, to shift this addin to ribbon & make it load vertically.

Creating ribbons in Power Point for content pane add-ins

I am trying to create a content pane add-in for power point that includes ribbons with add-in commands. I have looked at the Create add-in commands tutorial as well as the examples here.
The add-ins in examples and tutorials that I'm able to find are all task pane add-ins. Is there a way to create content pane add-in with add-in commands and ribbons?
Following the tutorials, I have been able to create the commands for task pane add-ins. However, when I change the OfficeApp xsi:type from "TaskPaneApp" to "ContentApp", the add-in ribbon does not appear anymore. I believe this is because the schema I am using in VersionOverrides is not compatible with content apps.
Is there a VersionOverride schema for content pane add-ins? I have only been able to find http://schemas.microsoft.com/office/mailappversionoverrides and http://schemas.microsoft.com/office/taskpaneappversionoverrides.
Add-in Commands are currently only supported with Task Pane Add-ins.
From the documentation:
Content add-ins do not currently support add-in commands.

Addins tab missing in Outlook 2007 ribbon

I can see Addins tab is missing from Outlook 2007 ribbon on some PCs. In most cases it's there. But in some cases Addins tab is hidden so all addins buttons are not available. Is there a way to display it?
The "AddIns" tab in Office 2007 is only visible if the addin is using old features such as the CommandBars, MenuItems etc in version 2007.
For e.g. if an old COM addin createa a new commandbar with 2 buttons and adds a new menu "MyMenu" then these will be displayed in the "AddIns" tab in Office 2007. AddIns are now suppose to use the Ribbon feature.
Also, if the addin changes/repurposes some commands using the CommandBar object the repurposed commands, menu items will be added to "AddIns" tab.
use office button (most top left button) -> word button (or excel or ...) -> Add-Ins

Resources