axshockwaveflash

Debugging AxShockwaveFlash

I'm building a C# app which contains an interactive Flash control via AxShockwaveFlash. One of the challenges is that while I am using the Eclipse-based Flex Builder to develop the Flash controls, it only seems to give me the ability to debug the Flash control if the movie is being run standalone, directly through the Flash player. I m...

Why doesn't a SWF file in C# pause when using AxShockwaveFlash

Hi, I need to play various swf files in a C# application. They seem to start playing fine but trying to pause it has no effect the 1st time and whites out the panel if I try again. The code I'm using is below. Also rewind & forward have no effect. Any comments or help would be appreciated. David Knight namespace MyUI { public ...

How can I retrieve screenshot of flash (youtube) video?

I'm working on a youtube search project that requires screenshots of youtube videos to show in search results. I figured this wouldn't be to hard using the ShockwaveFlashObjects COM object, but I can't seem to get anywhere. I can load the Flash movie, but from there I would want to programmatically click "Play" on the Youtube video con...

How can I load an SWF from a C# EmbeddedResource without first writing to file?

I'm using the flash 10 activex control to load a flash movie into my WinForm. Unfortunately, it only takes a path. What I'm trying to do is load the swf from a stream I can get from an EmbeddedResource so I can embed the swf into my exe such that A) I don't have to worry about paths and B) I don't have my swf quite so exposed - simpler...

Writing AxShockwaveFlash Flash Object to File C#

hi guys, i was wonder if there is any way one can read-write (or save/load) AxShockwaveFlash Flash Object to a (binary/text)file? I have a Winform with AxShockwaveFlash Flash Object on it and want it to be save to a file ,but serialization doesnt not work as type AxShockwaveFlash is not marked for Serialization? (Basically trying...

Flash security popup is unclickable on a layered window

I have a layered (TransparencyKey is set) winform w/ a WebBrowser control on it that navigates to a page that contains flash (swf). Everything works okay except that when flash shows a security popup, none of the buttons on the popup respond to mouse click, so I can't click Allow/Deny. Right-click works but only shows the context menu t...

AxShockwaveFlash Objects communicateing togther VB

I'm having a problem, I have two different AxShockwaveFlash objects that normally communicate together in a web browser, in my VB 2010 project they don't seem to be able to talk to each other. Does anyone know how to solve this? ...

Shockwave Flash Object in Windows Form VB Help

I can re-size the flash object, but the video area itself stays the same. Even when using scale mode, it will increase the size of the video, but won't surpass the original video area. (Thus cutting off the video.) How do I increase the video's area? Anyone? Please, I've been stuck for a while now... :-( ...

Reloading and refreshing flash files inside a windows form

Using DOTNET 3.5 . I have a app which shows load a flash movie in form, using this code axShockwaveFlash1 = new AxShockwaveFlashObjects.AxShockwaveFlash() axShockwaveFlash1.LoadMovie(0, Form1.currentGame); The problem is that whenever I make a changes in the flash hosted in our application and try to refresh the to see the changes, ...