Apr 22, 2009

PPT, slide 相关

我的PPT模板,简约风格,部分带校徽

Draw 栏几何形状的填充色,线条颜色等等好像不能存入模板,但是可以设置一次,作为默认,在设置对话框选中 default for new objects;几何形状可以控制透明度,可以设置透明度大一点,这样几何形状可以在顶层,不影响底层物体
Save As 选项可以选择保存字体在PPT内

在 slide master 里可以设置 line space, font size

去掉 PPT 的NOTE
Open your presentation
Click "Tools", "Macro", "Macros…" and type in removeNotes.
Click "Create".
Paste the following into the window that appears, just before the text "End Sub"

Dim objSlide As Slide
Dim objShape As Shape

For Each objSlide In ActivePresentation.Slides
    For Each objShape In objSlide.NotesPage.Shapes
        If objShape.TextFrame.HasText Then
            objShape.TextFrame.TextRange = ""
        End If
    Next
Next

Close the script window.
Click "Tools", "Macro", "Macros…" and double click removeNotes.

0 comments: