Help İnput

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • mustafa06
    Forum Member
    • Jul 2007
    • 287

    Help İnput

    For Example

    Input1

    Space = " "
    İf ı write "Space" or "Space Space Space" or "Space Space Space" or "Space Space Space Space" or ... "Space Space Space Space Space" ..........
    Input.SetText("Input1", "FALSE");

    But How ?

    -- > "Indigorose Forums" its true
    -- > "How Are You" its true

    Thx :yes
  • longedge
    Indigo Rose Customer
    • Aug 2003
    • 2498

    #2
    Input.SetText("Input1", " ");

    Comment

    • longedge
      Indigo Rose Customer
      • Aug 2003
      • 2498

      #3
      Hopefully more helpful.

      It makes no sense at all to do it this way but -
      Code:
      Space = " "
      Input.SetText("Input1", Space..Space..Space..Space..Space);
      is the same as -

      Code:
      Input.SetText("Input1", "     ");
      N.B.You do not enclose a variable in quotes.

      By putting the "" around the word/s Space you are saying this is exactly what I want to display.

      Comment

      Working...
      X