Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a c# form where i want to display a youtube movie. I have placed a shockwave flash object where i can load a youtube movie.

axShockwaveFlash.LoadMovie(0, "http://www.youtube.com/v/tVP0b8qvZg8&enablejsapi=1&playerapiid=ytplayer");

this works fine. The problem occurs when i through code, want to play/pause/anything with the youtube movie. I can understand that one needs to do a little actionscripting and use the shockwaves callfunction but so far nothing has worked. And im a beginner to Actionscripting and flash.

I hope some of you can come with some help or code examples to how i can control my youtube movies.

Thanks alot in advance

Lars

share|improve this question
Hi, so which of the methods did you choose? – brokenisfixed Feb 7 '11 at 10:26

3 Answers

There is a great example on embedding flash videos in a C# application. I suggest you follow the article and forward parameters to the video player - the commands for Youtube API are available in the Google Code section.

share|improve this answer

This offers you a good detail tutorial on using the YouTube API and the Chormeless player so you can control the movie on your own. I have a demo too if you need it, but this should be enough to get you going, let me know if you need more help :)

Tutorial: http://www.perkstoveland.com/archives/40

share|improve this answer

If you just want a Youtube video on your website, you just need to embed it.

eg:

<object width="400" height="300">
   <param name="movie" value="http://www.youtube.com/v/2Trszk44ElI&hl=en&fs=1&showinfo=0" />
   <param name="allowFullScreen" value="true" />
   <param name="allowscriptaccess" value="always" />
   <embed src="http://www.youtube.com/v/2Trszk44ElI&hl=en&fs=1&showinfo=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="400" height="300"></embed>
</object>

Or, you can use JW Player, which is a free video player (for personal use only) build in actionscript 3. http://www.longtailvideo.com/players/jw-flv-player/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.