Drawing a Motion path

Hi fellows!!  I would like to ask please, if there's any way which allow me to draw an arbitrary line with the pencil tool for instance, and then tell to flash to use this path as a motion path for an object on the stage by creating a motion tween.  I know that this can be achieved by classic tween, but I look for a way to achieve the same effect but by using the new animation model of motion tween.  Cheers!!  Atar.

Thanks for your response, but I'm already know that I can edit a motion path after it was created. But this process is harder than to draw the desired path with the pencil tool. I look for a way to a priori draw the path as I want.
Cheers!!
Atar.
ב-24 ביול 2011, בשעה 17:04, kglad <[email protected]> כתב/ה:
after creating a motion tween you can edit the path so it matches what you want.
>

Similar Messages

  • 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.

  • 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;

  • How do I get different layers to follow a motion path but start at a different time?

    I'm doing a project where I need to have several credit cards come in from the bottom left, move to the middle right, loop up and come back down to exit bottom right. I can make one card do that with a motion path but every time I make the cards follow it, it just follows the null object wherever it's at. How do I make those cards start at different times so it looks like the cards are trailing? Once it gets to the loop the cards still need to stay behind as well.
    I've been using AE for years and I feel like I should know how to do something as basic as this but I've been drawing a blank now for days. Thanks for your help!

    Meaning the speed is constant for the duration?
    Rove Across Time feature would help.

  • Motion path on rotated ellipse?

    Hi, I'm an experienced animator (with Flash) but relative newbie to Motion, and so finding some things very frustrating but also empowering. I've got a series of ellipses kind of like an atomic symbol which I'm trying to rotate small objects (spheres) around in 2D - pretty basic - just three orbits. At first I tried drawing a path and then attaching to the sphere graphic (as in Flash) but then found Add Behaviour > Basic Motion > Motion path which was actually much easier and powerful than Flash. But now I have an 'angled' ellipse (45 degrees) but I can find no way to rotate the motion path to match the angle. I can adjust each of the circular path's axis, but no way to rotate about a central point. All I want is an angled elliptical path! Is there any easy (or difficult) way to do this? Thanks for any help.
    Chris

    You're going to love how easy this is:
    Add Behavior/Basic Motion/Motion Path to your sphere. In the behaviors tab, change the path shape to Geometry. Drag the elipse layer into the Shape Source well and make sure the Attach to Shape button is checked.
    Now the sphere will follow around the elipse no matter how it's positioned. And if you change the shape of the elipse, it'll update in the motion of the sphere.
    Also, in the behavior you'll see areas to change the interpolation of the motion, as well as a Looping parameter for multiple orbits.
    Hope this helps.
    Andy

  • Motion Paths

    when I create a motion path, Motion has this annoying habit of creating a default path that starts in the middle of the canvas and ends one canvas length away from its origin.
    I'd like to have it so my path originates in the middle of the affected layer. How can I make this happen? Also, how can I add points to my motion path's bezier curve?

    The motion path behavior's default path always begins at the layer's current position. That is typically the center of the layer (unless the layer is text or you've moved the layers anchor point).
    You can always draw a bezier shape and then assign that as your "motion path" in the behavior parameters. When you create a bezier shape, you can right-click any point in the shape and assign it as your "start point"
    Andy

  • How to animate a sequence of shapes on a motion path

    Hi All.
    I am trying to animate a moving line of dots on a curved motion path but can only do one at a time. What I need is a stream of dots moving along the line as I need to show something 'coming from here and going to there'. I've tried to get a particle emmitter to spit out dots that follow the path but no joy there. I can't do it with a replicator either. Will I just have to laboriously animate one dot then dupe it and offset tons of copies to get the effect? Seems a bit long-winded.
    Any ideas would be very greatfully received.
    Many thanks
    Roger Harris
    Quad G5   Mac OS X (10.4.5)  

    Refer to specialcase's tutorial on drawing lines with the replicator, and you'll have the basics. It's a stellar explanaexplanation of the Sequence Replicator behavior and how it can be used to animate things. Ms. or Mr. Case rules.
    http://www.motionsmarts.com/tutorials/drawinglines/drawinglines1.html
    Beyond that:
    - draw a dot
    - draw a wavy line with the Bezier tool
    - replicate the dot
    - in the inspector under the replicator tab, change the shape to geometry, then drag your wavy line into the shape source well
    - increase the number of points 'til they fill your line
    - go to the behavior button and add the Sequence Replicator behavior to the replicator
    - add opacity as the parameter and start mucking about
    Here's the project -- 'dots.motn'
    http://homepage.mac.com/longstrider/FileSharing7.html
    Cheers

  • Motion 4 - copy motion path?

    Hello All,
    Is there a way to copy an object's motion path to a paint stroke for write-on?
    I have an object that moves from point A to point B in a nice arc (keyframed path)
    I want to use this exact path, and have a stroke/paint stroke write on as the object moves from point A to
    point B following the arc from the objects motion path.
    I can do this with a straight line, etc, but have not yet discovered how to have my "line" follow my moving
    object.  I have also done this by "drawing" a line, but I cannot match the path well drawing freehand, etc.
    I thought this would be "easy".
    thanks,
    eholz1

    Hello Todd,
    I think I have tried this, but perhaps not from the keyframe editor.
    I will give it a shot, and let you know if it works.... Stand by ... trying now...
    Well, almost figured out - but tricky (at least for me!)  This is only for the path, I have not
    figured out how to add a stroke to the path, etc.
    I did the following:
    I created a new layer called "Tracking Line".  I added a "link" to the position parameters of the moving ball (with
    the arc path)  Right click position under the object's parameters in the inspector.  I selected the moving ball for the shape parameter for the link.
    Then I got a path that follows the arc, but.  I had to change the offset parameters for x and y for the link.
    So I have a path of sorts that matches the arc. 
    I have yet to see how to add a stroke to this.  It also my be all wrong!
    Thanks and keep me posted.
    eric

  • Wind on a motion path

    I am trying to illustrate how planes fly
    I am tryin to show air particles over and under a wing
    I have an emitter with 0 speed
    wind blows the partilces across the screen
    I need for the wind to follow a motion path so the particles follow the same path and thus showing how they move across the wing. I guess you cant apply a motion path to wind. Cant seem to get the particles to move as fast or as slow as I want while moving on the curve that I want.
    I have v1, maybe in v2 you can do this?? any ideas.
    these forums always help me but this one might be a challenge.

    Heya,
    As far as I know, you can't shoot particles along a path...but you can move replicator cells along a path. If you use the line-drawing technique found here and apply a Rate parameter behavior to the replicator's Offset value, you might be able to get something you'd like.
    I knocked together a quick example movie with two replicators with different rates.
    Good luck with your project!

  • I am trying to use motion tracking to have text follow a section of the background.The text box follows the motion path, but the text just sits there.  What am I doing wrong?

    I am trying to use motion tracking to have text follow a section of the background.The text box follows the motion path, but the text just sits there.  What am I doing wrong?

    Motion basically looks at the the source footage and it's timing (in the timing section of the Inspector) when analyzing for tracking.  Filters are basically ignored by the tracker.  Retiming actions, like time re-mapping, or retiming behaviors that are applied before the tracker should be used by the tracker.  Did you change the timing after doing the tracking?  If so this would also require you to re-track the shot.  Understanding that you found a workaround, describing the effects you applied would help to explain why you ran into problems.
    Cheers!

  • How can I mass move symbols with their motion paths without creating new keyframes?

    I want to move a lot of symbols all at once if they are off centered or just need to be moved around to see differenr styles across the document, but I can't seem to move a lot of the symbols at once, only one at a time slexting their motion paths. It's rather annoying when I have items coming in at different times and have to re line everything up one by one if I want to move things even over by 1 px. Every time I slecect all my symbols and try to move them it just creates a new keyframe that they follow. Is there any tool or certian way to select the symbols and/or thier motion paths and move them without creating new key frames?

    Hi,
    There's no direct way of moving all the symbols/ motion tweens begining at different frames altogether, but the following steps should help you do it -
    1. Select a motion path on stage, goto Properties panel > Options menu (top left corner) and enable - Always show Motion Paths.
    2. Enable - Edit Multiple Frames option in the Timeline.
    3. Adjust the frame-markers in Timeline to show all your symbols, motion paths etc.
    4. Now that you see all your symbols and motion paths together, Select-all and Move them together. Or, use Shift + click to selectively select the Motion paths/objects and move them.
    Let me know if you have any doubts..
    Regards,
    Nipun

  • FCE HD, confused by Motion Path (I want to change the speed of movement)

    I am a huge FCE noob, let's get that out of the way. I have also been a member here since May of last year, but for some reason it now shows that this is my first post. (????) Anyway, I have figured out how to use a motion path, including curving the path, but I can't figure out how to alter the speed that a "motion path" video enters, or leaves, the screen.
    While I'm here, I also want to learn how to use shapes (as in a circle/triangle/custom shaped border to a video clip) and I have not been able to find that info. I have Lisa Brenneis's "Final Cut Express HD for Mac OS X" book and have not been able to find the answers to these two questions there.
    Thanks in advance for your useful help!!
    BILL

    The first and last keframes can have Ease In/Ease Out applied to smooth the start or stop action.
    Clicking between two keframes on a a motion path should give you Bezier Handles. There a four blue dots on them, the inner two will control speed. Dragging an inner dot along the handle either slows or speeds the action.
    Al

  • FR: Ability to move entire Motion Path (as in After Effects)

    If you like this Feature Request, please copy/paste on Adobe's Feature Request page to get your voice heard: www.adobe.com/go/wish
    *******Enhancement / FMR*********
    Brief title for your desired feature: Ability to move entire Motion Path (as in AE)
    How would you like the feature to work?
    The same way it currently works in After Effects: ability to move an entire motion path by selecting all of the motion path's keyframes before click-moving one of the selected keyframes in the Canvas/Program Monitor.
    Why is this feature important to you?
    This feature makes it so much more efficient to move a motion-animated asset to a new location without inadvertently changing the motion path.  This tremendous workflow efficiency works wonders in AE and could work equally well in Premiere Pro.

    When previewing, make sure that you're using RAM preview to get real-time playback:
    http://helpx.adobe.com/after-effects/using/previewing.html#use_ram_preview_to_play_video_a nd_audio
    See this regarding the issue with your output file stuttering:
    http://forums.adobe.com/thread/684381
    Most important, start here to learn the basics:
    http://adobe.ly/AE_basics

  • Errors with interactive pdf containing motion paths

    I have created an interactive pdf in indesign with simple motion paths. In the preview in indesign it works perfect, but the animations do not work in the exported pdf. This is created in CS6 and I have the creative suite standard installed.

    I have tested with both Acrobat Pro X (10.1.1)  and Acrobat Reader XI (11.0.0.). Due to IT  restrictions I am unable to use such "transfer files" providers, so I am bit stuck. I have tried to put the different animations in layers and in one layer only, with same results. I am
    beginning to think that there are internal restrictions that make this happen

  • Multiple motion paths in CS5?

    Hi-
    I'm new to Flash and have a question. I'm creating a Helium atom for my technology class and am trying to get 2 electrons to circle the nucleus. I've successfully created a classic motion path where one electron circles the nucleus. How do I create another (duplicate) motion path for the other. I'm not sure this can be done, hence the question.
    Any suggestions for the newbie would be greatly appreciated.
    Thanks,
    Mark

    Select the frames where your motion path is being placed on, right-click and select "Copy Frames" and paste them on a new layer

Maybe you are looking for

  • Intersect in VC with more than one keyfield

    Hi all, I have two tables, the table M and the table T. Table M has the keyfields: CO_AREA, DATETO, OBJVERS and /BIC/BUKR13. Table T has the keyfields: CO_AREA, DATETO, LANGU and /BIC/BUKR13. Now I want realize an innerjoin. Therefore I can use the i

  • Where are .emix files on my mac?

    Backblaze is backing up .emix files but Spotlight can't find any of these files.  Spotlight is set to search all categories.  (OS 10.9.2, Mac Pro)

  • Any updates for Nokia 6102i for the Tungsten E2

    I am trying to link my Bluetooth enabled Nokia 6102i and my Tungsten E2. I have checked for updates on the palm site, but it doesnt look like any updates have been created since 2005, and this phone was introduced in 2006. Can anyone steer me in the

  • W-flow

    I have copied the  sap standard template for PR Release work flow WS00000038,  and it is working fine  except teh following.. If the PR is rejected  by the Releaser , the Sap in-box mail is not going to Work Iinitiator's SAP  in-box, but for released

  • CS5 - publishing AS2.0 SWFs very slow

    Having just recently started to work with CS5 I can't help noticing that publishing/exporting SWFs is very slow compared to CS3. A file that takes 3 seconds for CS3 to publish takes, on average, 12 seconds to publish in CS5... 4 times slower! Anyone