0
我試圖使用R
包ReporteRS
創建演示文稿。無序列表似乎只服從ReporteRS
設置的有限選項。無論如何要讓ReporteRS
服從模板中的默認值?ReporteRS不服從模板項目符號
我試圖使用R
包ReporteRS
創建演示文稿。無序列表似乎只服從ReporteRS
設置的有限選項。無論如何要讓ReporteRS
服從模板中的默認值?ReporteRS不服從模板項目符號
對此的解決方案雖然不太優雅,但可以使用VBA
或VBScript
來重置幻燈片。以下是我使用VBScript
重置所有幻燈片的解決方案。簡單地將文件拖放到以.vbs
擴展名保存的腳本上。
Dim inputFile
Dim objPresentation
inputFile = WScript.Arguments(0)
Set objPPT = CreateObject("PowerPoint.Application")
objPPT.Visible = True
objPPT.Presentations.Open inputFile
Set objPresentation = objPPT.ActivePresentation
slideCount = objPresentation.Slides.Count
For i = 1 to slideCount
objPresentation.Slides(i).Select
objPresentation.Application.CommandBars.ExecuteMso("SlideReset")
Next
objPresentation.Save
objPPT.Quit