Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 3 of 3
  1. #1
    Join Date
    Mar 2007
    Posts
    22

    Argh, I need help.

    So I have a web object and I want the input1 to affect only part of the url.

    So basically I have a URL that has information on both sides of the input. so for instance I want:

    http://www.x.com/INPUT1.x

    Obviously, input1 is going to be the input, but I don't know how to properly format this code.

  2. #2
    Join Date
    Apr 2006
    Posts
    127
    It is simply a string, so you can concatenate like this:

    myString = "http://www.x.com/" .. INPUT1 .. ".x"

  3. #3
    Join Date
    Mar 2007
    Posts
    22
    Quote Originally Posted by IdeasVacuum View Post
    It is simply a string, so you can concatenate like this:

    myString = "http://www.x.com/" .. INPUT1 .. ".x"
    wow. Thanks

Posting Permissions

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