2010. 8. 26. 13:26
How to proceed
Once the slideshow done, go to Tools > Macro > Visual Basic Editor.In the opened window, select Insert > Module and copy the below text in the blank page:
Sub AddProgressBar()
On Error Resume Next
With ActivePresentation
For X = 1 To .Slides.Count
.Slides(X).Shapes("PB").Delete
Set s = .Slides(X).Shapes.AddShape(msoShapeRectangle, 0, .PageSetup.SlideHeight - 12,
X * .PageSetup.SlideWidth / .Slides.Count, 12)
s.Fill.ForeColor.RGB = RGB(127, 0, 0)
s.Name = "PB"
Next X:
End With
End Sub
Then go to File > Close > Return to Microsoft PowerPoint .
In the displayed page of Microsoft Powerpoint, go to:
Tools > Macro >Macros, then select AddProcessBar and select Execute to achieve this process.
출저 - http://kwangmin.egloos.com/5337340
'Tip' 카테고리의 다른 글
노트북을 무선 AP(WI-FI)로 만들기. (0) | 2014.10.27 |
---|---|
[Tool]이클립스 자동빌드가 안될때 조치 방법 (7) | 2013.08.06 |
[HTML]테이블 TD 텍스트 길이 고정하기 (1) | 2013.04.08 |
[Tool]이클립스 Subversion(svn) checkout시 한글 깨짐 현상. 언어 인코딩 설정. (0) | 2011.05.12 |