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?
source
share