Hey,
I'm just working on an interface based on the newXY template. How would I go about changing the size of the 'touch' square (the element which I'm actually moving with my finger)?
Hey,
I'm just working on an interface based on the newXY template. How would I go about changing the size of the 'touch' square (the element which I'm actually moving with my finger)?
Hmmm, try putting the following line within the oninit method of the MultiTouchXY widget:
$(".touch").css( { 'height': '30px', 'width': '30px' } );
... and change the 30 to whatever value you want. - Charlie