Hi,
I'm having problem when calling privileged method from setTimeout. First call is well fired but the others failed, someone know why ?
function MyObject( x, y, z ) {
this.StartMovement = function() {
// ...
DoMove();
// ...
}
function DoMove() {
alert( "Moving..." )...