7,180 questions
0
votes
1
answer
52
views
Assign object to shape text that is currently selected
Powerpoint 365 VBA
Set sld = Application.ActiveWindow.View.Slide
Set Shp = sld.Shapes(2)
If Shp.TextFrame2.HasText Then
Txt = Replace(Shp.TextFrame2.TextRange.Text, " ", "+&...
0
votes
1
answer
48
views
How do I hide navigation buttons for a main slide in a series of PowerPoint slides until the viewer has viewed the all of the corresponding slides?
Short Summary: On the main slide (slide20), I want the user to click through all the examples - any order - (slides 21-24). I have navigation buttons on slide 20 that I want to stay hidden until the ...
1
vote
0
answers
78
views
Docling PPTX Image Extraction Issue - Missing Embedded Images from Placeholders
> '''
> import logging
> import time
> from pathlib import Path
> from docling_core.types.doc import ImageRefMode, PictureItem, TableItem
> ...
0
votes
0
answers
54
views
PPT Presentations.Open changed from Version 2508 (Build 19127.20192)
I have a problem with calling PowerPoint's Presentation.Open method.
It seems to me that the Untitled parameter to
Presentation.Open
has changed.
When opening the same file twice (once with Untitled:=...
0
votes
1
answer
45
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
1
answer
86
views
Is there any way or method to convert pdf file in powerpoint file using core not api in Swift MacOS Cocoa?
I have tried a way but after generating pptx it is not opening may be some configuration xml are missing. This code converted pdf to pptx but that file is not open say some error "Sorry are cant ...
1
vote
1
answer
92
views
Python Win32Com: How do I open a password-protected Powerpoint?
I tried to use the below code to open a password-protected ppt, but I got error:
TypeError: Open() got an unexpected keyword argument 'Password'
Is it possible to use Win32Com to open a password-...
0
votes
0
answers
32
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
93
views
Detecting Page Number TextBox in PowerPoint in VBA
I am trying to make a macro to update the page count of visible pages.
I have a code like this:
Sub SetVisiblePageNumers()
Dim pageNumber As Integer
Dim pp As String
pageNumber = 1
...
0
votes
0
answers
84
views
Create PPT from Excel data using VBA Macros, dynamically allocating contents to each slide
I have an excel data, I want to generate a PPT with the contents in multiple slides dynamically adjusting based on the content size, rows per slides and column width.
Sub ExportToPPT()
Dim pptApp ...
0
votes
0
answers
63
views
Thinkcell UpdateChart "Object doesn't support this property"
I'm trying to run a macro from an Excel book to automate a chart update in powerpoint. It is going to reseat the source range of a chart I have created.
I am doing this to then generate the same chart ...
0
votes
0
answers
64
views
Getting and setting PowerPoint indent settings
I'm trying to write two routines, one that picks up a paragraphs bullet settings including (especially indenting) but am getting nowhere picking up the settings. I tried these two variations but I ...
0
votes
0
answers
78
views
Set shape's language in PowerPoint 365 for MacOS
I want to set English US as default language for all shapes on my slides.
It seems the object model for PPT has changed over the years because none of the >5 years old macros here 1, 2 work.
I get ...
1
vote
2
answers
49
views
Powerpoint VBA - random phrases in a text box - Error 424 Object required
This is an issue with Powerpoint VBA.
I want to have some random phrases to show up in a powerpoint presentation.
I want the phrases to show in a text box inside a slide in the presentation
I have a ...
0
votes
0
answers
47
views
Get nested element using UIAutomation ElementfromCursor() failed, but with Accessibility Insights succeeded
I'm trying to use UIAutomationClient library in .NET to get the element under the mouse cursor using ElementFromPoint(). This works in general, but when I click any items on PowerPoint slides, I can ...