0

I have been looking for a tutorial that shows or explains how to display the contents of a search engine like 'Google' or 'Youtube' inside Flash. No luck so far...

Can any of you please forward a link or a good book that talks about the subject...?

Thanks...

David Hall
  • 32,624
  • 10
  • 90
  • 127
Y_Y
  • 1,259
  • 5
  • 26
  • 43

1 Answers1

0

go straight to the source. Google Code should be able to search youtube from there. This is AS3, but it should give you a start.

longstaff
  • 2,061
  • 1
  • 12
  • 15
  • OK, try this one then, based on the google code above: var lv:LoadVars = new LoadVars(); lv.v = "1.0"; lv.q = "YOUR SEARCH IN HERE"; lv.onLoad = function(){ //decode JSON here } lv.sendAndLoad("http://ajax.googleapis.com/ajax/services/search/web",lv,"POST"); – longstaff Dec 16 '09 at 06:29