I have made a YouTube player in C# using Shockwave Flash dll. When I am inside visual studio it works but when I deploy my application the flash player turns just white. It doesn't play any videos.
I installed the active X plugin for IE but still doesn't work. I know that my applications needs a active X but I don't know the right version to download. I have check adobe site and it gives me a huge list.
Hope someone could help me.
private void Form1_Load(object sender, EventArgs e)
{
axShockwaveFlash1.Movie = "https://www.youtube.com/v/TBGkbDhE8wM";
axShockwaveFlash1.Play();
}
By the way I managed to run my software in windows 8 since Win8 has embedded adobe flash player and it works. On the other hand, I installed Adobe Flash player 19 NPAPI and Adobe Flash Player 20 ActiveX on windows 7 but still my software cant run any youtube videos still. Do you have an idea?