Flash character animation help

Greetings,
I have a character animation that involves a lot of walking, I currently have the feet and upper body fully animated, I was wondering if there was a simple way to get the upper and lower legs to track the feet and hips.
I animated the feet and upper body by creating keyframes and manually positioning each symbol at every keyframe, I was just hoping there was a simple solution for the legs rather then having to manually position each one at each keyframe.

Hi,
If you want to get started with the flash animation make sure to start learning how to use all the image editing tools that may come handy with your animation. You animation doesn't seem that complicated but it will take quite some time to gather all the symbols and images(cartoons).
Here is a website that offers some tips regarding basic flash animations:
http://www.entheosweb.com/Flash/default.asp
Look into these three main guides(it will give you a better understanding on what to do with your objects and actions)
Motion Tween
Motion Guide
Bouncing Effect
Hope this helps you,
Vicente Tulliano

Similar Messages

  • Flash character animation

    I am creating a CBT for E-Learning. In the CBT we have used
    animated character, voice over, play and pause option.
    By default play button is selected, when user click on the
    pause button it will pause the character movement like (body
    movement, eye-popping and lips movement) and as well as voice over.
    Click on play button it start the all the movement from where he
    paused it.
    I have faced following problem while doing the same:
    1) For Play and Pause option, I have made the character
    animation in flash timeline, and it is very time consuming to do
    the lips movement in timeline. If I put the lips in a movieclip
    then, clicking on Pause button it will not Stop.
    Now I need the solution how to reduce the time to do the same
    character animation in flash timeline with Play and Pause button.
    Any idea.....! Pl revert...
    Regards
    Sonum

    If I understand you have done the animation already, in a
    separate movieClip
    but can't get it to pause... If that is the case just add the
    code to your
    pause button to affect more than one clip. Something like:
    pauseButton.onRelease = function(){
    mainCharacter.stop();
    mainCharacter.lips.stop();
    You can have your buttons affect as many clips as you need...
    you could even
    use an array to hold clip references and use that in both a
    play and pause
    button:
    var myChar = [mainCharacter, mainCharacter.lips,
    mainCharacter.eyes];
    function animateChar(thePlayState:Boolean){
    for(var i = 0; i < myChar.length; i++){
    if(thePlayState){
    myChar
    .play();
    }else{
    myChar.stop();
    playButton.onRelease = function(){
    animate(true);
    pauseButton.onRelease = function(){
    animate(false);
    HTH
    Dave -
    www.offroadfire.com
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Flash Driving Animation Help

    Hey everyone,
    I just registered here and I'm looking for some specific help. I am looking to make a short, 30 seconds to 1 minute animation.
    What I want is an animation of a side view of a vehicle driving, with a scrolling/repeating background. (The van will be passing by houses and buildings in the neighboorhood) The vehicle will be driving around for about 30 seconds and encountering different obstacles every few seconds. (mailboxes, cats, etc.) After this it will cut to a flashy outro which I can handle in After FX. However, I am just beginning with flash and I really have no idea where to start on this project. If someone could make a short tutorial or point me in the right direction I would greatly appreciate it.
    Thanks in advance,
    bdkaat

    Hi,
    If you want to get started with the flash animation make sure to start learning how to use all the image editing tools that may come handy with your animation. You animation doesn't seem that complicated but it will take quite some time to gather all the symbols and images(cartoons).
    Here is a website that offers some tips regarding basic flash animations:
    http://www.entheosweb.com/Flash/default.asp
    Look into these three main guides(it will give you a better understanding on what to do with your objects and actions)
    Motion Tween
    Motion Guide
    Bouncing Effect
    Hope this helps you,
    Vicente Tulliano

  • Character Animation Help (PLEASE RESPOND)

    When I animate my character with classic tweens, the arm always detatches from it's source. Does anyone know how to fix this WITHOUT creating new keyframes or using motion guides? Please answer!

    you have a character with an arm.  if you place that character on a timeline (with no tween) and test your movie, the arm stays where it should, correct?
    you then animate that character with a motion tween (in which case you would expect the arm to stay where it should) or are you using a shape-tween (and then all-heck could and, in your case, does break loose)?

  • For character animation is frame by frame, motion or classic tween?

    Hi, i'm very new to adobe flash. I'm using cs5
    Am i right in thinking that for detailed character animation, of cartoons or people, i would still need to do frame by frame animation, and then probably use tweening for big movements like making that same animation move across the screen?
    Your responses would be appreciated.

    I am not an animator (most of the time) but if I were I think I would probably end up using timeline tweening wherever it helped make things easier, especially for what you are calling big movements like having things zoom or move or to have a background moving if the animation involves characters moving.

  • Flash CS5 Button Help

    To start, I'm a total newbie in Flash, so I'm sorry if what I'm asking is ridiculously primitive, but I was literally thrown into this blindfolded and I'm using google and several forums to help me out.
    What I'm doing:  redesigning a website.  At the moment, the website has a flash file that introduces it's logo and subcategories of its' website on the top of the page.  What I wanted to do was make sure there was a hyperlink on the logo that would bring anyone back to the homepage, very basic stuff.  The issue I have run into is that the logo is actually a flash movie.  Different parts of the logo appear at different times, and I think this is what is specifically causing me issues.
    The logo that I want to hyperlink has several layers, and what I've done so far is select them all and create a button (F8, select 'Button' and rename it).  When I did that, I noticed the layers significantly changed and when I tested the movie, it looks terrible, choppy and not how it originally looked.
    I know the step after that is to go into behaviors and insert the url to which I want it to be hyperlinked.  The only thing is that I don't want to show a terrible flash movie to my boss even if it's hyperlinked to the homepage. 
    Anyone understand all that gibberish I wrote down?  Or does anyone see a flaw in what I'm doing?  I'm not 100% positive if the steps I'm taking are correct, I've been to several different sites, all of which tell me to do different things. 
    Initially I tried coding it with ActionScript, but I was having terrible issues with that as well. 
    If it helps, the file I'm working on was altered a while back.  Could it be that the file is not compatible or proper for Flash CS5? 
    Help!!!

    ... how do I give that shape/button a url?
    Since it is a button, it is already a self animating object that will react to mouse interactions, but only visually at this stage.  The first thing you need to do to make it useful code-wise is to assign it a unique instance name.  So you drag a copy of it out to the stage from the library, and while it's still selected, you enter that unique instance name for it in the Properties panel... let's say you name it "btn1"
    In AS3, to make a button work with code, you need to add an event listener and event handler function for it.  You might need to add a few (for different events, like rollover, rollout, clicking it, but for now we'll just say you want to be able to click it to get a web page to open.  In the timeline that holds that button, in a separate actions layer that you create, in a frame numbered the same as where that button exists, you would add the event listener:
    btn1.addEventListener(MouseEvent.CLICK, btn1Click);
    The name of the unique function for processing the clicking of that button is specified at the end of the event listener assignment, so now you just have to write that function out:
    function btn1Click(evt:MouseEvent):void {
       var url:String = "http://www.awebsite.com/awebpage.html";
       var req:URLRequest = new URLRequest(url);
       navigateToURL(req);
    ... how do I know it's properly placed on the correct area?
    What area?  If you place it where you want it, that should be correct. (?)
    ... how do I make sure it's invisible...?
    If you can't see it when you test the file and you know it's there and your cursor turns into  a hand when you are over where it should be, it's invisible.
    ...how do I see the other objects in the flash file I'm working on?
    Select Edit -> Edit Document to get out of the symbol editing mode and back to the file editing mode.  If you doubleclick an object on the stage, rather than clickingit in the library, you open it up in editing mode on the stage, but the stage and everything else will still be visible behind it in a faded tone.

  • New to Flash - Graphic Animation

    I bought a web template last week and I am trying to figure
    out how they created the animation! The link is below.
    http://inquery.biz/beta/flash/header.swf
    I want to be able to create that same animation to the
    graphic below. I have the source flash file if need be. I am new to
    flash so any help or pointers would be great! Thank you.
    http://inquery.biz/beta/flash/default.swf

    Thank you that would be awesome! Can you email me it please?
    Thanks again-
    gmatteson
    at
    inquery
    dot
    biz

  • Character Animation Suite

    Hi all,
    I hope this is the right place to post this:
    I'm looking for a character animation suite for AE. An ideal solution would be this: a plugin which let's users create a rig, animate it and save the complete animation (or animation-loop) to be used on different characters. The ability to blend between different animation-sets would also be really neat. I know that e.g. 3DSMax has these functions. Is there anything remotely similar for AE? Do you have any pointers?
    Thanks, Michael

    I am not aware of such a comprehensive package.
    For character rigging, you can use iExpressions or DuiK.
    iExpressions can do way more than character rigging, but here are some tutorials that give an idea where it is helpful for character animation
    http://mamoworld.com/tutorials/puppet-animation-ik-expressions
    http://mamoworld.com/after-effects-expression/change-marker-2d
    iExpressions - aescripts + aeplugins - aescripts.com
    Maybe you also explore the other scripts at aescripts in the character animation category
    Character Animation - Animation - After Effects - aescripts + aeplugins - aescripts.com

  • Character Animation: Movie Clip or Graphic Symbols?

    Should I use Movie Clip or Graphic Symbols for Character
    Animation? What do people who make TV shows use. If I'm not
    planning on manipulating any symbols with ActionScript and I'm not
    using a symbol that requires it's own time line like a walk cycle,
    is there any reason to use movie clips symbols? If I put my
    animation on the web will it download noticeably faster if I use
    graphic symbols instead of movie clip symbols?

    What I meant is, there are different ways of setting up a
    workflow for Flash animation. Studio animators are trained in
    traditional frame-by-frame animation. So their workflow is usually
    to do the same in Flash: make every frame a keyframe, then copy and
    paste everything from one frame into the next, then make whatever
    changes are needed. A classically-trained animator can get a good
    momentum working this way.
    But for making the most streamlined SWF files, this method is
    not the best. It's much better to rely on library assets, place
    major parts or sets of parts on different layers, and only keyframe
    those things that need keyframes. If good planning is done in
    advance, it can be just as fast as doing straight-ahead keyframed
    animation.
    Either method may end up with the same result. But when you
    want to go back and tweak things, it's a whole lot easier to do it
    when method 2 is used.
    I'm sure I'm not very clear. PM me and I'll send you a list I
    created of "best practices" which I give to e-card animators.
    One of these best practices is: place a thumbtack on the "G"
    key on your keyboard. The very WORST habit that is taught to studio
    animators using Flash is to use neither Graphics nor Movie Clips,
    but to immediately click Ctrl-G every time they draw something.
    This creates a Group. It's faster than hitting F8 and typing in a
    name, but it causes ENORMOUS problems, especially when doing
    retakes and revisions. And it results in gargantuan SWF files.
    I literally GLUED a thumbtack to one one animator's keyboard,
    since he seemed unable to remember this rule. Luckily this wasn't
    in America, or I'd have been charged with grievous bodily
    assualt.

  • New After Effects CC 2015 Character Animator Feature

    Hi, the new After Effects CC 2015 character animator feature looks amazing. Is this compatible with Photoshop CS6 or would you have to use the Photoshop CC version?

    > How do you download a free trial version of AE CC
    "Free Trial" button in the upper right corner of this page: http://www.adobe.com/products/aftereffects.html
    > would you be able to record the animated facial features and then tie this in with the pre-recorded sound afterwards?
    Yes, you can mix and match separate performance tracks ("takes") per puppet.
    > when you take the finished animation into AE can you further manipulate in the AE timeline - facial features, body etc?
    Once you're back in AE, it will be pixels, so you'd do further edits in Character Animator before bringing into AE. Though you could, say, just do the head or lips in Character Animator and then attach them to a body done in AE.
    > I guess I am wondering if this software would be good enough for professional character animation.
    If it's not, please us know why so we can fix it! Note that this first version is a "preview" so don't expect the usual polish & completeness of a shipping app. It will install (as a companion app) automatically as part of the next AE CC update.

  • Troubles importing Flash 10 Animation with 3D Transform

    I am looking for any workaround/experiences for importing a Flash 10 animation with 3D transforms. Currently, doing this will wig out Captivate 4 and break the embedded animation in all sorts of ways. AS3 support in Captivate is turned on and the same animation will load and play correctly if the 3D transform is removed. All other Flash 10/AS3 possibilites work including motiosn graphs and filters.
    I find the 3D transform option of Flash CS4 to be one of the most powerful features ever introduced in Flash and would allow some incredible breakthrough design possibilities for my Captivate projects, if it would just support it! Any experiences with this issue welcomed. A bug report has been submitted also, but looking for a quicker remedy.

    Problem Resolved!
    I got this tip from Vikram (Adobe Support)
    1. Open your project having Flash Player 10 animations involving 3D transforms.
    2. Click the Edit menu and select Preferences.
    3. Select "Publish settings" under the "Project" section.
    4. Check "Animations" option under the "Externalize resources" section.
    5. Press OK.
    6. Now click the publish button.
    7. In the publish dialog, select Flash Player 10 from the "Flash Player version:" drop down.
    8. Click publish.
    (F4 preview may not work, so use preview in browser)
    Also, you may need to be wary of embedded scripted symbols as they may loose reference to the parent symbol after being embedded in yoru your CP4 project containing 3D transforms. My advice here is to try to script using as much object oriented js as possible in the main timeframe.
    I am using a combination of localConnect and ExternalInterface functions to control the 3D animation from captivate quiz buttons. This process adds a whole new level of interactivity and visual interest to your captivates!

  • I can't open swf files for schoolwork. Installed VCL, Flip4Mac and Adobe flash and shockwave players. Can get white screen with connection erro message with adobe flash player. Help me!

    i can't open swf files for schoolwork. Installed VCL, Flip4Mac and Adobe flash and shockwave players. Can get white screen with connection erro message with adobe flash player. Help me!

    Apple dropped playback support for .swf formats in QuickTime almost ten years ago.
    Adobe Flash Player is the only way to view them.

  • I have the 10.7.4 and I cannot get the Flash Player ,, please help me.

    I have the 10.7.4 and I cannot get the Flash Player ,, please help me.

    If you downloaded it, it's likely in your Downloads folder as a Disk Image .dmg. Just open it and intall Flash player and restart your browser. Everything should work.
    Clinton

  • How to Bring a Flash CS5 Animation into Fireworks CS5

    I am using a IMac with OSX 10.6.8. I am attempting to bring a Flash CS5 animation into Fireworks with individual frames
    and transparent background. I need some ideas here.
    thanks
    Paul

    Flash documents are not supported by Fireworks.

  • Can Adobe Flash interactive animations be embedded into DPS indesign?

    Hi...
    I want to find out if i can create my flash interactive animation into an offline application through DPS indesign? Is it possible to embed the flash file in indesign?
    Thanks

    No.

Maybe you are looking for

  • IPhoto's corrupts entire photo database.

    I have had it with iPhoto. For the 2nd time in 2 years iPhoto corrpts the entire database and is not able to restore it. Even the timemachine backup does not work. How come Apple ia not able to make a decent photo program? Anyone suggestions for an a

  • Project Pro for Office 365 or not?

    Hello, What are the differences between the two "MS Project" we can download from these two web pages of Office 365 : are they the same product? Your Office, on request   Software: install of the last version of Project: Thanks and regards

  • Problems installing Cocoon 1.8.2 under Weblogic 6.0sp2

    Hi all, In order to install Cocoon 1.8.2, I have created a new WebLogic server for it, listening on port 7003. I have achieved to show the Cocoon.xml test page successfully, but trying the samples the exception page is shown. Any help? Thanks in adva

  • Is there a Oracle site for user to practice Portal?

    Hello, Is there a Oracle site for user to practice Portal? Thank you for your attention, Emily123

  • Copy/paste a cluster of text boxes to a new document. They all paste rotated 90°.

    The orientation of both documents is identical - 11x17, landscape. I have tried rotating the source document before copying. I've tried rotating the target document before and after copying. I've played with the printer settings, page setup, orientat