Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion Groups
General
GeneralPortable MacsHardwareNetworking
Applications
Mac ApplicationsEudoraFirefox / MozillaInternet ExplorerOutlook ExpressMS OfficeEntourageExcelPowerPointWordVirtual PCMedia PlayerOther MS Products
Programming
Mac ProgrammingCodeWarriorPerl
Country Specific
Australian Mac GroupUK Mac Group

Mac Forum / Applications / PowerPoint / May 2005



Tip: Looking for answers? Try searching our database.

how to use motion path

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
deloge - 19 Dec 2004 23:50 GMT
i'm trying to animate an object to go on a certain path...but i was
looking in the help section of powerpoint and it states that it can't
be created...is this true....is there no way to create motion paths in
Mac only on windows...

Please help....

Thanks.
Alan Schaevitz - 20 Dec 2004 00:28 GMT
Unfortunately, true.  You cannot create motion paths on PP2004 for the Mac.
You can only use the predefined motion paths.  In PP, to to Help > Send
Feedback and complain bitterly!

> i'm trying to animate an object to go on a certain path...but i was
> looking in the help section of powerpoint and it states that it can't
[quoted text clipped - 4 lines]
>
> Thanks.
Jim Gordon MVP - 20 Dec 2004 05:15 GMT
Hi,

For most people what you state is true. There is no GUI (graphical user
interface) in Mac PowerPoint 2004 that lets you control the motion path.

The object model for the motion paths is there, however. If you know how
to use VBA you can control the paths programatically.

-Jim

Signature

Jim Gordon
Mac MVP
MVP FAQ
<http://mvp.support.microsoft.com/default.aspx?scid=fh;EN-US;mvpfaqs>

> i'm trying to animate an object to go on a certain path...but i was
> looking in the help section of powerpoint and it states that it can't
[quoted text clipped - 4 lines]
>
> Thanks.
esj3 - 17 May 2005 18:44 GMT
Jim,

How would I use VBA to do that? And is there a way to modify the animation
order without manually inserting each animation sequentially? I don't see any
option to re-arrange the order on the edit screen of custom animation.

Thanks,
Eric Jaffe

> Hi,
>
[quoted text clipped - 14 lines]
> >
> > Thanks.
Jim Gordon MVP - 18 May 2005 05:05 GMT
Hi,

There is an article located here that explains how to use the
motioneffect object:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbapp11/html/pp
objMotionEffect_HV03080945.asp


Here's the code example from the above article. I tested it in Mac
PowerPoint 2004 and it works fine. This adds a shape to a slide and then
gives it a motion path

Sub AddMotionPath()

    Dim shpNew As Shape
    Dim effNew As Effect
    Dim aniMotion As AnimationBehavior

    Set shpNew = ActivePresentation.Slides(1).Shapes _
        .AddShape(Type:=msoShape5pointStar, Left:=0, _
        Top:=0, Width:=100, Height:=100)
    Set effNew = ActivePresentation.Slides(1).TimeLine.MainSequence _
        .AddEffect(Shape:=shpNew, effectId:=msoAnimEffectCustom, _
        Trigger:=msoAnimTriggerWithPrevious)
    Set aniMotion = effNew.Behaviors.Add(msoAnimTypeMotion)

    With aniMotion.MotionEffect
        .FromX = 0
        .FromY = 0
        .ToX = 500
        .ToY = 500
    End With

End Sub

To change the animation order simply select an animation in the custom
animation dialog box then click the up or down arrows next to the list
of objects that have animations. They will move and and down the list.

-Jim

Signature

Jim Gordon
Mac MVP
MVP FAQ
<http://mvp.support.microsoft.com/default.aspx?scid=fh;EN-US;mvpfaqs>

> Jim,
>
[quoted text clipped - 23 lines]
>>>
>>>Thanks.
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.