How to load flash files embedded using SWFObject

A flash file is displayed on the site you are using, which is dynamically embedded using SWFObject. I want to download the flash file locally, so I can run it when I do not have network access. However, when I try to open the url in a swf file, it requires an id parameter, which is usually passed using the SWFObject JavaScript script.

In particular, the page source contains:

swfobject.embedSWF("/bin/loader.swf", "main", "100%", "100%", "9", false, flashvars, params, attributes);

And flashvars have the following define:

var flashvars = {
        file_id: "imilc2lxnfft",
        app: "main-502.swf",
        show_play_button: "false",
        autoplay: ""

When I try to access site.com/bin/loader.swf, it says that this requires the file_id parameter.

How to pass a parameter and upload a file to the desktop?

+3
source share
4 answers

( D/L):

http://example.com/bin/loader.swf
http://example.com/main-502.swf

HTML SWFObject JS, flashvars <div> id (id="name" ).

, , SWF .

+1

- SWF, flashvars, -, . Firefox " -"; "-, ". -. , SWF-, flashvars.

+1

.mp4? .

+1

I assume that loader.swf is a preloader that loads the original movie based on the file_id parameter.

0
source

Source: https://habr.com/ru/post/1719810/


All Articles