Keyframe animation does not move smoothly

Hi!
I made a keyframe animation where a .psd file (logo of the music group) slowly "floats" acros the screen. The motion should look smooth like a boat in a river or a cloud in a sky, but now the motion is sticky and the logos motion looks like there was sand in a ski track. Not like ski´ing with no snow at all, but little sticky moments that breaks the illusion of the nice and smooth motion.
I tried De-interlace, Flicker-filter, *Stop motion blur* and *Wind blur*, but not any of them produced too good results.
It is a logo with quite thin white lines in it, so that might be a reason why problem occurs, but if there was any ideas how to make keyframe animation smoothier, them would be appreciated.

The problem is same in rendered and exported material, and it is not only in the logo with thin lines, but thicker text behaves similarily:
http://www.youtube.com/watch?v=fqT5VHcJsus&feature=channel_page
Earlier I have made same kind of animations without any jittering...
Might it be the lenght of the keyframe animation?
If the relation of the of the movement and the used time happened to be something like that that the text moves one pixel in every 1.5 frames so that in rendering the application does not know should it move the image 1 or 2 pixels per frame and then it does both, which causes the jitter...
I check if problem could be cured by changing the duration...

Similar Messages

  • Lenovo G50 mouse does not move smoothly

    Hello, I recently bought a Lenovo G50. Today the pointer of mymouse (touch pad) does not move smoothly. That's very irritating. Someone has an idea what the cause (and solution!) is? King regard, Marije

    Hi Marije,
    Welcome to the Forums  
    As per the query we understood that you are facing issue with touchpad in your Lenovo G50 laptop.
    Try to increase the sensitivity of the touchpad and check for the issue, also boot the system into safe mode and check for the issue.
    Click here for the driver for windows 7.
    Click here for the driver for windows8.1
    Hope this helps. Do post back if the issue persists.
    Best regards,         
    Ashwin. S

  • Animation symbols not running smoothly in interactive pdf

    I created an animated symbol on flash and placing it on the interactive pdf has been quite successful, except it does not animate as smoothly as I hoped it would.
    Instead of looping a smooth animation on its own it requires the mouse to be hovered over the element area in a kind of sweeping motion in order for it to play keyframes, and sometimes with relatively smooth success and other times not. I've tried running the pdf in adobe reader in different computers and achieve the same results.
    It was made for the NavCardSelected instance and the symbol itself is a relatively simple 'growing vine' animation, if that helps elaborate any more. Anyone have some kind of workaround to this?

    I would check the Flash/SWF code to see if it requires any special events to be sent.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Thu, 26 Jan 2012 22:26:58 -0800
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: animation symbols not running smoothly in interactive pdf
    animation symbols not running smoothly in interactive pdf
    created by michpan<http://forums.adobe.com/people/michpan> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4168230#4168230

  • Initial postion of image changed but now image does not move

    hi can any one solve this problem please, i have been trying to change the initial position of my image when i run it 1st on java textpad......
    i seem to have moved the initial position of the image by the following >
    public void paint(Graphics g) {
              g.drawImage(CurrentImage,xPos = 10,yPos = 100,this);but now the image does not move when i press the keys in its new position
    does anyone one know how to solve this?? if you do please reply THANK you.
    the original code is below >
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.io.File;
    import java.io.IOException;
    import javax.sound.sampled.*;
    import javax.sound.midi.*;
    import javax.swing.*;
    import java.awt.Image.*;
    public class Man3 extends Applet implements KeyListener {
         int xPos, yPos;
         Image man1;
         Image man2;
         Image man3;
         Image man4;
         Image man5;
         Image man6;
         Image CurrentImage;
         Image offScreenBuffer;
         AudioClip tune;
         public void init() {
              setBackground(Color.white);
              xPos = this.getSize().width/2;
              yPos = this.getSize().height/2;
              man1 = getImage(getCodeBase(),"man1.gif"); // right hand up
              man2 = getImage(getCodeBase(),"man2.gif"); // straight
              man3 = getImage(getCodeBase(),"man3.gif"); // right hand down
              man4 = getImage(getCodeBase(),"man4.gif"); // left hand up
              man5 = getImage(getCodeBase(),"man5.gif"); // straight
              man6 = getImage(getCodeBase(),"man6.gif"); // left hand down
              CurrentImage = man2; // man facing right
              addKeyListener(this);
              requestFocus();
              tune = getAudioClip(getCodeBase(), "Track.wav");
         public void paint(Graphics g) {
              g.drawImage(CurrentImage,xPos,yPos,this);
         public  void checkXmin()
                   if (xPos == 0) xPos = 500;
         public  void checkXmax()
                   if (xPos == 500) xPos = 0;
         public void checkYmin()
                   if (yPos == 0) yPos = 350;
         public void checkYmax()
                   if (yPos == 350) yPos = 0;
         xPos+=1;
         if (xPos>500) xPos=0;
         if (xPos==0) tune.play();
         // man walks right
         public void checkCurrentImageRight()
                   if((CurrentImage == man6)||(CurrentImage == man5)||(CurrentImage == man4))
                        CurrentImage = man2;
                   if(CurrentImage == man3)          CurrentImage = man1;
                   else if (CurrentImage == man1)     CurrentImage = man3;
                   else if(CurrentImage == man2)     CurrentImage = man1;
         // man walks left
         public void checkCurrentImageLeft()
                   if((CurrentImage == man3)||(CurrentImage == man2)||(CurrentImage == man1))
                        CurrentImage = man5;
                   if(CurrentImage == man6)          CurrentImage = man4;
                   else if (CurrentImage == man4)     CurrentImage = man6;
                   else if(CurrentImage == man5)     CurrentImage = man4;
         public void keyPressed(KeyEvent evt) {
              int offset;
              int x = evt.getKeyCode();
              if (evt.isShiftDown()) {
                   offset = 20;
              else {
                   offset = 10;
              switch (x) {
                   case (KeyEvent.VK_UP):                     // man goes up
                             checkYmin();
                             //checkCurrentImage(2);
                             yPos -= offset;
                             break;
                   case (KeyEvent.VK_DOWN):
                             checkYmax();
                             //checkCurrentImage(2);          // man goes down
                             yPos += offset;
                             break;
                   case (KeyEvent.VK_LEFT):               // man walks left
                             checkXmin();
                             checkCurrentImageLeft();
                             xPos -= offset;
                             break;
                   case (KeyEvent.VK_RIGHT):               // man walks right
                             checkXmax();
                             checkCurrentImageRight();
                             xPos += offset;
                             break;
              repaint();  // display image
         public void keyTyped(KeyEvent evt) {
         public void keyReleased(KeyEvent evt) {
        public void update(Graphics g)
            // Will hold the graphics context from the offScreenBuffer.
            // We need to make sure we keep our offscreen buffer the same size
            // as the graphics context we're working with.
            if ((offScreenBuffer==null) || (offScreenBuffer.getWidth(this) != getWidth()) || (offScreenBuffer.getHeight(this) != getHeight()))
                xPos = getWidth()/2;
                yPos = getHeight()/2;
                offScreenBuffer = this.createImage(getWidth(), getHeight());
            // We need to use our buffer Image as a Graphics object:
            Graphics gr = offScreenBuffer.getGraphics();
            gr.setColor(getBackground());
            gr.fillRect(0, 0, getWidth(), getHeight());
            paint(gr); // Passes our off-screen buffer to our paint method, which,
            // unsuspecting, paints on it just as it would on the Graphics
            // passed by the browser or applet viewer.
            g.drawImage(offScreenBuffer, 0, 0, this);
            // And now we transfer the info in the buffer onto the
            // graphics context we got from the browser in one smooth
    }

    Not only is this your 7th or 8th posting on this topic, you can't even wait 15 minutes before bumping the posting.
    Your question is no more important than anyone elses on the forum and continually posting, starting new threads on the same topic is one sure way to get your posting ignored.

  • End Routine Issue - It does not move data from E_T_RESULT to RESULT_PACKAGE

    Hi,
    I am facing an issue with end routine. I have gone through previous posts on, how to write end routine and all.I wrote the end routine accordingly.
    Here is my scenario,
    I have 0CUST_SALES master data , which has all the Sales Org, Distribution Channel and Division, Sold to Party, Sales Grp and Sales Dist.
    I am getting , Sold to party and Distribution channel at the field routine.
    I am using, Sold to Party and Dist Channel and Division = '01'- whatever i populated using a field routine  and trying to get the Sales Org, Sales Grp and Sales Dist at the end routine.
    It looks like, all the code that i wrote seems correct but it does not populate any values into RESULT_PACKAGE.
    Here is the code I wote at the end routine. I am not sure, whats wrong in it. I used, this link to write this routine :
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/203eb778-461d-2c10-60b3-8a94ee91cbfc&overridelayout=true
    Global Declaration----
      DATA : BEGIN OF IT_CUST_SALES,
        DIV TYPE /bi0/pcust_sales-DIVISION,
        DIST_CH TYPE /bi0/pcust_sales-DISTR_CHAN,
        SALES_ORG TYPE /bi0/pcust_sales-SALESORG,
        CUST_SAL TYPE /bi0/pcust_sales-CUST_SALES,
        SALESDIST TYPE /bi0/pcust_sales-SALES_DIST,
        SALESGRP TYPE /bi0/pcust_sales-SALES_GRP,
        END OF IT_CUST_SALES.
    DATA: T_CUST_SALES LIKE TABLE OF IT_CUST_SALES.
    Start of End Routine
       SELECT DIVISION DISTR_CHAN SALESORG CUST_SALES SALES_DIST SALES_GRP
        from
        /bi0/pcust_sales INTO TABLE T_CUST_SALES for all entries in
        RESULT_PACKAGE
        where CUST_SALES = RESULT_PACKAGE-SOLD_TO
         AND DISTR_CHAN = RESULT_PACKAGE-DISTR_CHAN
         AND DIVISION = '01'.
        LOOP AT RESULT_PACKAGE INTO e_s_result.
          READ TABLE T_CUST_SALES INTO IT_CUST_SALES
              WITH KEY CUST_SAL = e_s_result-SOLD_TO
                 DIST_CH = e_s_result-DISTR_CHAN
                 DIV = '01'.
          IF SY-SUBRC EQ 0 .
            MOVE IT_CUST_SALES-SALES_ORG TO E_S_RESULT-SALESORG.
            MOVE IT_CUST_SALES-SALESDIST TO E_S_RESULT-SALES_DIST.
            MOVE IT_CUST_SALES-SALESGRP TO E_S_RESULT-SALES_GRP.
            APPEND E_S_RESULT  TO  E_T_RESULT .
          ENDIF.
        ENDLOOP.
        REFRESH RESULT_PACKAGE.
        MOVE E_T_RESULT[] TO RESULT_PACKAGE[] .
    End End Routine
    Data comes into E_T_RESULT but it does not move to RESULT_PACKAGE. Any inputs will be helpful.
    Regards,
    Kumar

    Hi Hegde,
    Declaration is same , its like this.
       datA: e_s_result type tys_TG_1.
        data: e_t_result type tyt_TG_1.
    I don't know, when i inserted this code in this post, initially it was OK but once i post i also saw , its not that read friendly.
    FYI, i am trying to put the code again, lets see if it works.
      SELECT DIVISION DISTR_CHAN SALESORG CUST_SALES SALES_DIST SALES_GRP
        from    /bi0/pcust_sales INTO TABLE T_CUST_SALES for all entries in
        RESULT_PACKAGE   where CUST_SALES = RESULT_PACKAGE-SOLD_TO
         AND DISTR_CHAN = RESULT_PACKAGE-DISTR_CHAN
         AND DIVISION = '01'.
        LOOP AT RESULT_PACKAGE INTO e_s_result.
          READ TABLE T_CUST_SALES INTO IT_CUST_SALES
              WITH KEY CUST_SAL = e_s_result-SOLD_TO
                 DIST_CH = e_s_result-DISTR_CHAN
                 DIV = '01'.
          IF SY-SUBRC EQ 0 .
            MOVE IT_CUST_SALES-SALES_ORG TO E_S_RESULT-SALESORG.
            MOVE IT_CUST_SALES-SALESDIST TO E_S_RESULT-SALES_DIST.
            MOVE IT_CUST_SALES-SALESGRP TO E_S_RESULT-SALES_GRP.
            APPEND E_S_RESULT  TO  E_T_RESULT .
          ENDIF.
        ENDLOOP.
        REFRESH RESULT_PACKAGE.
        MOVE E_T_RESULT[] TO RESULT_PACKAGE[] .
    Regards,
    Kumar

  • Itunes 11.1.3.8 shows a speaker icon in front of the seclection but it is not playing. the progress bar does not move. there are speakers attached to the system and all other programs do profuce an audio output.

    itunes 11.1.3.8 shows a speaker icon in front of the seclection but it is not playing. the progress bar does not move. there are speakers attached to the system and all other programs do profuce an audio output.

    Go to the Edit -> Preferences-> Playback
    In The bottom section of the page click the drop down menu by Play Audio Using and select Windows Audio Session or something other than "Direct sound" or whatever it displays. Click Okay. This worked for me! I hope it works for you too!
    Thanks,
    John

  • Item does not move from Workflow Inbox to Work Item Executed by me

    Hi experts,
    We have implemented workflow inbox for invoice payment. After archive document in OAWD, we will do posting through Workflow inbox. After posting, the item should go to 'work item executed by me' folder. But the problem is the work item is still in the workflow inbox. What should we do? Pls help. This is urgent. Correct answer will be rewarded, TQVM in advanced.
    Rgds,
    Nanie

    Hi Arianie,
    First check the status of your WORK ITEM ID. You can check it in SBWP or in SWI6 transaction.
    If your work Item ID still remains in the SAP Inbox & does not move into outbox i.e. "work Item Executed by me" then it may happened that your workflow is not triggered after users/responsible agents action completion. You can check the graphical status in SWI6 transaction itself.
    Also check whether your Work Item ID's status is not "ERROR" . If it is "ERROR" then you need to resume the work item ID (Whose status is Error) to start/recall the workflow.
    Thanks
    Pravin

  • Firefox does not run smooth while loading websites.

    Firefox does not work smoothly when it is loading any webpage. Specially, when I open new tabs and load new websites while it is still loading last website in other tab, the situation becomes worse. Main problems that occur are - page will not scroll, or scrolling hangs for a sec or so, works a little bit and it happens repeatedly, new tabs will open but not smoothly, website loading also gets affected in similar way. The dot that revolves on tabs while loading any webpage gets really annoying. It revolves intermittently. Imagine a car engine not starting, it starts, stops, starts, stops. That's what happens with Firefox. But once all webpages are completely loaded and scrolled 2 or 3 times from top to bottom of the page, then it is all good. All the problems occur when page is still loading in fore- or background in any or all of the tabs. I tried to run Firefox with all add-on and plugins disabled, tried to refresh Firefox from troubleshoot information. But nothing helps. I even uninstalled and reinstalled Firefox. I guess my laptop is not having memory issues. I am using Windows 7 x64 based system. RAM is 4 GB. All other software work well. Most importantly, Chrome has no such issues in comparison to Firefox. Also, when IDM (internet download manager) takes over some downloads, the Firefox hangs for few seconds. Please help.
    Thank you.

    You can try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    You need to close and restart Firefox after toggling this setting.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window

  • HT1553 my macbook pro is frozen and does not move from loading screen. Can you help?

    my macbook pro is frozen and does not move from loading screen. Can you help?

    Call Apple Support and schedule a appointment for a hardware check, or take it into a Apple Store.
    We can't help you with that problem.
    Good Luck

  • Playing back music on Itunes stays on 0.00 and counter does not move

    Hi When I try to play any music in Itunes the counter stays at zero 0.00 and does not move along. I found this thread which best describes my problem so appears to affect quite a few others: http://discussions.apple.com/thread.jspa?threadID=1205504&start=30&tstart=0 however I have tried all the possible solutions discussed on there without success. My operating system is XP Pro. This has happened several times in the past and quite frustrating (only a reboot normally fixes it but there has to be a reason why this keeps happening). Music and video plays fine on other media players (same as users in the thread attached). My wife's Itunes also does it and she is running Vista on her laptop. By the way I have the latest Itunes updates/versions etc and have also tried restoring to earlier backups - all without success. It was playing fine the other day with exactly the same updates just not today. Thank you for any help.

    Same here, only it will sync, but extremely slow!

  • Mouse pointer does not move between monitors

    my mouse pointer does not move between displays all of a sudden !

    ok, I am using magic mouse, mac mini with two displays,
    was working fine, but now when I started the computer recently it does not want to move the mouse to the other screen.
    the other screen is open but it is not possible to move anything over to it !!
    tried to restart reset the display settings etc. but no luck !!

  • Rdiohead album In Rainbows does not move to iPod

    After importing the album, I had two bands with the name Radiohead in the iTunes list (?). In Finder, I found that the original folder was Radiohead while the new one was Radiohead_ . The latter contained In Rainbows album, in the former there were the other albums. After converting the mp3 files in Toast to AAC files I had all the albums in a single Radiohead folder. Here I thought that everything is ok but then it turned out that iTunes does not move the In Rainbows album to iPod. I cannot figure out what's gone wrong. Suggestions? I have never before seen this behavior with iTunes.

    Just curious, why did you convert the album from mp3 to AAC?
    Converting one lossy format into another simply loses more info along the way and will serve nothing other than to compromise sound quality.

  • OS X Mavericks 10.9.3 Does Not Run Smoothly

    Hi,
    I just upgraded my iMac and MBP from the Mac OS X ML 10.8.5 to the latest OS X Mavericks 10.9.3.
    The new system does not run smoothly.
    No matter it's the iMac or the MBP, the screen freezes for a very short of time whenever I try to switch to a different running program(especially when I try to switch to other programs from the Safari).
    So what's causing the problem? What should I do about it?
    Thanks.
    Ed

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
    SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
    View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    ☞ The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    ☞ Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Animation does not play automatically when published

    I am having a problem with swf files that do not play automatically in my project. Actually some do and some do not. I have the properties set to no transition and rest of slide and even tried rest of animation. The slide works when I play it but when I preview the project the animation does not start. Sometimes I can click the play button and it will play but the other objects will have started so the timing is off.
    Does anyone have any suggestions to try?  Thanks Emily

    Welcome to our community, Emily.
    Usually things pause because there is a Button, Click Box or Text Entry Box object on the slide and these objects pause the slide waiting for user interaction.
    Do the slides where you are seeing animations stopping have any of these objects? If so, you may need to tweak the pause point. (indicated by the double bars ( || ).
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • InDesign DPS: Simple animation does not work in folio?

    I'm building a simple recipe app using InDesign CS6, using the Digital Publishing tools.
    On one page I applied an animation, "fly in from bottom" to an object.
    When I eventually build the folio and view it on my ipad with the Adobe Content Viewer, the animation does not work on that page.
    I've watched a couple tutorials on how to use the animation tools, how to set the path, etc. but none of them mention any other steps for getting the animation to work once you build the folio.
    Am I missing something?
    Thanks!
    Bruce

    Okay, I'm gonna try helping out on this....  I don't think layers have any effect on this, or at least I haven't noticed they do, the just help keep you organized and maybe for arrangment...
    So....
    You can just lock the background, it isn't involved, it is just the background.
    1. Make your button to open/start the sequence and make your finished state and an empty box.  In this case the button the button is just a text frame.  The finished state is a shape, text frame and two lines grouped (to make an "x" for the close button).  In your case it will be your image sequence and the button to close it.  Have all the elements of the finished state grouped.
    2. Select both groups.  In the object states panel, hit the new button.  you should now have a multistate object with two states.  One empty state and one state with your sequence, etc..
    3. Now select your open button.  In the button panel, choose the add action button "+" and choose Got to State (or go to next state) and make sure the object is the multistate object you just created.  For the state, choose the state with your sequence.
    4. Now select your multistate object.  In the object states panel choose the state with your image sequence and close button.  Select your close button.  Go to the buttons panel and add an action to go back to the empty state.
    Test it out, it should work fine now.  I don't have an image sequence handy, but you may have to mess with the autoplay settings, etc.  but it should work just fine.
    Notes of interest:  As buttons display only as raster on an iPad, I find it best to make a clear button on top of the button graphic.  That way the button can be vector. and the clear box becomes raster.
    I really, really reccomend watching some of the videos on Adobe TV, they explain and review a bunch of this.  Also, there is an app called DPS Tips App by Bob Bringhurst for free on the Apple Store, he explains all the goodies quite well.  You can also use Wallaby to convert indesign animation to flash and then HTML5, but that gets more complicated and it can also have a load delay. Good Luck!

Maybe you are looking for

  • Dynamic element binding between XML based PDF form and WDA context

    Hi Experts, I am working on a XML based interactive form.There is a table node in the XML interface which generated by WDA context, and binding on a subform in the PDF form. I tried to add instances to the subform using javascript. Unfortunately, I c

  • E1200 bridge & have WiFi DHCP?

    At my work we have Comcast Business Class, and our LAN uses the Comcast's SMC static 10'net addressing.  Our two POS computers are connected to wall ports that connect to the SMC router (unsure its model number, it's screwed to the wall).  There is o

  • Table for printing condition table

    Dear all, Does anyone know what is the table that actually stored the information with the printing condition record number field (KNUMH) in the table B072? Thank you. Regards, Edwin

  • Report CSS not working after upgrade

    I have been researching this issue for days with no luck.  I recently upgraded a project from VS2008 to VS1013.  During this process, I downloaded and installed the 13.0.10 installer.  Everything seems to work great except for the CSS functionality o

  • Program to insert message types in transport

    Hi, Just wondering if there is any SAP standard program to insert message type in transport.I know there is program to include IDoc type and its segments in transport(Program RSEREPA3).I have lot of custom message types and I want some handy tool for