C
cedarmoose
I have this macro
Sub note_page_title()
'
' Macro recorded 12/11/2009 by Admin
'
ActiveWindow.ViewType = ppViewNotesPage
ActiveWindow.Selection.SlideRange.Shapes("Rectangle 3").Select
ActiveWindow.Selection.ShapeRange.TextFrame.TextRange.Select
ActiveWindow.Selection.ShapeRange.TextFrame.TextRange.Characters(Start:=1,
Length:=0).Select
With ActiveWindow.Selection.TextRange
.Text = "PS 01 - 01" + Chr$(CharCode:=13)
With .Font
.Name = "Calibri"
.Size = 12
.Bold = msoFalse
.Italic = msoFalse
.Underline = msoFalse
.Shadow = msoFalse
.Emboss = msoFalse
.BaselineOffset = 0
.AutoRotateNumbers = msoFalse
.Color.SchemeColor = ppForeground
End With
End With
ActiveWindow.ViewType = ppViewSlideSorter
but I would like to have the macro ask for each numeric value at the point
PS 01- 01
--
Thanks to all
I am running laptop Dell D800
1 Gg RAM
Xp Pro
Office 2002
Sub note_page_title()
'
' Macro recorded 12/11/2009 by Admin
'
ActiveWindow.ViewType = ppViewNotesPage
ActiveWindow.Selection.SlideRange.Shapes("Rectangle 3").Select
ActiveWindow.Selection.ShapeRange.TextFrame.TextRange.Select
ActiveWindow.Selection.ShapeRange.TextFrame.TextRange.Characters(Start:=1,
Length:=0).Select
With ActiveWindow.Selection.TextRange
.Text = "PS 01 - 01" + Chr$(CharCode:=13)
With .Font
.Name = "Calibri"
.Size = 12
.Bold = msoFalse
.Italic = msoFalse
.Underline = msoFalse
.Shadow = msoFalse
.Emboss = msoFalse
.BaselineOffset = 0
.AutoRotateNumbers = msoFalse
.Color.SchemeColor = ppForeground
End With
End With
ActiveWindow.ViewType = ppViewSlideSorter
but I would like to have the macro ask for each numeric value at the point
PS 01- 01
--
Thanks to all
I am running laptop Dell D800
1 Gg RAM
Xp Pro
Office 2002