views:

17

answers:

1

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...

A: 

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.

shortstick
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");
shortstick