SWFObject was created to dynamically examine the various ways in which each browser interpreted an object tag. I do not know any real changes in this scenario, even with ie9, which still requires the user to activate the active-x object.
I still prefer SWFObject for its reliable and easy flash streaming:
var flashvars = {
filePath: "somePath",
verbose: "true"
};
var params = {
quality: "high",
wmode: "opaque",
menu: "false",
base: "/flash/home_page/"
};
var attributes = {
id: "flashContent"
};
swfobject.embedSWF(
"../flash/home_page/home.swf",
"flashContent",
"570",
"325",
"10.0.0",
"../frameworks/swfobject/expressInstall.swf",
flashvars,
params,
attributes,
outputStatus
);
I agree, it would be “nice” if there was an “even more” easy alternative, but the convenience compensates for any additional loads, imo.
amuses
source
share