Share via

powerpoint 2019 vba - how can I display the animation panel in code?

Anonymous
2021-06-23T04:46:48+00:00

i have a macro that setups up the view of their presentation for a user as they desire...

for example , they want to always see the normal view with consistent slide pane and notes pane sise

the macro code for that part is

With ActiveWindow

 .ViewType = ppViewNormal

 .SplitHorizontal = 12

 .SplitVertical = 65

End With

however, the user want to also see the "animations pane" and set it's width to a particlar size...

is there some vba code that can accomplish this?

thanks in advance

Microsoft 365 and Office | PowerPoint | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

  1. John Korchok 231.5K Reputation points Volunteer Moderator
    2021-06-23T17:58:11+00:00

    For control of task panes, you need to write a COM or Office.js add-in. VBA is generally not being expanded to cover new features of Office like task panes or the backstage.

    1 person found this answer helpful.
    0 comments No comments

Answer accepted by question author

  1. Jim G 134K Reputation points MVP Volunteer Moderator
    2021-06-23T15:16:43+00:00

    Hi Neal,

    Unfortunately, the side panes are not able to be displayed via code. You can control every aspect of the controls on the panes, but there's no way to display the pane itself. You would have to re-create the side panel as a userform if you want to mimic its functionality.

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful