have object in exampleUncaught TypeError: undefined is not a functionANFT_Hud_option.js:129 (anonymous function)
$gameVariables.Hud_Option{
this.Timer1 = null; //Timer container
// Function remove picture
this.DeletePicture = function(){
for (var d=this.Pid;d<this.EndPid;d++){
$gameScreen._pictures[d] = null; }}
// The function with the timer
this.Move = function () {
// do stuff
//after stuff
this.Timer1 = setTimeout(function(){ this.DeletePicture() }, 3000);
}
}