Привет!
Масштабируешь контейнер, а координаты мышки с рута берешь.
Исправь:

Код AS1/AS2:
...
planshet_mc.onPress = function() {
penUp = false;
lineCount++;
this.createEmptyMovieClip("inLine"+lineCount, this.getNextHighestDepth());
this['inLine'+lineCount].moveTo(this._xmouse, this._ymouse);
this['inLine'+lineCount].lineStyle(5, lineColor);
};
planshet_mc.onMouseMove = function() {
if (!penUp) {
this['inLine'+lineCount].lineTo(this._xmouse, this._ymouse);
updateAfterEvent();
}
};
...