Hi folks! Newbie question here, I have a webview that shows an html with text. Now I want to try and put some yotube videos embedded, so when the user clicks on the video, the video opens it.
I tried the obvios approach of going to youtube, and copying and pasting on my html the embedding code, something like this:
Code:
<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/oFquIh-g9XA?fs=1&hl=es_ES"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/oFquIh-g9XA?fs=1&hl=es_ES" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object>
But it seems to do nothing on the simulator, when I see the webview, I keep seeing the text I had, but no video.
Another question, is there a way to show a youtuve video, with a screen capture of the video? I mean, not a box with a play button, but like you see them in youtube, with a screenshot of the middle part of the video.
Thanks!!!!