101 questions
1
vote
1
answer
54
views
Office 365 PowerPoint add-in not showing up online, but works on desktop [closed]
We built Office Add-Ins for Outlook, Word and PowerPoint. They mostly look and work OK on the desktop and online. We load them via Admin Portal => "Integrated apps". This works for ...
1
vote
1
answer
114
views
How to hide / show slides?
I am trying to add a sideload add-in doing some automation in powerpoint.
I couldn't find a command or property in the powerpoint office add-in to hide/show slides.
Does anyone know how to hide / show ...
0
votes
1
answer
52
views
PowerPoint VBA - Display the Icons Task Pane on macOS
As part of a customised VBA-based add-in, I've been trying to display the Icons task pane which idMSO is "IconInsertFromFile" (button type) but which doesn't work on macOS, although it runs ...
0
votes
0
answers
38
views
Last Save time property is not updated when PowerPoint file is saved in SharePoint online
we need to know if an opened presentation is edited by a user in PowerPoint. We try todo this by remembering the initial Last save time when the presentation is opened and compare it with the current ...
1
vote
1
answer
70
views
Unable to use open extension on drive items
I am trying to make use of the following Microsoft Graph API endpoint to add an extension to a .pptx file:
POST https://graph.microsoft.com/v1.0/drives/{drive-id}/items/{item-id}/extensions
Content-...
0
votes
0
answers
15
views
Is there a way to both get the current XML of a Powerpoint and load an edited version of the XML into the PowerPoint?
I am creating a Powerpoint Taskpane Add-in and need a way to read the current XML of the entire Powerpoint when the taskpane is open, then I need a way to be able to load in XML.
I'm aware there's the ...
0
votes
0
answers
28
views
textRange.Words not found? Visual Studio js addin
I am making an addin using visual studio powerpoint web app addin template.
Below code Im attempting to set the first 3 words to bold. A breakpoint before this shows that the "words" member ...
0
votes
0
answers
61
views
Load sync error while using PowerPoint Javascript API
I am trying to add a basic textbox/Geometric shapes into the PowerPoint on click of a button (using Microsoft Add-ins) . I am going through this document provided by Microsoft - Text in shapes.
It ...
0
votes
0
answers
34
views
Accessing and Manipulating Metadata in PowerPoint with Office-JS
I’ve been exploring ways to access and manipulate metadata in PowerPoint, particularly Custom Properties. While I’ve come across the option to use Tags, they don’t seem to integrate well with Office-...
1
vote
0
answers
66
views
Microsoft PowerPoint API returns empty placeholder text after recent update
I’m using the Microsoft PowerPoint JavaScript API to generate slides from slide master, where the shapes are created within layouts using GeometricShape. A placeholder text is assigned to each shape ...
2
votes
1
answer
91
views
Getting the font of powerpoint slides using Office JS
I am working on creating a taskPane integration for microsoft powerPoint web and I am trying to get the font of each slide. This is the code I am working with
async function validateSlideDeck() {
...
0
votes
2
answers
64
views
Change the content of a powerpoint using MS add-ins
I am trying to open a presentation in MS- PowerPoint. I have created a add-In for it. It has a button which will retrieve the file on click of a button from s3 and then it will upload the file into ...
0
votes
1
answer
76
views
How to add PowerPoint's ShapeFill Button to a custom Ribbon in a C# PowerPoint AddIn?
I am developing a PowerPoint AddIn using C#. In PowerPoint's default ribbon, the ShapeFill button is implemented as a split button—where the left side functions as a regular button, and the right side ...
1
vote
0
answers
30
views
How to store PowerPoint Shape in OpenXML?
I have created a VSTO AddIn in C# - with a ribbon and a taskpane. My goal is, to store some manual created shapes in the POTX which I can read out from my AddIn and provide to be inserted in a slide.
...
0
votes
1
answer
34
views
can i get table cell text in Powerpoint add-in
I am working on an PowerPoint add-in using office.js api and I am using React+Typescript. I have a translation api and I translate text from selected shapes and it's working well but I want to ...