Set up a Motion Path to repeat?

Hi,
I have a project where I would like to have a motion path repeat until a specific point in time. Is there a way to specify this rather than copying and pasting until I want it to end? Thank you,
-Zack

Yes, you need to set the "After Last Keyframe" option in the keyframe editor.
-View the parameter(s) you want to repeat in the Keyframe Editor.
-In the Keyframe editor, to the right of the Keyframes is the animation menu, select After Last Keyframe and then set to repeat.
for more details, look here at the section titled "Parts of the Keyframe Editor"
http://help.apple.com/motion/mac/5.0/en/motion/usermanual/#chapter=12%26section= 10

Similar Messages

  • Unable to set custom speed to motion path on Camera

    This is a followup question to "Controlling speed along motion paths"
    (Many thanks to Mark Spencer and specialcase for the their excellent insights getting me this far =)
    After experimenting with motion paths and realizing they were indeed what I was looking for, I set up my project so that the camera would follow specific paths along 2d images. Everything worked perfectly until I tried to modify the speed along which the camera travels along those paths.
    In the motion path, in the speed drop down menu, I can select Constant, Ease in etc.... all the way to Custom, but they work slightly differently than I expected: while before (ie. applying motion curves to objects as opposed to the camera) I was able to getting a diagonal line in the Keyframe Editor where I could modify keyframes using bezier curves to adjust the speed, now, choosing the various speed options appears to change the "Transform.Position.X" and "Transform.Position.Y" curves directly.
    When I select "Custom", "Motion path" and Custom Speed" appear in the keyframe menu above the Camera drop down, but its curve appears only as a dotted, completely horizontal line in the graphing window. The "Transform.Position.X" and "Transform.Position.Y" curves also revert to horizontal dotted lines. If I try to add curves to the custom speed line, the X and Y curves remain horizontal and the camera does not move.
    Is there some reason I cannot get custom speeds for cameras without losing my motion path data?
    Is there some way to work around this?
    Thanks again for all of your help,
    Tim

    I'm not sure if there is some setting I have wrong:
    When I try this, while I am able to set keyframes, the motion path data is reset. (ie. the Transform X and Transform Y curves reset to 0).
    In the Keyframe Editor, I can make new curves for the X and Y values and for Timing, but the camera does not follow the motion path, it follows the new x and y curves. Trying to get those curves to match the motion path exactly is a large hassle.
    This might help:
    If I apply the motion path to an shape rather than to the camera, everything works perfectly (the object moves along the motion path, and I am able to set keyframes for the Custom Speed curve with no problems whatsoever). If I then copy the motion path directly from the shape and paste it to the camera layer, the path appears as a red curve (as it should), but the camera does not move.
    Is there some way I can upload the motion file so that you can see what exactly is going on?
    Thanks again,
    Tim

  • Object with Motion Path Disappears On Layers

    I have placed an image on the stage that I want to move from one object to another. (In this case, a "cookie" to move from a website image to a computer image.)
    I have placed the cookie image on top layer, and on top of the web site image.
    I have set up a motion path to move the cookie to the computer.
    When I preview, the cookie image literally disappears, in a "wipe" motion.
    I moved the cookie image to a plain area on the stage, and it moved just fine. It disappears only when layered with the other images, even though it is the top layer.  There is no "white space" that I should be dealing with on any of the images. The backgrounds are transparent.
    Any ideas?

    Here's a screenshot with the motion path:
    And here's a screenshot from preview. I left the background on here, and it actually looks like the square of the image is moving along the path, but the image itself moves out of the boundaries of the picture to the left (it's a .jpg file). That makes absolutely no sense.  This image has been resized (original is larger than the stage), but not cropped.  I have deleted and re-added this image several times.

  • Set Motion path to obscure a person's face in a clip

    Hi all
    Could someone tell me how to set a motion path to obscure a person's face so that they are unrecognizable? And, how do I obscure the face while leaving all else unaffected?
    Please help with as much detail as you can.
    Carl

    F. Carl McIvor1 wrote:
    .. Do I have to set and resent frame by frame? There's got to be an easier way.
    depend on size of your blurr.. every 5th/10th/20th frame a new keyframe is probably enough..
    or, you use a 3rd party app as
    Magnet
    http://www.creaceed.com/magnet/index.html
    .. which offers some automatic 'tracking' ...

  • How to make several copies of a shape follow a motion path

    Hi all! Does anyone have an idea for this:
    I have drawn a "highway" using the bezier tool - I want a lot of circleshapes to follow this highway to indicate a current flowing. I have the circle shape and with the motion path behaviour I can make it follow the shape. Now I want a lot of cirlces to do the same so the highway is filled with the circles repeating over and over. I have tried some different setting an emitter with motion path but it doesn't work.
    I would think that this illustration is quite common so maybe some of yo could give me a clue on how to do this??
    Morten

    Hi.
    I tried it using the Replicator:
    Create the highway.
    Create a Circle.
    Replicator settings:
    Shape> Geometry.
    Shape Source>your highway Shape.
    Points>27
    Offset: assign a Ramp Behaviour. Start Value 0%. End Value: 191%. This moves the circles along the highway.
    Tweak to taste.

  • Tween or Motion path for blank keynote with animated stars?

    I create star particle effect from this tutorial: http://www.schoolofflash.com/2008/03/flash-cs3-particle-effect/ and got help from this discussion: http://forums.adobe.com/message/5518425 in order to get what I wanted. My code is:
    var starsArray:Array = new Array();
    var myTimer:Timer = new Timer(50);
    myTimer.addEventListener(TimerEvent.TIMER, addStars);
    myTimer.start();
    addEventListener(Event.ENTER_FRAME, moveStars);
    function addStars(e:TimerEvent):void
              var star:Stars = new Stars();
              star.x = stage.stageWidth / 2;
              star.y = stage.stageHeight / 2;
              star.alpha = Math.random() * .8 + .2;
              star.scaleX = star.scaleY = Math.random() * .8 + .2;
              star.xMovement = Math.random() * 10 - 5;
              star.yMovement = Math.random() * 10 - 5;
              starsArray.push(star);
              addChild(star);
              star.cacheAsBitmap = true;
    function moveStars(e:Event):void
              for each (var star:MovieClip in starsArray)
                        star.x += star.xMovement;
                        star.y += star.yMovement;
                        star.alpha -= .01;
                        star.scaleX = star.scaleY -= .01;
                        if (star.scaleX <= 0)
                                  kill(star);
    function kill(star:MovieClip):void
              starsArray.splice(starsArray.indexOf(star), 1);
              removeChild(star);
    However, I wanted to move the star particles around. The problem is that the star isn't on the screen, but is called in the actions in the blank keynote. I don't know what I should do next to get the result. I looked up online for tweens and motion paths but all i see is that they required the star to be right on the screen, I think? I also heard something about the compiled clip but I don't know how I should go about creating one and using it to move around the stars while it's animated with all the actionscript. All I wanted is for the star particles to float around the screen (on a path that I can draw out if possible).....

    Each star is created in the addStars function. Its position is set in the first two lines:
         star.x = stage.stageWidth / 2;
         star.y = stage.stageHeight / 2;
    So, to move each star to a new location when it appears on the stage, you'll need to change the x and y property values for each star. One simple way to do that is to use that same Math.random() function.
    Try changing those first two line to:
              star.x = Math.random() * stage.stageWidth;
              star.y = Math.random() * stage.stageHeight;

  • Using Light as Motion Path for Trapcode Particular

    Hi,
    I am trying to make an animation for a project, but I cannot figure out some things.  I am trying to create the effect that a person is throwing money out the back of a car.  I have the live shot of the person in the car, but I cannot get the money to behave how I want it to. I am trying to use the Trapcode Particular, but I can't get the particles to follow any motion path.  When I set the settings to motion path, it prompts me to create a light.  I create a light, but can't figure out how to make that light have an actual path rather than simply being a spot light.  Please help! I'm sorry if I don't make any sense, please ask me to clarify if you need it.
    Nicole

    KWNWY wrote:
    I am trying to use the Trapcode Particular, but I can't get the particles to follow any motion path. ...
    Because you are doing it all wrong! If you wanted to use the Motion Path option in the Air physics model, your light would have to be exactly named like that - Motion Path 01. It's not what you want, though. I'm 100% certain of that. You are looking to create a conventional light emitter, which is a whole different thing. For that, your light should be named Emitter (or whatever other prefix you define in the plug-ins Options/ Settings panel). Then you must set the emitter type to Light. If you use spot lights and want your money to emit directionally, you need to set the emitter to Directional as well. Apart from that, Particular will use the light's color, cone angle and intensity to colorize and eject the particles. After that, you can animate the light in 3D space to whatever you need it to do.
    Mylenium

  • Exporting or saving AE motion paths

    Hello all,
    A slightly odd request, and I have a feeling it's not going to be possible, but... is there a way to export or save motion paths out of AE? Just like bringing vectors in from Illustrator, but in reverse.
    I have a very large comp which I'm moving a camera around. I'd like to take the camera's motion path into illustrator or photoshop and create artwork based on the shape, so that when I bring it back in and add it to the comp it fits the camera's movement perfectly. I know I should probably have doe it the right way round to start with, but the cmera move is/was based on too many variables to lock it down at that stage in the project.
    Any help/suggestions greatly appreciated.
    Thanks.

    Copy&Paste works both ways... Motion paths can be pasted as masks and even as paths in PS and AI. Just make sure to set your clipboard options in AI to AICB, not PDF...
    Mylenium

  • Motion path changes gets larger when copied to Shape Position parameter

    Hello There,
    Richard Gerard has been helpful, and well as other people.
    I have sorta figured out how get a stroke to follow a motion path.
    I (so far) am unable to get a shape to follow the same motion path.
    My shape is a small ellipse commonly known as a circle!
    I have seen this post - http://forums.creativecow.net/thread/2/959085, which is interesting,
    but does not work.  My shape layer consists of name, "Blue Circle",  and two properties below that:
    Contents and Transform.  If i copy the path into the Transform-Position property the path is about 2
    times bigger than the path I want to use, and does not start at the correct spot.
    After reviewing the post above - I added a "path" to the ellipse in the "Contents" area, I can see the path, it is the correct size,
    but the circle does not follow this path.  If I try to copy this path to one of the position properties, no dice,
    the path completely displaces the shape to the wrong coordinates.
    I must be missing something basic here, but have yet to find out.
    Any tips will help.
    Thanks,
    eholz1

    The position path is offset because your Black Solid with the mask isn't in the default position. Both Anchor Point and Position must be reset. Parenting can also foul this up. Here's how to fix it.
    First of all, before you copy and paste the path remove parenting and return the solid with the mask to it's default position by resetting Anchoe Point and Position. Now when you paste the path to your Blue Ball it will exactly match the path on the solid layer. Once the path is set you can redo the parenting and reposition the layers but you must include the blue ball. If it were me I'd create a null and make that the parent of the Black Solid, the Blue Ball, and the Map. Now you can animate the position of the null to scroll across the map and the blue ball will follow.
    To match the timing of the stroke to the blue ball you simply drag out the right most diamond keyframe on the blue ball position until it matches the last position of the stroke.. That's all there is it. Your timeline should look something like this:
    One last question. You have a non-standard composition size. It may not render correctly. What is the reason for the odd size. NTSC D1 Widescreen should be 872 X 486, It's acceptable to also have a comp that's 872 X 480. MPEG compression requires an even number of pixels so your 853 dimension is very likely to cause problems or be automatically resized to a standard frame size.

  • Custom speed not working in motion path behaviour of emitter

    I am trying ot make a custom speed motion path along an open spline. Any amount of adjusting of keyframes and percentages produce no movement at all along the path. The emitter is stuck at the beginning of the path. All the other speed options work except for custom, in the motion path behaviour. What's going on here?

    What's going on is a little complex.
    When you first add a Motion Path and select Custom Speed, you get a "default" 0% - 100% over the life of the behavior [basically the same as Constant]. If you try to add keyframes in between, it can mess things up pretty good. The results you get can be unexpected.
    If you "clear" the automatic default keyframing, then the Custom speed stays at 0% (there are no keyframes). If you move the playhead and change the Custom parameter, nothing "takes" since no original keyframe is set.
    In order to make a Custom Speed on a path, you need to first, clear the default keyframing (on the right edge of the column, click on the disclosure triangle and select Reset Parameter). Then, set the position you want your object to start at and Set a keyframe. Then you can advance the playhead and move the Custom Speed control to position the object on the path.
    HTH

  • Eleastic Easing Motion Path ?

    Can anyone point me out how to set an Elastic or Bouncing movement to a motion Path? The only options I see are basic Ease In and Out . I would also like to have Ease In AND Out on the same movement.   THanks in advance.

    It's quite easy.  I have a tutorial on how to do this at Filmmakingwebinars.com, in the 5-Step Tutorial section.  More info than I'm willing to type here in a forum.  But it's based on the ocillate parameter behavior, and some tricks it can do.

  • How can I create responsive motion path animation

    I have an animate file that contains many amimations and one motion path animation.  All animation elements of the animate file are responsive with the exception of the motion path animation which is not for some reason.  Why does the motion path animation not repsonsive even though it is L, T, W, H coordinates are set as percentages?
    Thanks

    Hi, evetsrelfel-
    There's no way to make motion paths responsive at the moment - we limit them to pixel-based animations.
    Thanks,
    -Elaine

  • Motion Paths In After Effects CS6?

    Hello,
    I was wondering if you could draw a motion path for objects to follow. I have multiple objects(12) that all need to follow on the same path. Do I have to animate all of them individually, or can I draw a path? These objects are NOT masks. They are text imported from Illustrator(CS6).
    If Microsoft Powerpoint can do it, then surely Adobe can...
    Thanks,
    Jack Reynolds
    Reynolds Films 2014

    You can do this in several ways. The easiest is with Parenting. Next would be to tie position of one layer to position of another layer with an expression. You can also draw a mask path on a layer, select the mask in the timeline, reveal the position property of another layer, set a new keyframe for position to guarantee the mask path will be used as a motion path, and paste.
    See this thread for details and a screenshot.
    http://forums.adobe.com/message/6084453#6084453
    These are AE basics. You can also find more information by using the Search Help field at the top right corner of AE.

  • CP5 - W7 - TIPS - Motion paths

    I want to give back a little to this community, I got a lot of answers on my questions. And I am greatfull for the help.
    I wanted to animate an image to come up from the bottom, but could not find the right animation path. So...
    Follow this guide to learn how.
    You can do your own motion paths!
    Import an image
    Go to Effects
    press the f(x) symbol at the bottom right corner of the effect
    go to browse
    motion paths
    right-click on LeftToRight.xml and choose copy
    paste it in again and you will have something like LeftToRight-copy.xml
    right-click on LeftToRight-copy.xml and chose to edit, preferebly in notepad
    The code you will see
    <Motion duration="60" xmlns="fl.motion.*" xmlns:geom="flash.geom.*" xmlns:filters="flash.filters.*">
    <source>
      <Source frameRate="30" x="51.7" y="75.2" scaleX="1" scaleY="1" rotation="0" elementType="movie clip" instanceName="abc" symbolName="Symbol 1">
       <dimensions>
        <geom:Rectangle left="-97" top="-50" width="97" height="50"/>
       </dimensions>
       <transformationPoint>
        <geom:Point x="0.5025773195876289" y="0.505"/>
       </transformationPoint>
      </Source>
    </source>
    <effect_config  effect_type="motion_path">
    </effect_config>
    <Keyframe index="0" tweenSnap="true" tweenSync="true">
      <tweens>
       <SimpleEase ease="0"/>
      </tweens>
    </Keyframe>
    <Keyframe index="59" tweenSnap="true" tweenSync="true" x="400." y="0">
      <tweens>
       <SimpleEase ease="0"/>
      </tweens>
    </Keyframe>
    </Motion>
    The code you easy can undestand
    In the begining it says duration="60"
    <Motion duration="60" xmlns="fl.motion.*" xmlns:geom="flash.geom.*" xmlns:filters="flash.filters.*">
    More below in the code you see:
    <Keyframe index="0" tweenSnap="true" tweenSync="true">
      <tweens>
       <SimpleEase ease="0"/>
      </tweens>
    </Keyframe>
    <Keyframe index="59" tweenSnap="true" tweenSync="true" x="400." y="0">
      <tweens>
       <SimpleEase ease="0"/>
      </tweens>
    </Keyframe>
    0 to 59 is 60 steps
    You can by altering these values choose how long an object should move.
    Examples:
    Left to right: tweenSync="true" x="400." y="0"
    Right to left: tweenSync="true" x="-400." y="0"
    Top to bottom: tweenSync="true" x="0." y="400"
    Bottom to top: tweenSync="true" x="0." y="-400"
    Mov to left lowe corner : tweenSync="true" x="400." y="400"
    Continue with task
    Change the settings in your file LeftToRight-copy.xml and choose to save and close.
    Rename LeftToRight-copy.xml to for instanse TopToBottom.xml
    choose that path and animate your image
    Preview in browser (F12)
    Thats it you can do it!
    // Daniel

    DPZ,
    That is awesome, I was kinda curious about exporting/importing effect XMLs. Thanks for the tutorial.
    I too wrestled with getting objects to animate the way I wanted. However, I found a different way to achieve what I think is the same thing, and it was all from the interface rather than the XMLs. There is shockingly spare information online and in help about the Cp5 effects, so I'll share this too in case it's helpful...
    First, from the Effects tab I did Add Effect (fx symbol) > Motion Path > LeftToRight. In my example below I added it to a text caption.
    Second, if you look closely at the object amongst the resize handles, you'll see a very small teal box in the lower-right corner. Click on it and you'll see a red arrow appear on top of your object (see below).
    That red arrow represents the start and end points of your motion path. So lastly, you can click on either the red "begin point" square and place it where you want, or click on the green "end point" arrow and place it where you want. Dragging the animation duration in the effects timeline will set how long it takes to complete the motion.
    So far in my experience, this works with any effect that is motion-based. I used it quite a bit on the Entrance and Exit set of effects.

  • Powerpoint 2008 on iMac - motion path

    Does MS PowerPoint 2008 for iMac supports motion path? MS PowerPoint 2004 for iMac does not.
    Please help...
    Thank you.
    Lsm

    PowerPoint 2008 has partial motion path support. PowerPoint will honor any existing motion paths within a presentation. The custom animation feature offers the same pre-set motion paths that exist in Windows.
    OpenOffice version 2.40 does display motion paths and lets you edit them.
    Each and every time you save the document you have to visit Tools >
    Options, check the load and save checkboxes next to "PowerPoint to
    OpenOffice.org Impress/OpenOffice.org impress to PowerPoint" It seems to
    be about 50/50 whether the file is saved correctly from OpenOffice.
    "Correctly" meaning that PowerPoint will honor the motion path. I tried
    half a dozen times with various shapes and motion paths. Sometimes it
    works. Sometimes not. Wasn't able to figure out the reason or a pattern.
    Haven't tried in OpenOffice version 3 beta, jet.
    The next version of Microsoft Office will support VBA, and VBA supports motion paths, so maybe next time.
    -Jim

Maybe you are looking for