Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 5 of 5
  1. #1
    Join Date
    Oct 2009
    Posts
    35

    Is it possible to make an on-screen keyboard?

    Hi all,

    I've tried to make a fill-in form for a touch screen, so the keyboard needs to be on-screen.
    So I created buttons, each with a letter and some input fields.
    Then for scripting I tried this:

    Q: Input.SetText("Input1", "Q");
    W: Input.SetText("Input1", "W");

    and so on, but it doesn't add, it replaces the text within input1.

    Is it possible to make the buttons function as on screen keyboard? Or is there any other possible solution for this?

    Thanks.

  2. #2
    Join Date
    Nov 2006
    Location
    Tehran
    Posts
    176
    Hi.
    Input.SetText("Input1", Input.GetText("Input1").."Q")

  3. #3
    Join Date
    Oct 2009
    Posts
    35
    Quote Originally Posted by Samio View Post
    Hi.
    Input.SetText("Input1", Input.GetText("Input1").."Q")
    Hey,

    This is great, thanks!
    But I guess this will only work for Input1 so what would be the best option, just make a bunch of pages (copy them all) one for name, one for address and so on (it should mail the whole form to a certain mail address at the end) or isn't it so simple, as the input disappears after a page change.

    Or should I just make one large input field and ask people to just write down their address there and send just this whole input field through email.

  4. #4
    Join Date
    Oct 2009
    Location
    127.0.0.1
    Posts
    279
    There are 10 types of people in the world: those who understand binary, and those who don't.

  5. #5
    Join Date
    Oct 2009
    Posts
    35
    Works great!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts