how to control .swf file from c#. I was developed one asp page which contains flash file. Is there any possibility to play and pause that flash file?
+1
A:
You can't.
C# code is executed server-side. Flash animations are executed client-side.
Your best bet would be to see what you can accomplish with JavaScript.
Justin Niessner
2010-10-27 13:30:10
thanks.I am trying to work on javascript but failed. Following is the code.
hemanth
2010-10-27 14:24:12
var flashMovie=getFlashMovieObject("flash.swf");flashMovie.Stop();
hemanth
2010-10-27 14:25:16
@hemanth - getFlashMovieObject takes the name from the name attribute you assign in the markup, not the file name.
Justin Niessner
2010-10-27 14:40:29