Hi I would like to create multiple flavors of a single document. Agendas and course flow information...
By anonymous
Hi don't know if anyone else has helped but what I would do is not use the transparent wand as ...
By anonymous
Dear Friends, In my MIS report I used to insert object-->Microsoft excel worksheet. In that works...
By anonymous
I produced PP presentation on desktop, copied to laptop both via DVD & personal media drive. File sh...
By anonymous
I am using powerpoint 2007 after many happy years of using 2004 for mac. I need to align imprecisely...
By anonymous, 2 Comments
How come the background of my p.p. pres. does not when I print yet I can view it when I am under nor...
By anonymous, 1 Comments
How come PowerPoint changes the size of a file simply by opening and closing it, without making a ch...
By anonymous, 20 Comments
I have some powerpoint presentations which open quite normally on other PCs. On my specific PC, when...
By anonymous, 2 Comments
I am using PowerPoint 2003/MS Office 2003 Professional on a Windows XP Platform. Every month I compl...
By anonymous, 2 Comments
This can probably be done using VBA programming code within PowerPoint.
Keep in mind that this will NOT work using the free PowerPoint Viewer, the
user must have PowerPoint AND have their Security level set to MEDIUM and
"Enable macros" when asked.
Interested? If so, I will try and work something up as a sample.
--
Bill Foley
www.pttinc.com
Microsoft PowerPoint MVP
Microsoft Office Specialist Master Instructor
"eric" <eric...discussions.microsoft.com> wrote in message
news:5883AC7B-DFAD-4B81-9E05-5D22FE3BB814...microsoft.com...
> I have 3 Word art sentenes. I want one to come up on powerpoint at a
certain
> time (or like from 5:00pm to 9:00pm)
> say its 5pm - 9pm, I want the one wordart sentence (good evening) to show,
> and in 2 morning hours (like 2am to 10am), I want it to say GoodMorning.
> (I want this during the presentation)
> Thanks for your time!
bill | Tues, 27 May 2008 03:23:00 GMT |
If you want a simple message box to appear when a button is clicked, put
some sort of object on your slide and assign this macro to it:
Sub TimeTester()
If Hour(Time) < 12 Then
MsgBox ("Good morning, the current time is " & Time)
ElseIf Hour(Time) < 18 Then
MsgBox ("Good afternoon, the current time is " & Time)
Else
MsgBox ("Good evening, the current time is " & Time)
End If
End Sub
If you want different text boxes to appear or different messages to show up
in a text box based on the above code, you will need to do much more. For
example you could create three textboxes with the desired text on your
slide. You will need to use VBA to assign a name to each textbox (code
sample provided below). Then what you do is to modify the above code to
make the desired textbox visible based on the IF statement.
You could also create one textbox and assign the desired text within the IF
portion of the code itself. That way you only have one textbox and the text
that is displayed in it is based on the code.
The name assigned to a textbox is done using the following code (provided by
our resident PowerPoint VBA expert, Shyam - http://skp.mvps.org/):
Sub NameShape()
Dim Name$
On Error GoTo AbortNameShape
If ActiveWindow.Selection.ShapeRange.Count = 0 Then
MsgBox "No Shapes Selected"
Exit Sub
End If
Name$ = ActiveWindow.Selection.ShapeRange(1).Name
Name$ = InputBox$("Give this shape a name", "Shape Name", Name$)
If Name$ <> "" Then
ActiveWindow.Selection.ShapeRange(1).Name = Name$
End If
Exit Sub
AbortNameShape:
MsgBox Err.Description
End Sub
A sample line of code to assign text to a textbox named "TimeOfDay" on Slide
1 is:
ActivePresentation.Slides(1).Shapes("TimeOfDay").TextFrame.TextRange.Text ="Good Morning"
So, instead of using the MsgBox line of code you could replace the first one
with the line above. Keep in mind that you would need to draw a textbox on
your slide, run the Nameshape code above to name it, then assign the code to
some sort of button that you click in Slide Show mode.
I realize that this is quite a mouthful so if you need me to send a sample
file, holler back.
Bill Foley
Microsoft PowerPoint MVP
Microsoft Office Specialist Master Instructor
www.pttinc.com
"Bill Foley" <wfoley1eatspamanddie...txu.com> wrote in message
news:%23jEZu%23t2FHA.3600...TK2MSFTNGP12.phx.gbl...
> This can probably be done using VBA programming code within PowerPoint.
> Keep in mind that this will NOT work using the free PowerPoint Viewer, the
> user must have PowerPoint AND have their Security level set to MEDIUM and
> "Enable macros" when asked.
> Interested? If so, I will try and work something up as a sample.
> --
> Bill Foley
> www.pttinc.com
> Microsoft PowerPoint MVP
> Microsoft Office Specialist Master Instructor
> "eric" <eric...discussions.microsoft.com> wrote in message
> news:5883AC7B-DFAD-4B81-9E05-5D22FE3BB814...microsoft.com...
>> I have 3 Word art sentenes. I want one to come up on powerpoint at a
> certain
>> time (or like from 5:00pm to 9:00pm)
>> say its 5pm - 9pm, I want the one wordart sentence (good evening) to
>> show,
>> and in 2 morning hours (like 2am to 10am), I want it to say GoodMorning.
>> (I want this during the presentation)
>> Thanks for your time!
>
bill | Tues, 27 May 2008 03:24:00 GMT |
Eric,
You can also use the free PlanPoint addon from
www.PresentationPoint.com to schedule your slides in time. You will
have to duplicate your slides because planpoint works on slides only,
not on shapes.
Kurt.
kurt | Tues, 27 May 2008 03:25:00 GMT |