This tutorial is amazingly helpful! Thank you very much!!
@aachalgarg33142 жыл бұрын
Thank you it helped alot :)
@alexstumpff64064 жыл бұрын
Thanks man, know you helped me out on this!
@silvershade13374 жыл бұрын
You're welcome
@adfinemrising Жыл бұрын
very nice, thanks!!
@Arjun-kg2hf4 жыл бұрын
very helpful video, keep up the good work
@rohinsood32004 жыл бұрын
Really helped me out!
@yossepbinyoum21812 жыл бұрын
Good job
@sauceontoes34574 жыл бұрын
Interesting/Informative
@nkzofc3 жыл бұрын
very good!! is there any way to round the corners of this line?
@nkzofc3 жыл бұрын
Is there way to delay password masking ??
@andreadebiasi65092 жыл бұрын
Hi, there isn't the code link in description
@jonathanameyo36084 жыл бұрын
Hello. I am getting this error: name 'textinput' is not defined. How do I fix it?
@ragreenburg3 жыл бұрын
TextInput is the correct way to input that, gotta make sure it is capitalized.
@IKnowNothing01013 жыл бұрын
This refers to the ID of the TextInput For Example: TextInput: id: kiddlywinks canvas.after: Color: rgba:(1/255, .3, 0, 1) Line: width:1 rectangle: kiddlywinks.pos[0], kiddlywinks.pos[1], kiddlywinks.width, kiddlywinks.height You can also choose instead to use self instead of the ID. rectangle: self.pos[0], self.pos[1], self.width, self.height This would let you create a new type of text input of you were working on something really big. canvas.after: Color: rgba:(1/255, .3, 0, 1) Line: width:1 rectangle: self.pos[0], self.pos[1], self.width, self.height And then you can use NewText exactly like you do TextInput customizing only what will be different.
@jonathanameyo36084 жыл бұрын
I have another error saying "no declaration after textinput". Who knows how to fix it?
@ragreenburg3 жыл бұрын
Do you mean "Invalid data after declaration"? If so, I get that all the time when my spaces aren't lined up properly.