Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8021589
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T22:01:52+00:00 2026-06-04T22:01:52+00:00

I have trouble with animations in my application and the fact that the system

  • 0

I have trouble with animations in my application and the fact that the system time can be changed. I create animator object this way :

animator = new Animator(600, Animator.INFINITE, Animator.RepeatBehavior.REVERSE, setter);

The setter is an alpha property that is varying from 0.0 to 1.0.
The problem is that whenever i change the system time, the animation stops/blocks. It restarts sometimes after a while, depending on the system time i set.
Is there a way that i can fix this ? Thanks a lot.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T22:01:54+00:00Added an answer on June 4, 2026 at 10:01 pm

    Put in a Timer and schedule to work during the same time duration of the animator (timer’s run method will instantiate the animator object). So whenever the animator stops it will be re-instantiated like the following way:
    The timer methods check if the animator is working or not, and when the answer is negative, it will instantiate another animator with the same parameters but only to animate in a period time duration equal to the remaining time.

    Code example:

    public void execute() {
    start();
    timer_.scheduleRepeating(100);
    }
    
    public void start() {
        timer_ = new Timer() {
           public void run() {
            update();
            }
        };
    }
    
    
    public void update() {
        if (time > neededTime) {
            timer_.cancel();
        }else {
          if(!animator) {  //needs some optimization
            animator = new Animator( ....
          }
        }   
     }  
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a question regarding CSS3 animations/transforms. Typically, I can always find my way
I have trouble figuring out why a simple division like this one always returns
I have trouble doing this... You may want to get the same result as
I have trouble to understand how dependency properties can be used between C# and
I have an application that retrieves an XML file, parses it, and then displays
I am having a little trouble getting this to work. I have several anchor
I have this method that usually works, but lately it has been giving me
I have User-settings page in my ASP.Net MVC3 application. This page contains a lot
I'm having trouble with tearing and flickering in WPF animations. I have a toy
I have a set of animations that need to operate sequentially with various checking

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.