Here I have played swf in wpf web browser control. I just want to know how to get total frame and current frame of a swf when playing in web browser. The following code below is used to find these counts when using shockwaveflash object.
int fn = axShockwaveFlash1.TotalFrames;
int cf = axShockwaveFlash1.CurrentFrame();
and following code is used to play swf in web browser.
this.MainBrowser.Navigate(@"C:\Users\Admin\Desktop\car.swf");
Instead of these shown code, what should we use for web browser and c#.