Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default Google Search?

    Anybody have the code or know how to make a Google search from a text input?
    Cpt. Awesome Guest

  2. Similar Questions and Discussions

    1. Google Search
      I haven't seen any questions/response about this, and searching for it returns 0 hits. I would like to have an internet search area on my site,...
    2. Info on Google search results
      Hey Guys, Google search results sometimes come back with extra information just below the name of the web site; for example, if you Google the...
    3. Google Search API
      I have gotten as far as I can with the coding, I am trying to run an automated search on google for stock information, once I run the search i want...
    4. Simple Google search
      I'm trying to develop a search page for my website, but rather than using Verity I want to use Google. I have a search box in my cfm.dwt.template...
    5. Keep Google search hits despite PHP??
      While in the process of reorganizing my company's website and I created a database of all their publications. I replaced their old html...
  3. #2

    Default Re: Google Search?

    Do you mean use the text in the TextInput as the keywords for a Google search?
    If so, then what do you want to do with the result? How will it be displayed?
    You could have a button user clicks which fires an HTTPService or WebService if
    Google offers web service based APIs. Then process the result.

    Greg Lafrance Guest

  4. #3

    Default Re: Google Search?

    Just submit a HTTP request using this ULR schema:

    [url]http://www.google.com/search?q=some+Text&ie=UTF-8&oe=UTF-8[/url]

    This call will return the text of the Google result page.

    The search API, which Google offered in the past, isn't any longer available.
    So you are on your own to parse HTML - and keep you code updated, as soon as
    Google changed their generated HTML.

    justria Guest

  5. #4

    Default Re: Google Search?

    Try HTTPService, resultFormat="text"

    Tracy
    ntsiii Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139