I'm trying to animate an image using KineticJS to move across the screen, but I keep getting not a function errors. The image displays fine, but it keeps saying that imageObj.move is not a function and I have no idea why. I'm kinda new to javascript and KineticJS, so I could just be making a really basic error, so some help would be very welcome. Thanks!
window.onload = function(){ //init function
var stage = new Kinetic.Stage("container", 600, 600);
var fluffyImgLayer = new Kinetic.Layer();
var imageObj = new Image();
imageObj.onload = function(){
imageF = new Kinetic.Image({
x: 0,
y: 250,
image: imageObj,
});
fluffyImgLayer.add(imageF);
stage.add(fluffyImgLayer);
}
imageObj.src = "Flutter_Fluffy_100.png";
stage.onFrame(function(frame){
console.log("fired")
imageObj.move(10,10);
fluffyImgLayer.draw();
});
var period = 2000;
stage.start();
}