Hi there,
I have been able to change this:
to this....
by changing the following code:
var front = stage.frame.makeIcon().sca(1.1);//THIS LINE
back = new Page(front.width,front.height,blue,green);
var answer = answers[index++];
asset(answer).clone().scaleTo(back,95,95).center(back).ble("multiply");
var card = new Flipper(front, back, null, null, null, null, null, false, false).centerReg({add:false});
card.answer = answer; // store on card for ease of collection
return card;
}
to this...
var front = new Rectangle(150, 100, "#76ccbc").centerReg();
What I would like to do is to change the front card to an wooden image.
I am stuck on how to do this. Just wondering if you might have some thoughts on this.
Thank you
Rod