So I've added Shockwave Flash Object
to my windows form, how can I get it to play a swf file that I am hosting using a GitHub page? (The GitHub Page is set up with the swf and it works all fine and I can load the swf if I type myuser.github.io/client/client.swf
into my browser, but I don't know how to get the swf to load it on the form) I've tried putting the URL as the movie
in the Shockwave Flash Object Properties
but the form doesn't load it.
AxShockwaveFlashObjects.dll
was added to the references too. When I use WebBrowser
and make the URL myuser.github.io/client/client.swf
and it just crashes, when I use the Shockwave Flash Object
and make the move my client url or even do something like
axShockwaveFlash1.Movie = @"C:/Users/Mike/Desktop/game.swf";
axShockwaveFlash1.Play();
it just simply doesn't load at all.