1.4rc2 runAction中使用cc.moveTo有问题

见如下代码:
this.node.runAction(cc.sequence(
cc.moveTo(0.25,cc.p (195, -100)),
cc.callFunc(function () {
cc.log (“Oh, no1”);
this.node.position = cc.p (195, 0);
//并没有看到节点恢复原位
},this)
));
this.scheduleOnce(function () {
cc.log (“Oh, no2”);
this.node.position = cc.p (195, 0);
//一样的,经过了runAction之后,再操作也无法让节点改变位置
},0.3,this);

节点的位置再也更改不了了,1.3.3版本上述代码是没有问题的.

测试环境是:windows, 内置的模拟器预览器

rc3说明了已经修复这个问题