Open mush42 opened 6 years ago
While there are plans to move to a UIA implementation for various Office products, for the time being we will need to also continue to support the Office object model. If someone wanted to tackle this feature, a reference for the powerpoint object model can be found here: https://msdn.microsoft.com/en-gb/vba/powerpoint-vba/articles/object-model-powerpoint-vba-reference, at first glance I would suggest looking at shape.visible
to determine whether this is false
/ true
before / after the animation. The Using COM with NVDA wiki page should give some background to those who are unfamiliar with how to investigate these objects.
One of the reasons why I have relied on JFW while giving presentations is this bug. The resolution of this will also help when using braille displays. It's far easier to have material appear bullet by bullet on the display rather than needing to scroll back and forth.
I had a quick look at this and don't see an easy way to solve this. Shape.visible is always true it seems. There is info about animations in the Timeline object and it's possible to get the number of clicks for a slide and the current click index, but I don't see an easy way to put this info together and calculate what's actually visible yet.
Hello everyone,
For @bramd and anyone who might be interested in implementing this.
Note: For a complete implementation, refer to this attachment: powerpoint.zip. The attachment is the core module of a little program called "PowerTalk". This program is pretty old, it is dated back to 2003. I've ported the code to python 3, and also reformatted the code and added some minor tweaks. Note also that the module uses pywin32's win32com.client instead of comtypes to access PowerPoint's object model.
Although this appears to be a duplicate of #2907 I'd be inclined to keep this one as it seems to have a more up-to-date analysis of the situation. That said, has anyone had a look at this issue recently? It is definitely still an issue in Office 365 as at October 2018.
Currently I am using a fork of Power Talk I've modified, and it works well with my specific use case. I intend to port those features to NVDA, but I am too busy to do it.
@mush42 I face a similar issue but would not like to switch to JFW for my presentations because that interferes with the live captions feature.
Thanks.
This would be a very welcome feature, though I'm a bit disappointed to learn it takes this much effort. Still, I may look into it over summer if noone else has.
This is still an issue under:
NVDA 2023.1.0.27913 Windows 11 (64-bit) Version: 22H2, Build: 22621.1702 Office 365 (64-bit) Version: 16.0.16327.20248
and still being reported by users. I don't have a workaround, although I'd offer the following tips:
If you are presenting a slideshow, do read through it first. You can tell if there are animations like this because as you press spacebar, or enter, NVDA reads everything on the slide as soon as it is presented, then it reads nothing on subsequent presses of these keys until it moves to the next slide.
The most robust solution at this time is to remove animations. Press alt+a, s, then tab to "None" and enter.
If you want to read bullets like this: 1) In slideshow view (when presenting), once you get to a slide with animations, NVDA will read everything. 2) Press control+home to jump to the top of the slide. NVDA will read the first point. 3) Press spacebar to show the next point and then press down arrow to move NVDA to the next point. 4) Repeat 2 and 3 as needed until spacebar moves to the next slide.
(Note this works even where the text in a bullet goes over multiple lines. I just tested a paragraph which was 88 words / 442 characters long)
Steps to reproduce:
Currently, when you open the slide show window of any PowerPoint presentation, NVDA will read the content of each slide at once when you navigate to it. Although this default behavior is adequate in most situations, consider the case of animated textual content that are initially hidden, which appear when pressing the space bar. The problem is this, NVDA does not announce them when they are shown.
To give a concrete example illustrating what I mean, let's design a simple presentation:
Actual behavior:
Initially, in the slide show window, only the "Title" will be shown visually. The "Body" wont be shown unless you advance the slide show by pressing "enter" for example.
There are two problems here:
Expected behavior:
Rationale
This bug (or feature) has been nagging on me for a while. I am a university instructor who uses NVDA with PowerPoint on a regular bases to deliver his lectures on many topics related to business, ranging from Managerial Statistics to sales management.
Once in a while, I need to disentangle a complex concept by introducing its elements one by one. The most suitable format for this is having the concepts split into several bullet points, showing each concept after the preceding concepts have been well understood.
Or Consider the more common scenario of having some discussion questions, you don't want your students to be bombarded by five or more questions at once, so initially you show them the first question, and after discussing it exhaustively you can then move on to the next question and so on...
I know that it is possible to do this using powerpoint without relying so much on NVDA's announcements, but wouldn't it be helpful and much easier to have NVDA announce updates as you advance the presentation. This way you will be in the track with sighted people, and for me, I will be always on the flow by eliminating commonly occuring absentmindedness.
Additional Remarks:
I think JFW has this feature for along time, actually, the last time I've used JFW was 6 years ago, and PowerPoint slide shows were working mind bogglingly well then.