Hi Rob,
Thanks for that quick response.
Please find the pseudo functions:
On Initializing StartGame function is called ,the game loop simply adds assigns the new co ordinates in to put the object in new location.
The functions which assigns the new position seems to be called more often ie:2x times when laptop is on power.
Initialize()
{ startGame(); }
functionstartGame() {
createjs.Ticker.setInterval(window.requestAnimationFrame);
createjs.Ticker.addListener(gameLoop);
}
functiongameLoop() {
update();
draw();
}