tags:

views:

101

answers:

1

i work on C# window ....I want to play flash movie on my window when it's load....I need to know how to run flash on window application.....If i can not why ?

+1  A: 

You can access flash as through COM Interop. It's called Shockwave Flash Object in your references list in visual studio.net.

Jon
Will you give me example or syntax to complete my task
MyFlashMovie.Movie = "MyGreatFlashMoviePathFileName.swf"MyFlashMovie.Play()There's also this:http://www.adobe.com/devnet/flash/articles/stock_history03.html
Jon
Also, if you can't find it under tools, you need to right click on tools and add it. It's under COM components.
ra170