Hi , I cannot understand what is the error but i need to explain this in my assignment. Can anyone explain to me !!! i manage to solve this problem but i dont know what is the error for this. Please help me Thank you TT
The error is that a variable for the textbox (the error is in the textbox, right?) is undefined because you didn’t enter the frame with the textbox in your project. This error should pop up only when you stop the project, right? Deleting the code in there will cause the textbox to stay even after the project stops.
Click Me to See Solution
Switch the code in there with this to solve the problem:
try {
if(this.div.parentElement) {
this.canvasContainer.removeChild(this.div);
}
this._styleUpdated = false;
this.parentClip.value = this.value;
}
catch(err) {
// we just caught an error!
}
That should help
On a side note, @Luxapodular should change the code for the built in textbox with this
(or anything that stops this error)
If it’s the text issue, luxapodular said this before in some topic i made:
1 Like