Animating based on Data updates - best approach? (AS3/.swf)
I'm looking for the best approach to moving a looping animation from point to point based on incoming data being pulled from a JSON file via AS3.
This is a quiz type scenario with 12 questions. All 12 questions are on this JSON and have a start status, end status, and how many people got it right. The idea is to move an object across the screen in a linear fashion based on which question is open... 12 way points, question 1 to the left, question 12 to the right (2-11 in the middle). Animation starts hovering over the question 1 way point until it ends (displaying # of people who got it right), then moves to hover over question 2 way point... rinse and repeat till question 12.
Canvas size is 1080 (for broadcast television) and I'm looking to confine this to the lower third of the screen (conserving resources as much as possible). I'm able to pull the data and get them into text objects on the canvas; now I need an approach to getting an object to move based on question status data.
Any help or advice would be appreciated.
Thank you for your time.