![]() |
|
#1
|
|||
|
|||
|
I don't know if .expression is the correct term.
I wonder if I can do this: No error if I put .Shapes.Title in the animations Sub but error if I pass it as a parameter. Can it be done? Code:
Sub test()
'' can't pass .Shapes.Title as a parameter
Call animations(3, .Shapes.Title, msoAnimEffectAppear, msoAnimateTextByAllLevels, msoAnimTriggerOnPageClick, -1, 5, 1, ppAfterEffectHideOnClick)
End Sub
Sub animations(vIndex As Variant, oShape As Shape, oEffectId As MsoAnimEffect, oLevel As MsoAnimateByLevel, oTrigger As MsoAnimTriggerType, lIndex As Long, lDuration As Long, lTriggerDelayTime As Long, oAfterEffect As PpAfterEffect)
With ActivePresentation.Slides(vIndex)
With .TimeLine.MainSequence.AddEffect( _
'' oShape = .Shapes.Title
Shape:=oShape, _
effectId:=oEffectId, _
Level:=oLevel, _
trigger:=oTrigger, _
Index:=lIndex)
With .Timing
.Duration = lDuration
.TriggerDelayTime = lTriggerDelayTime
End With
.Shape.AnimationSettings.AfterEffect = oAfterEffect
End With
End With
End Sub
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to pass parameters to a .msg file? | HereNow | Outlook | 0 | 11-05-2012 10:38 AM |
| Office 2010 Excel Full pass | raineraus | Excel | 1 | 09-19-2012 12:55 PM |
| Reg expression/ wildcards for mass replacement of contents in table | ghumdinger | Word Tables | 0 | 07-31-2010 12:21 PM |
Conditional Expression that Moves Data (challenging)
|
themangoagent | Excel | 1 | 02-20-2010 11:29 AM |
| evaluating a text expression in a form field | gwp1 | Word | 0 | 10-08-2007 02:15 PM |