I am using this example to create a canvas etc. What I would like to do is move the position of the yodaGroup or yodaImage via button click. Has anyone ever done this or know how to do this?
Here is where I am at.
var yodaGroup = new Kinetic.Group({
x: 250,
y: 30,
draggable: true
});
I want to adjust or add to the x and y cordinates for the yodaGroup above using a button click that triggers this function below
// need to figure out this function this is just an example as I don't know how to define for the yodaGroup above as it doesn't have an id or class tied to it.
function left() {
yodaGroup.x += 5; // move image by 5px
}
