[Newbie Q] search results in ams

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Some0ne
    Forum Member
    • Feb 2009
    • 3

    [Newbie Q] search results in ams

    (Sorry if in wrong section)

    Ok a few of newbie questions:
    1: I have just got ams and playing about with it, at present im trying to create a simple browser (using default browser app) and wish to know how to set it so search results show within ams rather than opening a new explorer page...I have searched high and low on here but have found nothing (or if I did it was over my head and didnt realise that that was the answer)...lol

    Current code:
    PHP Code:
    Web.LoadURL("Web1"Input.GetText("Input1"));
        
    File.Open("http://www.google.com/search?hl=en&q="..Input.GetText("Input1"), SW_SHOWNORMAL); 

    2: How can I set it so when a button is hit the website it launches also opens from within ams?

    3: How to set width and height of application made?

    Thank you in advance
    Last edited by Some0ne; 02-18-2009, 01:18 PM.
  • azmanar
    Indigo Rose Customer
    • Oct 2004
    • 1020

    #2
    Hi,

    I have some browser samples in my site. Download and take a look at the scripts. Will help u get started. Samples are compatible for AMS7.
    Newbie Examples
    ------> AMS 7.5 : amstudio.azman.info
    ----> AMS 6 & 5: www.azman.info/ams/
    ----> FB: facebook.com/GuideToWealth

    ----> Content Development Blog: www.AZMAN.asia

    Comment

    • Desrat
      Forum Member
      • Nov 2006
      • 240

      #3
      Code:
      Web.LoadURL("Web1", Input.GetText("Input1"));
      Web.LoadURL("Web1", "http://www.google.com/search?hl=en&q="..Input.GetText("Input1"));

      Comment

      • Some0ne
        Forum Member
        • Feb 2009
        • 3

        #4
        Thank you both

        Comment

        Working...
        X