创建幻灯片时转到PowerPoint中的特定幻灯片
这可能很容易实现,但是我不知道如何看透它。 当我使用MS Powerpoint创建演示文稿时,我必须从幻灯片到幻灯片(例如从幻灯片3到幻灯片45)。到目前为止,我已经使用幻灯片排序器达到了所需的幻灯片。 对于类似的要求,MS Word也Go to page可以选择使用Ctrl+G键盘快捷键来调用。 在MS PowerPoint中编辑幻灯片时,是否有类似的快捷方式可转到特定幻灯片? 更新 从下面的答案和互联网搜索中,我了解到,在“ 编辑”模式下,无法转到特定的幻灯片(就像在Word中转到一页一样)。 我编写了以下宏来实现此功能。 'Go to a particular slide when in edit mode Sub go_to_slide() Dim S As Integer Dim total_slides As Integer total_slides = ActivePresentation.Slides.Count S = InputBox("Enter slide number", "Go To Slide") If (S <= 0) Then MsgBox ("Enter …