Search Unity

TextMesh Pro [Solved] Getting 'ZERO WIDTH SPACE'

Discussion in 'UGUI & TextMesh Pro' started by AbgaryanFX, Dec 7, 2018.

  1. AbgaryanFX

    AbgaryanFX

    Joined:
    Jan 9, 2010
    Posts:
    167
    Getting 'ZERO WIDTH SPACE' character at the end of text from Input field
    upload_2018-12-7_15-31-24.png
    Is it ok !?
     
    VictorHHT likes this.
  2. Stephan_B

    Stephan_B

    Joined:
    Feb 26, 2017
    Posts:
    6,595
    When working with the TMP_Input field, make sure you use the .text property of the TMP_InputField and not of the underlying text component.

    For instance, in the case of a password, the text component would contain "*******" whereas the TMP_InputField.text would contain the actual password.

    This Zero Width Space is used in the underlying / child text component for layout purposes only but since you should not be referencing / using this .text property, it should not matter.
     
  3. AbgaryanFX

    AbgaryanFX

    Joined:
    Jan 9, 2010
    Posts:
    167
    Ohh, now I see what was wrong! Thanks!
     
    Stephan_B likes this.
  4. Epic_Cube

    Epic_Cube

    Joined:
    Jul 3, 2012
    Posts:
    100
    same problem here, thanks for sharing the fix!
     
  5. dazaizone

    dazaizone

    Joined:
    Mar 6, 2020
    Posts:
    43

    >>>> Hello @Stephan_B I also used the TMP_InputField.text but still it produced same error. need help, thanks