How to pre-set text in a inputbox (forcing linebreak)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • DoveBirkoff
    Forum Member
    • Jul 2008
    • 36

    How to pre-set text in a inputbox (forcing linebreak)

    Hi guys

    Do you know by any chance how to pre-set text in a inputbox forcing a line break:

    Inputbox should look like this:

    (inputbox)
    1)
    2)
    3)


    Then I would like to be able of add text beside each line. (this way will save me to writte each time 1), 2), 3), etc)

    Any idea?

    Thanks for your time folks.
    Dove
  • ShadowUK
    No longer a forum member
    • Oct 2007
    • 1322

    #2
    Code:
    Input.SetText("Input1", "1)\r\n2)\r\n3)\r\n");
    \r\n = New line.

    Comment

    • DoveBirkoff
      Forum Member
      • Jul 2008
      • 36

      #3
      Thanks again

      I was just adding the text after double-click on the inputbox....of course this was displaying the code itself "1)\r\n2)...."

      I know, I'm a noob! :P

      Thanks for your support

      Comment

      Working...
      X