Announcement

Collapse
No announcement yet.

Help, Input.SetText Multiline, New Line!

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Help, Input.SetText Multiline, New Line!

    ENGLISH
    Hello, how can you enter a new line in an Input Multiline?

    Try the function \n [Input.SetText ("P2Inp15", rP2Inp15.."\n"..AddNote);]
    But it doesn't work

    From already thank you very much


    ESPAÑOL:
    Hola, como se puede ingresar un nuevo renglón en un Input Multiline??

    Intente con la función \n [Input.SetText("P2Inp15", rP2Inp15.." \n"..AddNota);]
    pero no da resultado

    Desde ya, muchas gracias

  • #2
    Hi, You need to issue a return carriage "\r\n"
    Code:
    rP2Inp15 = "Holy Crap"
    AddNote = "Just Added second Line"
    Input.SetText ("Input1", rP2Inp15.."\r\n"..AddNote);

    Comment


    • #3
      Si es verdad, luego recordé el \r...
      Gracias!


      If it's true, then I remembered the \r
      Thank you!

      Comment

      Working...
      X