Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 2 of 2

Thread: Append help

  1. #1
    Join Date
    Jan 2008
    Posts
    52

    Append help

    Alright some certain websites have a search feature which gives the following adress
    www.websiteexample/filter=SEARCH RESULTS

    say i place an iput then use Input.GetText how can i append that to the site
    result = Input.GetText("Input1")
    ^result

    www.websiteexamplr/filter=result???
    ways that i can possibly do this i have a feeling its something simple that im missing

  2. #2
    Join Date
    May 2006
    Posts
    5,380
    here, something like this should work

    Code:
    local sText = Input.GetText("Input1")
    local sSearchString="www.websiteexample/filter="..sText
    Web.LoadURL("MyWeb1", sSearchString);
    Open your eyes to Narcissism, Don't let her destroy your life!!

Posting Permissions

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