Seemingly Simple Animation Needed

I have 3 words displayed on one slide. I simply want two of them to disappear and the third one to move to the center.
Making the two disappear is easy. I can't figure out how to make the third one slide to the center afterward. I'm using KN2. Can this be done in KN3?
More sophisticated animation capabilities would be nice - like being able to have an object follow a path.
Any help would be appreciated. Thanks.
Steve

I have 3 words displayed on one slide. I simply want
two of them to disappear and the third one to move to
the center.
Well, as it turns out, where there's a will, there's a way. It's not an ideal solution, but I simply repositioned the word on subsequent slides with the slide transition set to automatic and no delay. This simulates movement across the slide. The movement is not smooth, but you can play with transition effects to make it interesting.

Similar Messages

  • Help need in a simple animation

      Hello !
    I hope somebody can help me, i want to make a simple animation to my logo in macromedia flash 8.
    The resource picture is in jpg (but i think i have in png also if that is better) and there is a text next to the logo.The background is black. I want to animate the text line,like its appering from the black.It is as if a cover was drawn before it along.The rest of the picture is fixed.
    How can i do that ?
    Thank You !

    sorry im absolutely new to flash so i dont know how to do that.
    here is the picture http://sherto.deviantart.com/art/Iris-Soft-193301609
    so its like this : at the first frame, there are no text and with 3-4 frames the " I " comes in and etc... the rest.
    as you can see there is a picture close to the texts so i cant cover them with a rectangle tool as big as the text,because it would go into the picture  when moves.
    once again im sorry im new so i cant even move the rectangle above the pic.
    do you have any simple idea for this ?
    anyway thank you for the anwser !

  • Simple animation software for Arch?

    Can anyone suggest a simple animation program for Linux; something similar to AnimationShop for windows.  I know there's gimp-GAP, but that seems to be fairly advanced for my purposes.  I just want to be able to string together images into .gif or video, perhaps with an 'onion layer' feature so you can see the previous frame transparently; that sort of thing.
    I use gnome, so preferably something for GTK, or at least if it's KDE, that depends only on QT and not KDE packages.
    Any ideas?
    Thanks.
    Fishonadish

    skottish wrote:You don't actually need GAP to do animated Gifs in Gimp. All you need to do is add all the frames that you want as layers in one image, then save as Gif. Gimp will ask you if you want to flatten the image or make an animation out of it. If you choose animation, it will ask you for a frame rate.
    Thanks.  I realised this eventually and got it done that way.
    Still, out of curiosity are there any 'film-strip' type animation programs out there?
    Fishonadish

  • HELP MAKING VERY SIMPLE ANIMATION - Adobe Flash CS5

    - First off, apologies for the simplicity of the task I need to carry out- cannot seem to find any tutorials on this. (All aimed at After Effects)
    - I am hoping to make two simple animations;
    1. Animate the word "water" so it appears to be moving like water itself.
    2. Animate the word "sand" so it appears to crumble into sand itself.
    Appreciate any help, very new to Flash - still no luck after Lynda and other tutorials.

    Not exactly the answer to your question but found a tutorial page that could help you.
    Text Effects with Flash Professional 8 « Wonder How To

  • Convert simple animation code from as2 to as3

    Hi everyone,
    I have a simple animation that is controlled by the y movement of the mouse. The code for the animation is put in frame 1 and is as follows:
    var animationDirection:Boolean = false;
    var prevMousePosition:Boolean = false;
    var mouseListener = new Object();
    mouseListener.onMouseMove = function () {
    var curMousePosition = _ymouse;
    if(curMousePosition > prevMousePosition) {
    animationDirection = false;
    }else if(curMousePosition < prevMousePosition) {
    animationDirection = true;
    prevMousePosition = curMousePosition;
    Mouse.addListener(mouseListener);
    function onEnterFrame() {
    if(animationDirection && _currentframe < _totalframes) {
    nextFrame();
    }else if(!animationDirection && _currentframe > 1) {
    prevFrame();
    Is it possible to use this code in as3 or do I need to convert it? I am grateful for any help. Best wishes

    Yes, you need to convert the code. Here is what looks like a similar logic in AS3:
    import flash.events.Event;
    import flash.events.MouseEvent;
    var animationDirection:Boolean = false;
    var prevMousePosition:Boolean = false;
    addEventListener(Event.ENTER_FRAME, onEnterFrame);
    addEventListener(MouseEvent.MOUSE_MOVE, onMouseMove);
    function onMouseMove(e:MouseEvent):void {
        var curMousePosition = mouseX;
        if (curMousePosition > prevMousePosition)
            animationDirection = false;
        else if (curMousePosition < prevMousePosition)
            animationDirection = true;
        prevMousePosition = curMousePosition;
    function onEnterFrame(e:Event):void
        if (animationDirection && _currentframe < _totalframes)
            nextFrame();
        else if (!animationDirection && _currentframe > 1)
            prevFrame();

  • Simple animation triggered by flex event

    I need to have a simple animation, which I suppose I can created in Flash and bring in as a swf -- or can I do it in Flex alone?
    What I need is  a container which, when it receives an event, creates a rect and "drops" it in the container.  Each time it receives an event it  drops another rect in the container. Ideally, the rects try to keep distance from each other so they dont overlap until there are way too many items.
    Possible?  How would you approach this?

    I tell you what this app of yours would wanna be one kick-arse piece of work when its finished
    Anyway to the problem in hand, this is what I would do, from the fired event
    1. create a rectangle object
    2. add the element to the display canvas but off screen -x -y
    3. use animate with a generated random co-ordinate to move  the object to, while the object is animating track its position using a hittest to stop it when it collides with an existing object.(plus a little testing to make sure its fully displayed), repeat if you want to get a more random spread(so it bounces of an object it hits so to speak.
    4. if the object takes to long to find free space call it quits and remove the object.
    The best way is to actually create a layout template, this way you have a nice spread of 'placeholders' you simply fill the 'placeholders' randomly until there are none left, you can even empty them as an option. This way you randomly select off screen co-ordinates and then animate the object into the randomly selected template co-ordinates.
    David

  • Seemingly Simple

    Hello,
    I am trying to create a seemingly simple effect in Motion and having some trouble.
    I am trying to do a simple zoom out from a "fill screen" (text size fills screen) to a hault and then slow crawl (text fills screen, slams to a smaller size and then slowly crawls backward). This is pretty much a standard title animation seen on various trailers.
    The preset behaviors and text animations in Motion aren't getting the result I want, so I decided to keyframe the animation...perhaps a bad idea. In LiveType, it is a simple matter of adding a new effect, and keyframing the scale. Everything stays center and flows well; nobody gets hurt.
    In Motion, I've tried keyframing scale and size, both affect the position of the text on the X axis. In order to have the text fill the screen on the first frame, I have to change its position along the X axis. Then, to make sure it is center by the "slam" frame, I have to keyframe the X axis. This sounds so simple and nothing should go wrong, however the X axis sort of "juggles" the text back and forth creating a sort of swoop from one side to the other. Even stranger, the X axis values do not fluctuate, they continue diminish, so I cannot isolate what is creating the swoop (I do have a number of filters, however). This sound familiar to anyone?
    I've even tried keyframing the position the whole way, but it doesn't work. Plus, the text is sort of crawling back to the side, favoring the left side of the screen (moving from right to left), not center. I don't have any Motion manuals because I did the Universal upgrade deal, so I am a little lost.
    Any help is, of course, greatly appreciated!
    Thanks In Advance!
    ~Athen

    It can be rather simple, if you will do your pan and zoom in Still Life, a very inexpensive and capable program, AND then bring that footage into Motion for whatever you want to do with it in special effects, etc. Of course, you must export from Still Life in iMovieHD or QuickTime before coming into Motion. It worked for me. Of course, there may be complications for you, of which I am unaware.
    Lucky Man
    PBG4 17   Mac OS X (10.4.6)  

  • Duke Pt avail. 2nd time askin, (Flicker-free background) Simple Animation

    2nd time askin, since didn't get sufficient help. Duke Pts available! I am trying to create simple animation on a solid constant background. I used double buffering for moving the object and it works fine. But the problem is with the background image. The image seems to flicker while the object is moving. Here's my code:
    import java.awt.*;
    import java.applet.Applet;
    public class changed extends Applet implements Runnable{
    Image buffer;
    Graphics bufferg;
    Thread main;
    int x=0;
    boolean flag=false;
    public void init(){
    setSize(500,500);
    main=new Thread(this);
    main.start();
    buffer=createImage(getSize().width,getSize().height);
    bufferg=buffer.getGraphics();
    public void run(){
    while(main!=null){
    try     {
    main.sleep(50);
    catch(Exception e){}
    repaint();
    public void stop(){
    if(main!=null){main.stop();}
    public void paint(Graphics g){
    update(g);
    public void update(Graphics g){
    Dimension d=getSize();
    bufferg.setColor(getBackground());
    bufferg.fillRect(0,0,d.width,d.height);
    bufferg.setColor(Color.red);
    Image img = getImage(getCodeBase(),"bliss.jpg");
    if((x<500)&(!flag))
    bufferg.fillRect(x+=5,10,25,25);
    else
    flag=true;
    bufferg.fillRect(x-=5,10,25,25);
    if(x==0)
    flag=false;
    g.drawImage(img,50,50,this);
    g.drawImage(buffer,0,0,this);
    Please help me with this minor problem. I think what's happening is that the background is been drawn over and over again. I don't know how to make it constant and flicker-free.

    Possible 2 things:
    1. You're reloading the image on each repaint:
    Image img = getImage(getCodeBase(),"bliss.jpg");You shouldn't do that, you should just load it in init.
    2. You're drawing the image with the non-buffer Graphics "g" instead of "bufferg." You should use bufferg and draw it before anything else.
    I've modified the code for you, it should work but I can't test it because I don't have bliss.jpg. Let me know if it doesn't work.
    Here's the modified code:
    import java.awt.*;
    import java.applet.Applet;
    public class changed extends Applet implements Runnable {
         Image buffer,img;
         Graphics bufferg;
         Thread main;
         int x = 0;
         boolean flag = false;
         public void init() {
              setSize(500, 500);
              img = getImage(getCodeBase(), "bliss.jpg");
              main = new Thread(this);
              main.start();
              buffer = createImage(getSize().width, getSize().height);
              bufferg = buffer.getGraphics();
         public void run() {
              while (main != null) {
                   try {
                        main.sleep(50);
                   } catch (Exception e) {}
                   repaint();
         public void stop() {
              if (main != null) {
                   main.stop();
         public void paint(Graphics g) {
              update(g);
         public void update(Graphics g) {
              Dimension d = getSize();
              bufferg.drawImage(img, 50, 50, this);
              bufferg.setColor(getBackground());
              bufferg.fillRect(0, 0, d.width, d.height);
              bufferg.setColor(Color.red);
              if ((x < 500) & (!flag)) {
                   bufferg.fillRect(x += 5, 10, 25, 25);
              } else {
                   flag = true;
                   bufferg.fillRect(x -= 5, 10, 25, 25);
                   if (x == 0)
                        flag = false;
              g.drawImage(buffer, 0, 0, this);
    }

  • Simple Animation Sample Form

    Hi,
    I just want to share the code.
    Here's a simple animation, if someone is interested, he/she can download the form and one can modify it according to its needs.
    I made it in Forms 6i.
    Cheers
    http://www.orafaq.com/forum/t/49957/67693/

    hi,
    I checked the form. I didn't find the cursor blinking. Infact as the form starts the cursor moves to the button. The only thing is the item speed. You can change the speed by increasing or decreasing the variable time_passed in when-new-form-instance trigger. And also in the when-timer-expired trigger, you can increase or decrease the x position of the item to make the animation fast or slow.
    In this trigger, you need to change this:
    SET_ITEM_PROPERTY(v_item,POSITION,v_x_pos + 5,v_y_pos);
    change 5 to another value.
    To get the more appropriate result, change the coordinate system to points.
    I think it should be clear now.
    Regards.

  • Non-physics metaballs for simple animations?

    I'm attempting a very simple animation where three circles ease out from the center. I would like these balls to have a metaball (liquid) effect so they appear sticky/liquid, but because I also need full control of the shapes, and physics engines are way overkill for something so simple, I'm hoping there is a much better way to accomplish this besides hand animate this in Illustrator frame by frame (where I do have a very simple metaball script (thanks to Hiroyuki Sato).
    Here's the basic animation.. It's pretty much the same first animation you ever created in Flash LOL:
    http://files.flashvenom.com/uploads/Anim.swf
    So, hopefully you can get what I'm after.
    Any help would be greatly appreciated!

    Yo thanks. The link there - that's totally metaballs. But I'm not trying to do anything interactive / live. I'm animating. There's no user interaction and I need full control of the shapes it produces.
    Not sure if you use blender, but there's modifiers you can apply to shapes. Then you can animate, etc. I'm already done animating it with Illustrator, but I'd still love to find a solution so I can do more animations in the future faster.
    And yeah, Re: Amy... The video on the top of the page that Amy shared is great for what it is, very clean and professional... but unfortunately it's not what I'm after.  And the page has click to buy, register now, free chapter, log in with facebook, (in other words, click bait) everywhere on the page so that's where my crass comment came from.

  • A simple solution needed!

    Hello.
    Excuse my ignorance, but my knowledge of html is very
    limited, which is why this question may seem simple.
    I wondered if there was a way of making a text rollover
    appear to be highlighted like with a highlighter pen. So in the
    normal state it is just black text, but when you rollover it, it
    has a coloured bar behind it covering the entire word?
    Thanks
    S

    > In response to the image swap. I did think of this, but
    someone told me
    > once
    > that this is done using Java, and that a lot of people
    have there Java
    > turned
    > off. But again maybe I am wrong about this.
    You are confused about this. Image swapping is usually done
    using
    javascript (Java and javascript are completely different
    things), and *some*
    people have javascript turned off (maybe 5-10% of surfers)
    for a variety of
    different reasons.
    > In response to the CSS solution, where would i pop the
    bit of code? The
    > only
    > CSS I have done, is by use the built in menues in
    Dreamweaver. And if I
    > can
    > only generally code using the code window, but maybe
    this is where I type
    > it in.
    The CSS I gave you could either be embedded in the head of
    the page -
    <html>
    <head>
    <style type="text/css">
    a { color:black; }
    a:hover { background-color:yellow; }
    </style>
    </head>
    or placed in an external stylesheet, to which the page is
    linked.
    This CSS will affect *every* <a> tag on the page. If
    you need it to be more
    specific than that, I would need to see your page to make a
    modification
    suggestion.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "sempriny" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello
    >
    > In response to the CSS solution, where would i pop the
    bit of code? The
    > only
    > CSS I have done, is by use the built in menues in
    Dreamweaver. And if I
    > can
    > only generally code using the code window, but maybe
    this is where I type
    > it in.
    >
    > In response to the image swap. I did think of this, but
    someone told me
    > once
    > that this is done using Java, and that a lot of people
    have there Java
    > turned
    > off. But again maybe I am wrong about this.
    >
    > Thanks dudes.
    >

  • I am trying to create a simple animated gif in Photoshop. I've set up my frames and want to use the tween to make the transitions less jerky. When I tween between frame 1 and frame 2 the object in frame two goes out of position, appearing in a different p

    I am trying to create a simple animated gif in Photoshop. I've set up my frames and want to use the tween to make the transitions less jerky. When I tween between frame 1 and frame 2 the object in frame two goes out of position, appearing in a different place than where it is on frame 2. Confused!

    Hi Melissa - thanks for your interest. Here's the first frame, the second frame and the tween frame. I don't understand why the tween is changing the position of the object in frame 2, was expecting it to just fade from one frame to the next.

  • How to make simple animation of 2D object ?

    I am a beginner of LABVIEW, and here is my problem...
    For each time loop, I can get a the x,y,theta information of a rigid body in the 2D plane.
    I want to use those data to make a simple animation to represent how the object is moving like in a 2D plane, which includes the 2DOF translation movement and 1DOF rotation movement. 
    How should I do?
    Thanks a lot for helping me!

    You can use XY graph to plot the trajectory of the object.
    Regarding the introduction of the XY graph, you can refer to the tutorial on LabVIEW pro.
    http://www.labviewpro.net/teach_content.php?fid=6&post=308&fpt=5
    This can only represent the XY movement, not include the rotation part.
    I don't think there's any graph control in LabVIEW that can represent the rotation aspect.

  • Simple animation jiggles but does not move

    Im very new to adobe edge, But ive done my reasearch! I have a png on top of a background image and I want the background image to move to the left when the website loads. The simple animation sometimes works after time but it sometimes doesn't when i preview it in my brower. But it works in my timeline. I dont know what im doing wrong and am pressed for time! please help !!!

    so it doesn't do it as bad anymore now that I made the image behind it smaller. But it still takes a while to load and the animations aren't that smooth. any advice on what I can do to make it load faster/animate smoother?

  • Hello, i'm creating a very simple animation in ps cs5, but when I try to transform a smart object in a frame, all the frames are affected by it. What can I do ? Thanks, Ep

    Hello, i'm creating a very simple animation in ps cs5, but when I try to transform a smart object in a frame, all the frames are affected by it. What can I do ? Thanks, Ep

    Ok, you are in frame animation mode. I thought cs5 had a timeline mode, but now I think I was wrong.
    In frame animation mode what you do is in one frame you have the object rotated in one position, then select an other frame and rotate it. If it rotates the first frame, which I think it will. Create duplicate of the object in a new layer. Then rotate the second layer.
    At this point in my example you would have two layers, one of which has a rotated object.
    Clear the frames
    Convert the two layers to frames.
    You now have two frames, one for each layer.
    Select both frames then click the tween button.
    This will create the in between frames.
    In the tween dialog box the higher the number of frames set here, will create a smoother animation but will result in a longer time frame for the animation to play.
    Because Photoshop has no way of knowing which way the object should rotate, it is feasible for it to rotate the opposite direction or could look wonky. Just undo and add an in between layer showing how it should look in the middle, then continue on.
    So your layers should be the following, a frame that shows all objects in their rest state.
    All objects that remain in a rest state must be copied to the next layer (ctrl-j on Windows or cmd-j on Mac)
    All subsequent layers are then used for rotating a duplicate of the object. (Ctrl j or cmd j)
    You will find the commands to clear the frames, convert layers to frames and tweeting in the hidden menu found when you click the small icon in the upper right hand corner of the animation panel.

Maybe you are looking for

  • Web template report error in portal

    Hi, I got this error message when trying to open reports from portal in production. How can I resolve this issue. General exception in deploy transformation for object "WEB_TEMPLATE" I don't get the same error in Quality and Development environments.

  • Using webservices in forms 10g

    hi, i am using webservices in my form. i am doing this by importing java classes and so on as per the webservices documentation. I run this form without any problem through windows. I have the classpath set up with the necessary jar file in default.e

  • Setting up LDAP Server to lookup Connection Factories using JNDI

    Can someone let me know how to setup LDAP server within 10G to lookup connection factories using JNDI? I read through the Advanced Queuing User Guide and Reference document where this is mentioned and it says use the Database Configuration Assistant

  • Old iMessages not showing on iPhone 6 after upgrade from iP5

    Hey guys, I've picked up my iP6 today and I can't see any of the old iMessages I've had. They are still showing on my MBP but not on the new iPhone (MBP is still running Mavericks as I don't want to upgrade before I submit the project for work next w

  • Lenovo Windows 7 Upgrade Program site is broken (forcing 64-bit to 32-bit)

    When I attempt to register my T400 for upgrade to Windows 7 the website offers me the incorrect upgrade. If I set the Original Windows OS installed to: Windows Vista Business 64-bit the Eligible upgrade Windows 7 product is: Windows 7 Professional 32