Details: I'm working on a BlackBerry app, and one of the feature is signature capture for that i am using the sample code giving here.
i am facing one small problem.
my application's screen consits
header, 2 labels and SignatureField in vertical manager.
message.getMovePoints(1, xPoints, yPoints, null);
is giving absolute points (relative to screen)
and
_graphics.drawPathOutline(xPoints,yPoints, null, null, false);
is drawing a path realative to field because of that touch and drawing is not in sync.
question: is there any way to get relative points from message.getMovePoints(1, xPoints, yPoints, null); this method. or is there any other way to solve this problem?