Questions tagged [axshockwaveflash]

AxShockwaveFlash is a .net wrapper component for loading flash movies (swf) on a windows form.

AxShockwaveFlash is a .net wrapper component for loading flash movies (swf) on a windows form. Though it is widely used, there is currently no consolidated documentation available for its users to refer.

60 questions
0
votes
0 answers

AxInterop.ShockwaveFlashObjects missing in COM objects

I am trying to run SWF game in my WPF application. This game accepts some variables which should be constantly updated (about 100 times a second). I did some research and I know that basically there are 2 possibilities to run SWF in WPF: Embed…
Michael280
  • 48
  • 10
0
votes
0 answers

Access Shockwave Flash COM Object using WebBrowser Control

I have an HTML page that contains the flash game Club Penguin. I'm trying to make a Desktop client for my website that allows the user to get and set flash variables. How can I access the Flash COM Object using a WebBrowser Control? Here's what I…
0
votes
1 answer

SWF posting image file to ASPX page

I'm trying to save a file using HTTP request from a SWF file to an ASPX file. i have a WinForms app that hosts the SWF using AxShockwaveFlash control that passes parameters to the SWF that generats the file and posts it to an ASPX page. the page…
user437631
  • 1,112
  • 4
  • 12
  • 28
0
votes
0 answers

YouTube videos in Shockwave Flash Object

Today I tried embedding a youtube video in my application using the Shockwave Flash Object control. I followed the steps provided in this answer, but doing this led me to an error, saying that "Flash-embedded videos are no longer supported, but you…
Lesic
  • 136
  • 12
0
votes
0 answers

C# get text content inside axShockwaveFlash1?

I loaded a game online to axShockwaveFlash1 winform. code inside flash running Have any way to get name and level of my character from C#? inside game here
NamPT
  • 49
  • 5
0
votes
1 answer

How do I access the Flash Player settings in an AxShockwaveFlash control?

I'm using a WindowsFormsHost to host an AxShockwaveFlash control in a WPF application. I've been having lag issues with Flash's multi-touch capabilities, so I wanted to check the Flash Player settings to see if hardware acceleration is enabled.…
Kyle Delaney
  • 11,616
  • 6
  • 39
  • 66
0
votes
0 answers

How to programmatically open settings popup for a shockwave-flash object

I have an application that has an audio/video chat. I'm using a flash object on IE and Safari. Everything works fine. I was just wondering if there a way to open the "Adobe flash player settings" popup via JavaScript? In case you think it's…
Pedro Vaz
  • 820
  • 5
  • 11
0
votes
0 answers

Preventing an iframe from being loaded each time the parent page is viewed

BACKGROUND: I will be creating a website using a 3rd party CRM such as Concrete5. On one of the pages, I wish to display content from another web server. The other web server is some proprietary industrial controller and utilizes x-shockwave-flash.…
user1032531
  • 24,767
  • 68
  • 217
  • 387
0
votes
1 answer

Interacting with axSockwavePlayer playing a youtube video in Winforms c#?

Short Question: How could I get events from an axShockwavePlayer playing youtube videos? (events such as "video playing" and "paused") Long Question: I have an application in winforms with a shockwave player. In it I play youtube videos and I was…
Toalp
  • 362
  • 1
  • 4
  • 15
0
votes
1 answer

vb.net AxShockwaveFlash dynamically created error

I've got an error while creating an AxShockwaveFlash control in VB.NET , when I load a movie , an error appears : Exception of type 'System.Windows.Forms.AxHost+InvalidActiveXStateException' was thrown . This is my code : Dim animFlashObject…
aymen ayoo
  • 92
  • 9
0
votes
1 answer

Debugging embedded flash (swf)

I have a windows form application that "plays" an Flash SWF file. I am seeing random Method: FlashMethodInvocation Exception: System.AccessViolationException errors. The output only gives me the stack trace of the windows form application, not…
tatmanblue
  • 1,176
  • 2
  • 14
  • 30
0
votes
0 answers

How To Catch SWF Files From Running Process Like SWF Catcher? C#

In the Swf Catcher Program , When I select a running process , it shows me all the flash files that are running in the process https://i.stack.imgur.com/VpjCL.png So what i want to do , is , to make a program that catch all the swf files in the…
Develop
  • 1
  • 1
0
votes
1 answer

Preserve swf transparency on forms vb

Is there any way to include a .swf on my form and also preserve its original transparency? That is, so you can see any controls 'behind it' (obviously in the transparent areas). It's looking unlikely as I understand vb can't control the flash…
stigzler
  • 793
  • 2
  • 12
  • 29
0
votes
1 answer

C# find mouse location over AxShockwaveFlashObject control

I have below code which gives me mouse location using Form1._MouseMove event, I also captured mouse location over pictureBox control using the same event and the same code. The Code: private void Form1_MouseMove(object sender, MouseEventArgs e) …
iѕєρєня
  • 524
  • 4
  • 14
0
votes
1 answer

Which file formats can an embedded flash player in WPF plays ? Is it only SWF?

I have embedded an axShockwaveFlash in my WPF , When I want to set the media through LoadMovie method or Movie property , I can give a local *.swf and see the result , but If i give an Mp4 (h.264) I do not see anything ! Before this one I have…